Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.glassgrid.app/llms.txt

Use this file to discover all available pages before exploring further.

Welcome

Glassgrid offers a comprehensive API to access our resources and your account. Read the following documentation to learn how to use our API.

Authentication

All API endpoints are authenticated using Bearer tokens, and you can only access data associated with your account. Example
const res = await fetch(`https://api.glassgrid.app/v1/${path}`, {
  method: 'GET',
  headers: {
    Authorization: `Bearer ${access_token}`,
    'Content-Type': 'application/json'
  }
});