API Explorer for GraphQL and REST
Editions: Open Source · Free Cloud · Pro · Workers
After Publish, open API in Console to exercise the live project API.

Console → API → GraphQL API. Introspection matches the published schema only.
GraphQL explorer
- Endpoint = secured/public project GraphQL (not
/system/graphql). - Authenticate with a project API key (
ak_…) or an app-user bearer token. - Introspection reflects the published schema only — drafts are invisible to the public API until publish.
Try a search/list query for one of your models, then a single-document get.
REST / OpenAPI
Where the Engine exposes a REST shim, the explorer (or Swagger UI) documents routes generated from the same models. Prefer GraphQL + Admin SDKs for first-party apps; use REST when a consumer cannot run GraphQL.
Common mistakes
| Symptom | Cause |
|---|---|
| Unknown type / field | Schema still draft — publish |
| Unauthorized | Wrong key surface (system vs project) |
| Empty SaaS lists | Missing tenant header / filter |