Skip to main content

Networks

Reference data for networks (e.g. Ethereum Mainnet).

Authentication: Bearer token required.


List Networks

Endpoint: GET /api/v1/networks

Query Parameters

ParameterTypeRequiredDefaultDescription
chain_idstringNoFilter by chain UUID
pageintNo1Page number
per_pageintNo10Items per page (max 100)

Response — 200 OK

{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"chain_id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Mainnet",
"slug": "mainnet"
}
],
"page": 1,
"per_page": 10,
"total": 42
}

Get Network by ID

Endpoint: GET /api/v1/networks/{id}

Path Parameters

ParameterTypeRequiredDescription
idstringYesNetwork UUID

Response — 200 OK

Same structure as a single item in List response.

StatusDescription
400Invalid UUID
404Network not found