Skip to content

Supported Chains

GET /api/v1/pay/chains

Returns the list of chains supported by CyberPay.

Request

# All chains
GET /api/v1/pay/chains
 
# Direct chains only
GET /api/v1/pay/chains?direct_only=true
ParameterTypeDescription
direct_onlyboolOptional, return only direct chains

Response — All

{
  "direct_chains": [
    "eip155:1", "eip155:8453", "eip155:42161", "eip155:137",
    "eip155:10", "eip155:56", "eip155:43114", "eip155:84532",
    "ton", "solana", "tron", "sui"
  ],
  "crosschain_chains": [
    "btc", "near", "stellar", "starknet", "cardano", "aleo",
    "xrp", "doge", "ltc", "bch", "zec", "dash",
    "aptos", "gnosis", "scroll", "monad", "bera"
  ],
  "total": 29
}

Response — direct_only=true

{
  "chains": [
    "eip155:1", "eip155:8453", "eip155:42161", "eip155:137",
    "eip155:10", "eip155:56", "eip155:43114", "eip155:84532",
    "ton", "solana", "tron", "sui"
  ],
  "count": 12
}

Direct Chains vs Cross-Chain

  • Direct chains: CyberPay contracts are deployed, the user's wallet calls the contract directly, settlement in seconds
  • Cross-chain: Relayed via CyberPay cross-chain routing, the user transfers to a deposit address, settlement in 1-5 minutes