JavaScript
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 } }
Get the bounding box of all documents with spatial coordinates
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
10000
Bounding box of all documents
Show child attributes
Was this page helpful?