← Developers & API/GraphQL

GraphQL

Query-only - POST /api/graphql. This app runs on standard serverless functions with no persistent process, so there are no GraphQL subscriptions here. For real-time updates, use webhooks instead (the same split GitHub's own public GraphQL API uses).

query {
  entity(slug: "sharma-ca-mumbai") {
    name
    category
    claims { property value source confidence }
    structuredData
  }
}

Explore the API