Tokens GET
This endpoint returns a list of tokens available for cross-chain transfers via the Stargate protocol. It provides token details, bridging capabilities, contract addresses, and current price information across supported blockchains.
GET /tokens
Request Params
srcChainKey
optional
string
Filter tokens by source chain identifier "ethereum", "arbitrum"
.
srcToken
optional
string
Filter by token address on the source chain. Returns only tokens with available transfer routes from the specified token.
/tokens Request
curl -X GET "https://stargate.finance/api/v1/tokens"
/tokens Response
{
"tokens": [
{
"isBridgeable": true,
"chainKey": "ethereum",
"address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
"decimals": 18,
"symbol": "ETH",
"name": "ETH",
"price": {
"usd": 2516.72546608367
}
},
{
"isBridgeable": false,
"chainKey": "ethereum",
"address": "0xfcb42A0e352a08AbD50b8EE68d01f581B6Dfd80A",
"decimals": 18,
"symbol": "S*ETH",
"name": "ETH-LP",
"price": {
"usd": 2516.72546608367
}
},
{
"isBridgeable": false,
"chainKey": "ethereum",
"address": "0x5DaAee9EF143faFF495B581e9863570e83F99d31",
"decimals": 6,
"symbol": "S*USDC",
"name": "USDC-LP",
"price": {
"usd": 0.9998755200373645
}
},
...
]
}
💡
This list is automatically updated whenever a new token is added to the Stargate protocol.
Further Reading
Last updated on