Apollo Explorer is an online GraphQL playground you can use to run queries and subscribe to real-time updates from Kadindexer.
Access it here: Apollo Explorer Sandbox, and follow the steps below.
Once the page loads, click the Settings button in the top-left corner.

In the Connection Settings, choose the endpoint based on the network you want to query:
Network | API Endpoint |
---|---|
Mainnet | https://api.mainnet.kadindexer.io/v1 |
Testnet | https://api.testnet.kadindexer.io/v1 |
Paste the selected URL into the Endpoint field:

Authorize access to the API by adding your previously generated API key.
Set it as the x-api-key
header, as shown below:

To enable real-time subscriptions, use the WebSocket endpoint for the network you’re connecting to:
Network | WebSocket Endpoint |
---|---|
Mainnet | wss://mainnet01.kadindexer.io/graphql |
Testnet | wss://testnet04.kadindexer.io/graphql |
Paste the URL into the Subscriptions field:

You’re now ready to execute queries in Apollo Explorer. Here’s a simple example to get the latest block height through all chains in kadena blockchain:
query {
lastBlockHeight
}

✅ Tip: Once everything is configured, you can use Apollo Explorer to explore the schema, test queries, and subscribe to real-time blockchain events effortlessly.