curl -X GET "https://inkyswap.com/api/pairs"
[
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"token0": {
"address": "0x0000000000000000000000000000000000000000",
"symbol": "ETH",
"name": "Ethereum",
"decimals": 18
},
"token1": {
"address": "0xabcdef1234567890abcdef1234567890abcdef12",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6
},
"liquidity_usd": 5000000,
"reserve0": "1250000000000000000000",
"reserve1": "2500000000000",
"volume_24h": 125000,
"fee_tier": 0.003
}
]
Retrieve all available liquidity pairs sorted by liquidity
curl -X GET "https://inkyswap.com/api/pairs"
[
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"token0": {
"address": "0x0000000000000000000000000000000000000000",
"symbol": "ETH",
"name": "Ethereum",
"decimals": 18
},
"token1": {
"address": "0xabcdef1234567890abcdef1234567890abcdef12",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6
},
"liquidity_usd": 5000000,
"reserve0": "1250000000000000000000",
"reserve1": "2500000000000",
"volume_24h": 125000,
"fee_tier": 0.003
}
]
Show Pair Object
[
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"token0": {
"address": "0x0000000000000000000000000000000000000000",
"symbol": "ETH",
"name": "Ethereum",
"decimals": 18
},
"token1": {
"address": "0xabcdef1234567890abcdef1234567890abcdef12",
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6
},
"liquidity_usd": 5000000,
"reserve0": "1250000000000000000000",
"reserve1": "2500000000000",
"volume_24h": 125000,
"fee_tier": 0.003
}
]
curl -X GET "https://inkyswap.com/api/pairs"