GETGet tokens
Get tokens
Authorization
x-api-keystringrequiredheaderPlayground key
You're using a shared playground keyCreate a free account and get your own API keys from the dashboard.
Get your keysQuery Parameters
sortenumdefault:defaultdefaulttvlvolume_24hbridgeable
limitintegerdefault:100Number of ranked tokens to return. Applies only when sort is tvl or volume_24h. Defaults to 100.
chainIdenum1105613013714319632448018684217432646635042845310143421614222043114570735914481457777777713018453211155111
Filter ranked token results to a specific chain. When omitted, ranked results include all supported chains. Ignored when sort is default.
Response
Get tokens successful. An empty tokens array is a valid result when no tokens match the requested sort and chains.
requestIdstringrequiredA unique ID for the request.
tokensobject[]requiredGET
/tokensRequest
curl --request GET \
--url 'https://trade-api.gateway.uniswap.org/v1/tokens' \
--header 'x-api-key: <api-key>'Response
200
{ "requestId": "<string>", "tokens": [ { "name": "<string>", "address": "<string>", "chainId": "<number>", "symbol": "<string>", "decimals": "<number>", "logoURI": "<string>", "extensions": { "bridgeInfo": {}, "safetyInfo": { "safetyLevel": "<string>", "safetyDescription": "<string>", "buyFee": "<number>", "sellFee": "<number>" } } } ]}