/mex/pairs/{baseId}/{quoteId}

Returns liquidity pool details by providing a combination of two tokens

Parameters

  • baseIdOPTIONAL (string) - Number of items to skip for the result set

  • quoteId OPTIONAL (string) - Number of items to retrieve

Returns

  • address: (string)

  • id: (number)

  • symbol: (string)

  • name: (string)

  • price: (number)

  • baseId: (string)

  • basePrice: (number)

  • baseSymbol: (string)

  • baseName: (string)

  • quoteId: (string)

  • quotePrice: (number)

  • quoteSymbol: (string)

  • quoteName: (string)

  • totalvalue: (number)

  • volume24h: (number)

  • state: (string)

  • type: (string)

Example

Request

curl -X 'GET' \
  'https://elrond-api.public.blastapi.io/mex/pairs/AERO-458bbf/WEGLD-bd4d79' \
  -H 'accept: application/json'

Result

{
  "address": "erd1qqqqqqqqqqqqqpgqzjctu8xrgn8jmfp503tajjvzz2zq60v92jpsslkh5a",
  "id": "AEROWEGLD-81cc37",
  "symbol": "AEROWEGLD",
  "name": "AEROWEGLDLP",
  "price": 376.32890375524244,
  "baseId": "AERO-458bbf",
  "basePrice": 0.08163362545249986,
  "baseSymbol": "AERO",
  "baseName": "Aerovek",
  "quoteId": "WEGLD-bd4d79",
  "quotePrice": 53.23392680729445,
  "quoteSymbol": "WEGLD",
  "quoteName": "WrappedEGLD",
  "totalValue": 281967.02036233334,
  "volume24h": 77886.47527166262,
  "state": "active",
  "type": "community"
}

Last updated