Exploring our API

We have an API explorer and playground.

API Explorer

We have an API explorer (GraphiQL) where you can start to explore our queries and mutations.

Queries

You can show all available queries (follow the link and click the ▶ button).

Schema

You can also list all types defined in our schema.

Types

To drill down to details about any type, pass in the name of the type, for example:

query {
  __type(name: "Card") {
    name
    kind
    description
    fields {
      name
    }
  }
}

Try this now >

The explorer is useful while you are discovering our public queries without any authentication.

Note that the introspection query is the only GET request you’ll run in GraphQL. If you’re passing a body, the GraphQL request method is POST, whether it’s a query or a mutation.

Last updated