Skip to main content
GET
/
v1
/
analytics
/
schema
List analytics tables
import { ParagraphAPI } from "@paragraph-com/sdk"

const api = new ParagraphAPI({ apiKey: "your-api-key" })
const { tables } = await api.analytics.schema()
{
  "tables": [
    {
      "table_name": "<string>",
      "column_name": "<string>",
      "data_type": "<string>",
      "is_nullable": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authenticating protected endpoints. Pass as Bearer token in Authorization header.

Response

Schema metadata retrieved successfully

tables
object[]
required

One row per column, grouped by table in ordinal order