Uniswap
communityLargest decentralized exchange (DEX) on Ethereum for swapping ERC-20 tokens.
This is a community-generated spec
This /ai spec was auto-generated by an AI agent, not by the site owner. It may be incomplete or inaccurate.
POST
https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3Get liquidity pools
Parameters
query{ pools(first:10optional— orderBy:totalValueLockedUSD, orderDirection:desc) { id token0{symbol} token1{symbol} totalValueLockedUSD volumeUSD feeTier } }Returns
pools[] with id, token0.symbol, token1.symbol, totalValueLockedUSD, volumeUSD, feeTierPOST
https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3Get token price
Parameters
query{ token(id: "{address}") { symbol name derivedETH totalValueLockedUSD volume } }optionalReturns
token with symbol, name, derivedETH, totalValueLockedUSD, volumePOST
https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3Get recent swaps
Parameters
query{ swaps(first:10optional— orderBy:timestamp, orderDirection:desc) { amount0 amount1 token0{symbol} token1{symbol} amountUSD timestamp } }Returns
swaps[] with amount0, amount1, token0.symbol, token1.symbol, amountUSD, timestamp