getList available crypto networks

Returns account-scoped setup availability projected onto crypto networks. Items in this response reflect the same runtime-availability verdict that funding-endpoint provisioning evaluates, so callers may rely on them as a deposit-setup-readiness signal. direction defaults to deposit. For the global reference catalog (which is NOT a setup guarantee), use /crypto-networks; for topology-scoped eligibility, use /eligible-crypto-networks.

Request

Request URL

GET
GET /available-crypto-networks

Responses

Response

application/json
{
  "items": [
    {
      "active": true,
      "assets": [
        "USDC",
        "ETH"
      ],
      "code": "ethereum",
      "display_name": "Ethereum"
    },
    {
      "active": true,
      "assets": [
        "USDC",
        "MATIC"
      ],
      "code": "polygon",
      "display_name": "Polygon"
    }
  ],
  "next_page_token": null
}

Operation succeeded.