POST
/
v3
/
connections
/
list
import Supermemory from 'supermemory';

const client = new Supermemory({
  apiKey: process.env['SUPERMEMORY_API_KEY'], // This is the default and can be omitted
});

const connections = await client.connections.list();

console.log(connections);
[
  {
    "id": "<string>",
    "provider": "<string>",
    "email": "<string>",
    "createdAt": 123,
    "expiresAt": 123,
    "metadata": {},
    "documentLimit": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Connections

The response is of type object[].