Uniswap · Schema

GetOrdersResponse

GetOrdersResponse schema from Uniswap Trading API

BlockchainCryptocurrencyDeFiDecentralized ExchangeLiquiditySwaps

Properties

Name Type Description
requestId object
orders array
cursor string
View JSON Schema on GitHub

JSON Schema

uniswap-get-orders-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-get-orders-response-schema.json",
  "title": "GetOrdersResponse",
  "description": "GetOrdersResponse schema from Uniswap Trading API",
  "type": "object",
  "properties": {
    "requestId": {
      "$ref": "#/components/schemas/RequestId"
    },
    "orders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UniswapXOrder"
      }
    },
    "cursor": {
      "type": "string"
    }
  },
  "required": [
    "orders",
    "requestId"
  ]
}