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 ID | Chain Name | Description |
|---|---|---|
1482601649 | Skale Nebula Mainnet | Default chain - High-performance EVM-compatible network |
43114 | Avalanche C-Chain | Fast, low-cost smart contract platform |
137 | Polygon | Layer 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=1482601649Query Avalanche C-Chain:
GET https://dev-backend.pixpel.io/v1/spot/tickers?chain=43114Query Polygon:
GET https://dev-backend.pixpel.io/v1/spot/tickers?chain=137Chain 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" },
];