Skip to main content
GET
/
api
/
v1
/
metadata
/
chains
List supported chains
import requests

url = "https://api.example.com/api/v1/metadata/chains"

response = requests.get(url)

print(response.text)
{
  "result": {
    "data": [],
    "pagination": {
      "before": "",
      "after": "",
      "total_count": 0
    }
  },
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Headers

X-API-Key
string | null

Query Parameters

wallet_type
enum<string>
default:MPC

The wallet type to retrieve chains for. Use MPC.

Available options:
Custodial,
MPC
chain_ids
string | null

A comma-separated list of Cobo chain IDs to filter by (for example, SETH,BASE_ETH). If omitted, all chains are returned.

limit
integer | null

The maximum number of items to return. Range: [1, 500].

Required range: 1 <= x <= 500
before
string | null

A cursor for backward pagination. Pass the before value from a previous response to retrieve the preceding page.

after
string | null

A cursor for forward pagination. Pass the after value from a previous response to retrieve the next page.

Response

Successful Response

result
WaasPaginatedResponse[ChainMetadata] · object
required
success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.