v18

latestOpenAPI 3.1.0AGPL-3.0 licenseraw.githubusercontent.com2026-08-0143162294.8 KB
Networks

Network routes implementation

Note: OpenAPI documentation for these endpoints can be found in the openapi.rs file

Lists all networks with pagination support.

get/api/v1/networks

Query parameters

pageinteger

Page number for pagination (starts at 1)

per_pageinteger

Number of items per page (default: 10)

Response

Network list retrieved successfully

errorstring
successboolean required

Example response

{
  "data": [
    {
      "rpc_urls": [
        {
          "url": "https://rpc.example.com",
          "weight": 100
        }
      ]
    }
  ]
}