Uniswap · Schema

PoolInfoResponse

PoolInfoResponse schema from Uniswap Trading API

BlockchainCryptocurrencyDeFiDecentralized ExchangeLiquiditySwaps

Properties

Name Type Description
requestId object
pools array Array of pool information objects.
pageSize number
currentPage number
View JSON Schema on GitHub

JSON Schema

uniswap-pool-info-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uniswap/refs/heads/main/json-schema/uniswap-pool-info-response-schema.json",
  "title": "PoolInfoResponse",
  "description": "PoolInfoResponse schema from Uniswap Trading API",
  "type": "object",
  "properties": {
    "requestId": {
      "$ref": "#/components/schemas/RequestId"
    },
    "pools": {
      "type": "array",
      "description": "Array of pool information objects.",
      "items": {
        "$ref": "#/components/schemas/PoolInformation"
      }
    },
    "pageSize": {
      "type": "number"
    },
    "currentPage": {
      "type": "number"
    }
  }
}