List tokens
POST
https://api.entrswap.io/v2/tokens/list
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/tokens/list' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
tokens
array[object (api.Token) {9}]
optional
address
string
optional
Example:
0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
name
string
optional
Example:
Wrapped Ether
symbol
string
optional
Example:
WETH
decimals
integer
optional
5,05
(505 / 102).Example:
18
logoURI
string
optional
Example:
https://cl.yad.finance/static-files/1i/1/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/48x48.png
is_active
boolean
optional
Example:
true
priority
integer
optional
Example:
1
is_rfq_mode
boolean
optional
Example:
false
Example
{
"tokens": [
{
"chainId": 1,
"address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"name": "Wrapped Ether",
"symbol": "WETH",
"decimals": 18,
"logoURI": "https://cl.yad.finance/static-files/1i/1/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2/48x48.png",
"is_active": true,
"priority": 1,
"is_rfq_mode": false
}
]
}
Modified at 2024-05-17 18:47:57