From 213f1531d99e2321046044ef6c3fdf9e27f33f51 Mon Sep 17 00:00:00 2001 From: Andrew <36178664+UrsaPolarisRecords@users.noreply.github.com> Date: Wed, 28 May 2025 15:18:16 -0700 Subject: [PATCH 1/2] Update quick-start.mdx Added NFTs, Added chain/feature support matrix --- website/src/pages/en/token-api/quick-start.mdx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/website/src/pages/en/token-api/quick-start.mdx b/website/src/pages/en/token-api/quick-start.mdx index e49256d29a6d..a54764b0e3da 100644 --- a/website/src/pages/en/token-api/quick-start.mdx +++ b/website/src/pages/en/token-api/quick-start.mdx @@ -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 @@ -64,6 +64,21 @@ Make sure to replace `` 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: From d940abd0b999e5f678ff902aa3669d659ae8c99f Mon Sep 17 00:00:00 2001 From: Andrew <36178664+UrsaPolarisRecords@users.noreply.github.com> Date: Wed, 28 May 2025 16:11:22 -0700 Subject: [PATCH 2/2] Update quick-start.mdx Fix Prettier Formatting --- .../src/pages/en/token-api/quick-start.mdx | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/website/src/pages/en/token-api/quick-start.mdx b/website/src/pages/en/token-api/quick-start.mdx index a54764b0e3da..ce4e79c2d02b 100644 --- a/website/src/pages/en/token-api/quick-start.mdx +++ b/website/src/pages/en/token-api/quick-start.mdx @@ -66,18 +66,17 @@ Make sure to replace `` with the JWT Token generated from your API key. ## 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. +| 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