Skip to main content

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'
  }
});