Skip to main content
POST
/
api
/
dune
/
blockchains
/dune/blockchains
curl --request POST \
  --url https://api.anysite.io/api/dune/blockchains \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "DuneBlockchain",
    "display_name": "<string>",
    "chain_id": 123,
    "protocol": "<string>",
    "decoding_enabled": true,
    "token_address": "<string>",
    "public_since": "<string>",
    "star_count": 123,
    "dashboard_count": 123,
    "query_count": 123,
    "creator_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of blockchains to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:DuneBlockchain
display_name
string | null
chain_id
integer | null
protocol
string | null
decoding_enabled
boolean | null
token_address
string | null
public_since
string | null
star_count
integer | null
dashboard_count
integer | null
query_count
integer | null
creator_count
integer | null