/tokens - Request supported tokens by a swap provider
Example Request
curl -X 'GET' \
'https://api.swapkit.dev/tokens?provider=CHAINFLIP' \
-H 'accept: application/json' \
-H "x-api-key: YOUR_VARIABLE_HERE"Example shortened response
{
"provider": "CHAINFLIP",
"name": "CHAINFLIP",
"timestamp": "2025-01-11T16:31:04.355Z",
"version": {
"major": 1,
"minor": 0,
"patch": 0
},
"keywords": [],
"count": 10,
"tokens": [
{
"chain": "BTC",
"chainId": "bitcoin",
"ticker": "BTC",
"identifier": "BTC.BTC",
"symbol": "BTC",
"name": "Bitcoin",
"decimals": 8,
"logoURI": "https://storage.googleapis.com/token-list-swapkit/images/btc.btc.png",
"coingeckoId": "bitcoin"
},
{
"chain": "ARB",
"chainId": "42161",
"ticker": "ETH",
"identifier": "ARB.ETH",
"symbol": "ETH",
"name": "Arbitrum Ether",
"decimals": 18,
"logoURI": "https://storage.googleapis.com/token-list-swapkit/images/arb.eth.png",
"coingeckoId": "ethereum"
},
{
"chain": "SOL",
"address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"chainId": "solana",
"ticker": "USDC",
"identifier": "SOL.USDC-EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol": "USDC-EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"name": "Solana USDC",
"decimals": 6,
"logoURI": "https://storage.googleapis.com/token-list-swapkit/images/sol.usdc-epjfwdd5aufqssqem2qn1xzybapc8g4weggkzwytdt1v.png"
},
...
]
}Response fields
Field
Type
Description
For each token, information is provided to properly differentiate it from others. It is important to note the identifier since it is what identifies a token within the SwapKit API:
identifier since it is what identifies a token within the SwapKit API:Field
Type
Description
Notes
Previous/providers - Request supported chains by a swap providerNext/swapFrom - Request sell swap options
Last updated

