Skip to main content
GET
/
v3
/
graph
/
bounds
Get graph bounds
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.supermemory.ai/v3/graph/bounds', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "bounds": {
    "minX": 500000,
    "maxX": 500000,
    "minY": 500000,
    "maxY": 500000
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

containerTags
string
Maximum string length: 10000

Response

Bounding box of all documents

bounds
object
required