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
Example response
{
"data": [
{
"rpc_urls": [
{
"url": "https://rpc.example.com",
"weight": 100
}
]
}
]
}