Getting started

The Blaze API enables you to easily query data from our data dashboards, which includes community analytics, on-chain intelligence and identity enrichment. They also enable whitelabel reward programs.

Run in Postmanarrow-up-right

We use GraphQL for our APIs, and also offer Zapier connectivity.

Set up the Zapier integrationchevron-rightSet up API accesschevron-right

What is GraphQL?

GraphQLarrow-up-right is an open-source query language for APIs developed by Facebook in 2012 and has been adopted by companies such as Airbnb, GitHub, Yelp and PayPalarrow-up-right. GraphQL gives clients the flexibility to request exactly what is needed and nothing more. You can construct a request by defining the resources you want via a POST request to a server and receive a response that matches the format of your request. Please check out the Introduction to GraphQLarrow-up-right guide to learn more about the basic concepts of GraphQL.

Notation

  • String is one of the built-in scalar types - these are types that resolve to a single scalar object, and can't have sub-selections in the query.

  • String! means that the field is non-nullable, meaning that the GraphQL service promises to always give you a value when you query this field. In the type language, we'll represent those with an exclamation mark.

  • [String] represents an array of String objects.

More GraphQL notations: https://graphql.org/learn/schema/arrow-up-right

Last updated

Was this helpful?