NETWORKS API

Discover which blockchains Neura currently supports. This endpoint is priced at 0.0004 USD per settled request.

GET /networks

Attribute
Value

Method

GET

Description

Returns all supported networks, including identifiers and metadata.

Settlements

/, /solana, /base

Price

0.0004 USD

Example request

curl -X GET "$NEURA_BASE_URL/networks" \
  -H "Accept: application/json" \
  -H "X-402-Invoice: $INVOICE" \
  -H "X-402-Payment-Proof: $PROOF"

Response snapshot

{
  "success": true,
  "data": {
    "networks": [
      {
        "id": 1,
        "name": "Ethereum",
        "symbol": "ETH",
        "chainId": 1,
        "isActive": true,
        "lastUpdated": "2025-01-15T12:55:00.000Z"
      },
      {
        "id": 137,
        "name": "Polygon",
        "symbol": "MATIC",
        "chainId": 137,
        "isActive": true,
        "lastUpdated": "2025-01-15T12:55:00.000Z"
      }
    ],
    "total": 42,
    "lastUpdated": "2025-01-15T12:55:00.000Z"
  },
  "timestamp": "2025-01-15T12:55:00.300Z"
}

Common use cases

  • Build network selection drop-downs in your UI.

  • Validate user supplied network IDs before calling token or balance endpoints.

  • Monitor isActive flags to automatically disable unsupported chains in your application.

For response field definitions, see the Data Schemasarrow-up-right section.

Last updated