Endpoint:

https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v2

Authentication:

  • None required

Query Example (GraphQL query):

{
  pairDayDatas(
    first: 100,
    orderBy: date,
    orderDirection: asc,
    where: { pairAddress: "PAIR_CONTRACT_ADDRESS" }
  ) {
    date
    dailyVolumeUSD
    reserveUSD
  }
}