Getting Started
This guide demonstrates basic usage of Kublau’s GraphQL API.
The Kublau API is a GrahpQL API and authentication is performed via bearer tokens.
You can use the Kublau API in test mode, which does not affect your live data or interact with the carrier providers. The API key you use to authenticate the request determines whether the request is in live mode or test mode.
Quick Reference
Kublau's GraphQL API endpoint is located at https://api.kublau.com/graphql.
Kublau supports a wide range of resources, listed in the GraphQL API Reference.
Explore the GraphQL API using the interactive GraphQL Playground.
What is GraphQL?
GraphQL is a query language for APIs that allows clients to request exactly the data they need, making it possible to get all required data in a limited number of requests.
The GraphQL data (fields) can be described in the form of types, allowing clients to use clientside GraphQL libraries to consume the API and avoid manual parsing.
Since there’s no fixed endpoints and data model, new abilities can be added to the API without creating breaking changes. This allows us to have a versionless API as described in the GraphQL documentation.
Last updated
Was this helpful?