Uniswap · Schema

CreateSendRequest

CreateSendRequest schema from Uniswap Trading API

BlockchainCryptocurrencyDeFiDecentralized ExchangeLiquiditySwaps

Properties

Name Type Description
sender object
recipient object
token object
amount object
chainId object
urgency object
View JSON Schema on GitHub

JSON Schema

uniswap-create-send-request-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-create-send-request-schema.json",
  "title": "CreateSendRequest",
  "description": "CreateSendRequest schema from Uniswap Trading API",
  "type": "object",
  "properties": {
    "sender": {
      "$ref": "#/components/schemas/senderWalletAddress"
    },
    "recipient": {
      "$ref": "#/components/schemas/receiverWalletAddress"
    },
    "token": {
      "$ref": "#/components/schemas/inputToken"
    },
    "amount": {
      "$ref": "#/components/schemas/tokenAmount"
    },
    "chainId": {
      "$ref": "#/components/schemas/ChainId"
    },
    "urgency": {
      "$ref": "#/components/schemas/Urgency"
    }
  },
  "required": [
    "sender",
    "recipient",
    "token",
    "amount",
    "chainId"
  ]
}