Introduction
This section covers how to authenticate, make your first API call and use Xerberus GraphQL endpoint.
1. API Endpoint
All GraphQL queries should be sent as POST
requests to:
2. Authentication
Access to the API is secured using an API Key.
How to Use the API Key
Send your API key using the x-api-key
and x-user-email
HTTP header in each request:
Example with curl
:
curl
: 3. Example Query
Here is a minimal example to fetch supported chains:
Expected response:
4. SDK Available
We provide a Python SDK for easier integration. You can use it to programmatically query metrics, tokens, chains, and more.
Check out the SDK docs or visit the GitHub repo:
Last updated