GET
/
v3
/
waitlist
/
status
Check waitlist status
const url = 'https://api.supermemory.ai/v3/waitlist/status';
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);
}
{
  "inWaitlist": true,
  "accessGranted": true,
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Waitlist status

The response is of type object.