Freemium
The Graph API
The Graph API is a decentralized indexing protocol that enables developers to query blockchain data with GraphQL. It organizes data from networks like Ethereum and Polygon into subgraphs for fast, reliable access. Common use cases include DeFi dashboards, NFT marketplaces, blockchain explorers, analytics tools, and dApps requiring real-time blockchain insights.
1
Endpoints
0
Views
Aug 29, 2025
Last Checked
100,000 requests/month
Rate Limit
API Endpoints
Query blockchain data using The Graph
Full URL
https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v2
Code Examples
curl -X POST 'https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v2' \
-H 'Authorization: Bearer YOUR_API_KEY'
Parameters
{ "query": "{ pairs(first: 5) { id token0 { symbol } } }" }
Example Response
{
"data": {
"pairs": [
{
"id": "0x...",
"token0": {
"symbol": "ETH"
}
}
]
}
}
Version
v1
Rate Limit
100,000 requests/month (free tier)
Tags
blockchain-indexingethereum-queriesgraphqlthe-graph
Related APIs
Discover similar APIs that might interest you