Logo
API Documentation

Supported Chains

List of blockchain networks supported by Pixpel DEX APIs

Pixpel DEX APIs support multiple blockchain networks. Use the appropriate chain ID when making API requests to query data for a specific network.

Available Chains

Chain IDChain NameDescription
1482601649Skale Nebula MainnetDefault chain - High-performance EVM-compatible network
43114Avalanche C-ChainFast, low-cost smart contract platform
137PolygonLayer 2 scaling solution for Ethereum

Usage in API Requests

Include the chain parameter in your API requests to specify which blockchain network you want to query. If not specified, the default chain ID 1482601649 (Skale Nebula Mainnet) will be used.

Example Requests

Query Skale Nebula Mainnet (default):

GET https://dev-backend.pixpel.io/v1/spot/tickers?chain=1482601649

Query Avalanche C-Chain:

GET https://dev-backend.pixpel.io/v1/spot/tickers?chain=43114

Query Polygon:

GET https://dev-backend.pixpel.io/v1/spot/tickers?chain=137

Chain Constants

You can use these constants in your application:

export const chains = [
  { chainId: 1482601649, name: "Skale Nebula Mainnet" },
  { chainId: 43114, name: "Avalanche C-Chain" },
  { chainId: 137, name: "Polygon" },
];