> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt
> Use this file to discover all available pages before exploring further.

# List supported blockchains

> List all blockchain networks supported by the platform.

Retrieves a complete list of all blockchain networks supported by the platform. Requires an API key with access level 3 or higher.

## Response

Returns an array of blockchain identifiers. Possible values include `ETHEREUM`, `POLYGON`, `BSC`, `ARBITRUM`, `OPTIMISM`, `BASE`, `AVALANCHE`, `SOLANA`, `BITCOIN`, and other networks.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/management/blockchains/list" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    "polygon",
    "bnb",
    "tron",
    "rsk",
    "solana",
    "stellar"
  ]
  ```
</ResponseExample>
