JavaScript
const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: JSON.stringify({containerTags: ['user_123', 'project_123']}) }; fetch('https://api.supermemory.ai/v3/connections/list', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
[ { "createdAt": "<string>", "id": "<string>", "provider": "<string>", "documentLimit": 123, "email": "<string>", "expiresAt": "<string>", "metadata": {} } ]
List all connections
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Optional comma-separated list of container tags to filter documents by
["user_123", "project_123"]
Connections
Show child attributes
Was this page helpful?