Skip to main content
POST
/
api
/
debank
/
chains
/debank/chains
curl --request POST \
  --url https://api.anysite.io/api/debank/chains \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "DebankChain",
    "name": "<string>",
    "community_id": 123,
    "native_token_id": "<string>",
    "native_token_symbol": "<string>",
    "wrapped_token_id": "<string>",
    "explorer_host": "<string>",
    "is_support_history": true,
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of supported networks to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:DebankChain
name
string | null
community_id
integer | null
native_token_id
string | null
native_token_symbol
string | null
wrapped_token_id
string | null
explorer_host
string | null
is_support_history
boolean | null
image
string | null