Get Bridge Tokens
Developing
POST
https://api.entrswap.io/v2/bridge/tokens
Request
Authorization
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
Body Params application/json
filter
object (api.TokenFilter)
optional
addresses
array[string]
optional
Example:
["0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"]
chain_ids
array[integer]
optional
Example:
[1]
is_active
boolean
optional
names
array[string]
optional
Example:
["Ethereum"]
symbols
array[string]
optional
Example:
["ETH"]
paging
object
required
page
integer
required
Example:
1
page_size
integer
optional
Example:
100
Example
{}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.entrswap.io/v2/bridge/tokens' \
--header 'Content-Type: application/json' \
--data-raw '{
}'
Responses
🟢200Success
application/json
Body
chainId_key
object
optional
tokenAddress_key
object
optional
Example
{
"chainId_key": {
"tokenAddress_key": {
"address": "string",
"chainId": 0,
"decimals": 0,
"destinations": {
"destinationChainId": {},
"addresses": [
"string"
]
},
"is_active": true,
"logoURI": "string",
"name": "string",
"priority": 0,
"symbol": "string"
}
}
}
Modified at 2025-02-26 10:45:36