Skip to main content
POST
/
api
/
snapshot
/
networks
/snapshot/networks
curl --request POST \
  --url https://api.anysite.io/api/snapshot/networks \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "network": "<string>",
  "timeout": 300
}
'
[
  {
    "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
network
string
required

Network chain id

Minimum string length: 1
Examples:

"1"

"137"

"42161"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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