Returns data for the top ~1000 JamonSwap pairs, sorted by reserves.
Request
GET https://api.JamonSwap.finance/api/summary
Response
{"updated_at": 1234567,// UNIX timestamp"data": {"0x..._0x...": { // ERC20 token addresses, joined by an underscore"price":"...",// price denominated in token1/token0"base_volume":"...",// last 24h volume denominated in token0"quote_volume":"...",// last 24h volume denominated in token1"liquidity":"...",// liquidity denominated in USD"liquidity_MATIC":"..." // liquidity denominated in MATIC },// ... }}
Returns the tokens in the top ~1000 pairs on JamonSwap, sorted by reserves.
Request
GET https://api.JamonSwap.finance/api/tokens
Response
{"updated_at": 1234567,// UNIX timestamp"data": {"0x...": { // the address of the ERC20 token"name":"...",// not necessarily included for ERC20 tokens"symbol":"...",// not necessarily included for ERC20 tokens"price":"...",// price denominated in USD"price_MATIC":"...",// price denominated in MATIC },// ... }}
GET https://api.JamonSwap.finance/api/tokens/0x2594C5B25EdAb3eBe937e27650c02922D9A62BF2
Response
{"updated_at": 1234567,// UNIX timestamp"data": {"name":"...",// not necessarily included for ERC20 tokens"symbol":"...",// not necessarily included for ERC20 tokens"price":"...",// price denominated in USD"price_MATIC":"...",// price denominated in MATIC }}