Datamint Docs
  • 📖Introduction
  • 🔑Authorizing
  • 🛣️Endpoints
    • 📊Meta
      • 🏦Exchanges
      • 💱Pools
    • 💰ERC20
      • 📝Events
      • 💼Balances
      • 📊Meta
      • 👤Holders
    • 🔮Oracles
    • 💱DEX
      • 🔄Trades
      • 💰Prices
      • 🔊Volumes
      • 💸Fees
      • 💎TVL
    • 🦄Uniswap
      • 💼Positions V3
Powered by GitBook
On this page
  1. 🛣️Endpoints
  2. 📊Meta

🏦Exchanges

Previous📊MetaNext💱Pools

Last updated 1 year ago

get

Returns a list of exchanges with optional filters

Query parameters
blockchainstringOptional

Filter exchanges by blockchain

Example: Arbitrum
namestringOptional

Filter exchanges by name

Example: Uniswap v3
Responses
200
List of exchanges
application/json
401
Unauthorized
application/json
get
GET /v1/meta//exchanges HTTP/1.1
Host: apis.datamint.ai
Accept: */*
{
  "status": "ok",
  "response": [
    {
      "address": "0x6C9FC64A53c1b71FB3f9Af64d1ae3A4931A5f4E9",
      "blockchain": "Arbitrum",
      "name": "Uniswap v3",
      "pairs": [
        {
          "address": "text",
          "baseAddress": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1",
          "exchangeAddress": "0x6C9FC64A53c1b71FB3f9Af64d1ae3A4931A5f4E9",
          "fee": 3,
          "blockchain": "Arbitrum",
          "quoteAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
          "baseName": "WETH",
          "quoteName": "USDT"
        }
      ]
    }
  ]
}