Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion website/src/pages/en/token-api/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sidebarTitle: Quick Start

The Graph's Token API lets you access blockchain token information via a GET request. This guide is designed to help you quickly integrate the Token API into your application.

The Token API provides access to onchain token data, including live and historical balances, holders, prices, market data, token metadata, and token transfers. This API also uses the Model Context Protocol (MCP) to allow AI tools such as Claude to enrich raw blockchain data with contextual insights.
The Token API provides access to onchain NFT and fungible token data, including live and historical balances, holders, prices, market data, token metadata, and token transfers. This API also uses the Model Context Protocol (MCP) to allow AI tools such as Claude to enrich raw blockchain data with contextual insights.

## Prerequisites

Expand Down Expand Up @@ -64,6 +64,20 @@ Make sure to replace `<token>` with the JWT Token generated from your API key.

> Most Unix-like systems come with cURL preinstalled. For Windows, you may need to install cURL.

## Chain and Feature Support

| Network | evm-tokens | evm-uniswaps | evm-nft-tokens |
| ---------------- | :---------: | :----------: | :------------: |
| Ethereum Mainnet | ✅ | ✅ | ✅ |
| BSC | ✅\* | ✅ | ✅ |
| Base | ✅ | ✅ | ✅ |
| Unichain | ✅ | ✅ | ✅ |
| Arbitrum-One | Ingesting\* | Ingesting\* | Ingesting\* |
| Optimism | ✅ | ✅ | ✅ |
| Polygon | ✅ | ✅ | ✅ |

\*Some chains are still in the process of syncing. You may encounter `bad_database_response` errors or incorrect response values until data is fully synced.

## Troubleshooting

If the API call fails, try printing out the full response object for additional error details. For example:
Expand Down