GET
/
v3
/
connections
/
{connectionId}
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.supermemory.ai/v3/connections/{connectionId}', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));
{
  "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.

Path Parameters

connectionId
string
required

Response

200
application/json

Connection details

The response is of type object.