GET
/
admin
/
api
/
v1
/
networks
cURL
curl --request GET \
  --url https://merits.blockscout.com/admin/api/v1/networks \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "chain_id": "<string>",
      "name": "<string>",
      "domain": "<string>",
      "active": true,
      "rpc_url": "<string>",
      "blockscout_api_key": "<string>",
      "block_timestamp_skew": 123,
      "sent_transactions_activity_enabled": true,
      "verified_contracts_activity_enabled": true,
      "blockscout_usage_activity_enabled": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Authentication token, prefixed by Bearer: Bearer <token>

Response

200
application/json

A successful response.

The response is of type object.