Javascript
import Supermemory from 'supermemory'; const client = new Supermemory({ apiKey: 'My API Key', }); const connections = await client.connections.list(); console.log(connections);
[ { "createdAt": "2023-11-07T05:31:56Z", "documentLimit": 123, "email": "<string>", "expiresAt": "2023-11-07T05:31:56Z", "id": "<string>", "metadata": {}, "provider": "<string>" } ]
List all connections
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Connections
The response is of type object[].
object[]
Was this page helpful?