API & integrations

Wire GameFrame into your build chain.

REST API, Personal Access Tokens, and Google Sheets integration — built for studios who want to query, automate, and report on their game design data.

Get an API token Read the API docs
bash
$ curl https://api.gameframe.app/v1/vaults/{vaultId}/documents?limit=5 \
    -H "Authorization: Bearer gf_pat_..."
# Returns: { data: [...], meta: { cursor } }

REST API

Versioned endpoints for documents, branches, and reviews. Same API we use in the app.

Personal Access Tokens

Generate long-lived tokens in Settings. Scope them to read-only or full access per vault.

Google Sheets

Read live data from your Gameframe vault directly into a Google Sheet via the Sheets OAuth integration.

OAuth scopes

Granular scopes for docs, branches, runs, audit. Tokens you can hand to a contractor without fear.

Quick examples

List recent reviews

bash
$ curl https://api.gameframe.app/v1/runs?limit=5 \
    -H "Authorization: Bearer gf_pat_..."

Authenticate with a PAT

javascript
// Every request uses your Personal Access Token as a Bearer credential.
// Generate one at: /app/settings/api-tokens
fetch('https://api.gameframe.app/v1/vaults/{vaultId}/documents', {
  headers: { Authorization: 'Bearer gf_pat_...' },
})

On the roadmap: outbound webhooks, MCP server integration. See the full roadmap.

Build on top of GameFrame.

Free API access on every plan. Generate a token in 30 seconds.