Javascript
const url = 'https://api.supermemory.ai/v3/connections/{connectionId}'; const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}, body: undefined}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); }
{ "createdAt": "<string>", "documentLimit": 123, "email": "<string>", "expiresAt": "<string>", "id": "<string>", "metadata": {}, "provider": "<string>" }
Get connection details with id
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Connection details
Show child attributes
Was this page helpful?