ℹī¸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.

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

⚡pageSet up the Zapier integration⚙ī¸pageSet up API access

What is GraphQL?

GraphQL 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 PayPal. 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 GraphQL 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/

Last updated