---
title: "Network routes implementation"
method: GET
path: "/api/v1/networks"
tags: ["Networks"]
---

# Network routes implementation

`GET /api/v1/networks`

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

Lists all networks with pagination support.

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

Network list retrieved successfully

- ApiResponseVecNetworkResponse
  - `data` object[]
    - `average_blocktime_ms` integer — Estimated average time between blocks in milliseconds
    - `chain_id` integer — EVM-specific: Chain ID
    - `explorer_urls` string[] — List of Explorer endpoint URLs
    - `features` string[] — EVM-specific: Network features (e.g., "eip1559")
    - `horizon_url` string — Stellar-specific: Horizon URL
    - `id` string, required — Unique identifier composed of network_type and name, e.g., "evm:mainnet"
    - `is_testnet` boolean — Flag indicating if the network is a testnet
    - `name` string, required — Name of the network (e.g., "mainnet", "sepolia")
    - `network_type` 'evm' | 'solana' | 'stellar', required — Network type enum for relayers
    - `passphrase` string — Stellar-specific: Network passphrase
    - `required_confirmations` integer — EVM-specific: Required confirmations
    - `rpc_urls` RpcConfig[] — List of RPC endpoint configurations
      - `url` string, required — The RPC endpoint URL.
      - `weight` integer, required — The weight of this endpoint in the weighted round-robin selection. Defaults to [`DEFAULT_RPC_WEIGHT`]. Should be between 0 and 100.
    - `symbol` string — EVM-specific: Native token symbol
    - `tags` string[] — List of arbitrary tags for categorizing or filtering networks
  - `error` string
  - `metadata` PluginMetadata
    - `logs` LogEntry[], nullable
      - `level` 'log' | 'info' | 'error' | 'warn' | 'debug' | 'result', required
      - `message` string, required
    - `traces` unknown[], nullable
      - unknown
  - `pagination` PaginationMeta
    - `current_page` integer, required
    - `per_page` integer, required
    - `total_items` integer, required
  - `success` boolean, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `500` — Internal Server Error

## Changes

- **2026-01-12** `41cbb68dc72d` — 1 info
  - endpoint added
- **2025-10-31** `5487da58bf15` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/openzeppelin/apis/openzeppelin-relayer-api/changes/api/v1/networks/get.md)

---

[API](https://skmtc.dev/openzeppelin/apis/openzeppelin-relayer-api.md) · [All operations](https://skmtc.dev/openzeppelin/apis/openzeppelin-relayer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openzeppelin/openzeppelin-relayer-api/revisions/e6e7514284f5/schema)
