Skip to main content
POST
/
api
/
snapshot
/
networks
/
search
/snapshot/networks/search
curl --request POST \
  --url https://api.anysite.io/api/snapshot/networks/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "testnet": true
}
'
[
  {
    "chain_id": "<string>",
    "@type": "SnapshotNetwork",
    "name": "<string>",
    "key": "<string>",
    "network": "<string>",
    "image": "<string>",
    "explorer_url": "<string>",
    "multicall": "<string>",
    "is_testnet": true
  }
]

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 networks to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
testnet
boolean | null

Filter to testnets only, or mainnets only

Response

Successful Response

chain_id
string
required
@type
string
default:SnapshotNetwork
name
string | null
key
string | null
network
string | null
image
string | null
explorer_url
string | null
multicall
string | null
is_testnet
boolean | null