{
  "generated_at": "2026-05-11T00:56:48.476130+00:00",
  "slug": "api-slamai-dev-token-trades",
  "title": "Api \u00b7 Token Trades",
  "url": "https://api.slamai.dev/token/trades",
  "category": "finance",
  "summary": "Api \u00b7 Token Trades \u2014 x402-protected finance API. Pay $0.0010 per call on base. Indexed by x402all.",
  "seo": {
    "title": "Api \u00b7 Token Trades \u2014 x402 finance API \u00b7 $0.0010 per call",
    "description": "Api \u00b7 Token Trades \u2014 x402-protected finance API. Pay $0.0010 per call on base. Indexed by x402all."
  },
  "use_cases": [],
  "risk_notes": [
    "May process personal / identity data."
  ],
  "pricing_sanity": {
    "flag": "cheap_outlier",
    "ratio": 0.033,
    "median_category_atomic": 30000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0xd85096faec1ac03075667b4c1a1661f5623bf111",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "1000",
      "max_timeout_seconds": 300,
      "mime_type": "application/json",
      "description": "Returns trades for a specified token address, with optional filtering by side, trader, maker, paired token, block range, or timestamp range.",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "GET",
          "queryParams": {
            "num": {
              "type": "integer",
              "description": "The maximum number of records to return. Min: 1, Max: 1000."
            },
            "side": {
              "enum": [
                "buy",
                "sell",
                "all"
              ],
              "type": "string",
              "description": "Specifies trade side for the given token_address."
            },
            "order": {
              "enum": [
                "asc",
                "desc"
              ],
              "type": "string",
              "description": "Sort order for results."
            },
            "max_usd": {
              "type": "number",
              "description": "Maximum trade size in USD. Filters out trades with an estimated USD value above this threshold. Calculated using on-chain price data at the time of the trade. Note: Adds additional SLAM cost to the query. A maximum of 10,000 trades that would otherwise match this query will be scanned."
            },
            "min_usd": {
              "type": "number",
              "description": "Minimum trade size in USD. Filters out trades with an estimated USD value below this threshold. Calculated using on-chain price data at the time of the trade. Note: Adds additional SLAM cost to the query. A maximum of 10,000 trades that would otherwise match this query will be scanned."
            },
            "blockchain": {
              "enum": [
                "ethereum",
                "base"
              ],
              "type": "string",
              "required": true,
              "description": "The blockchain network to query."
            },
            "start_block": {
              "type": "integer",
              "description": "Block number to start the search from (inclusive). Defaults to the latest block in desc order, or the genesis block in asc order."
            },
            "estimate_cost": {
              "type": "boolean",
              "description": "When true returns the SLAM token cost for this query. It does not return any data or incur any actual charges."
            },
            "maker_address": {
              "type": "string",
              "description": "Filter trades where this address initiated the swap transaction."
            },
            "token_address": {
              "type": "string",
              "required": true,
              "description": "The ERC-20 token contract address to fetch trades for."
            },
            "trader_address": {
              "type": "string",
              "description": "Filter trades where this address sent or received the specified token, regardless of whether they initiated the swap transaction."
            },
            "start_log_index": {
              "type": "integer",
              "description": "Log index within the starting block to resume pagination or refine the starting point."
            },
            "start_timestamp": {
              "type": "string",
              "description": "Start searching from this UTC timestamp (inclusive). If provided, overrides start_block as the starting point."
            },
            "paired_token_address": {
              "type": "string",
              "description": "Filter trades where the specified token was swapped against this paired token address, regardless of pool."
            }
          }
        },
        "output": {
          "status": 200,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "slam": {
                        "type": "number",
                        "format": "double",
                        "description": "The SLAM token cost for this API call."
                      },
                      "chain": {
                        "type": "string",
                        "description": "The name of the blockchain network (e.g., base)."
                      },
                      "cursor": {
                        "type": "object",
                        "properties": {
                          "start_block": {
                            "type": "integer",
                            "format": "int32",
                            "description": "The block number at which to continue fetching results."
                          },
                          "start_log_index": {
                            "type": "integer",
                            "format": "int32",
                            "description": "The log index within the block at which to continue."
                          }
                        }
                      },
                      "trades": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "usd": {
                              "type": "number",
                              "format": "double",
                              "description": "The USD value of the trade at the time of execution."
                            },
                            "pair": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "description": "Pair name (e.g., WETH/USDC)."
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Additional tags or labels describing the pair."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "The pair or pool contract address (V2/V3) or pool ID (V4)."
                                }
                              }
                            },
                            "side": {
                              "type": "string",
                              "description": "The side of the trade: \"buy\" or \"sell\", relative to the trader."
                            },
                            "maker": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "A human-readable label for the address (if available)."
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Additional tags or labels describing the address."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "The maker address."
                                }
                              }
                            },
                            "price": {
                              "type": "number",
                              "format": "double",
                              "description": "The execution price expressed as quoteToken per baseToken."
                            },
                            "sender": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "A human-readable label for the address (if available)."
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Additional tags or labels describing the address."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "The address that invoked the pool\u2019s swap function (event sender); often a router, aggregator, or other contract executing the swap."
                                }
                              }
                            },
                            "trader": {
                              "type": "object",
                              "properties": {
                                "flow": {
                                  "type": "object",
                                  "properties": {
                                    "buy": {
                                      "type": "object",
                                      "properties": {
                                        "raw": {
                                          "type": "number",
                                          "format": "double",
                                          "nullable": true,
                                          "description": "Raw flow score."
                                        },
                                        "tier": {
                                          "type": "string",
                                          "description": "Flow tier (e.g., \"Flood\")"
                                        }
                                      }
                                    },
                                    "sell": {
                                      "type": "object",
                                      "properties": {
                                        "raw": {
                                          "type": "number",
                                          "format": "double",
                                          "nullable": true,
                                          "description": "Raw flow score."
                                        },
                                        "tier": {
                                          "type": "string",
                                          "description": "Flow tier (e.g., \"Flood\")"
                                        }
                                      }
                                    },
                                    "total": {
                                      "type": "object",
                                      "properties": {
                                        "raw": {
                                          "type": "number",
                                          "format": "double",
                                          "nullable": true,
                                          "description": "Raw flow score."
                                        },
                                        "tier": {
                                          "type": "string",
                                          "description": "Flow tier (e.g., \"Flood\")"
                                        }
                                      }
                                    }
                                  }
                                },
                                "mass": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw mass score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Mass tier (e.g., \"Whale\", \"Dolphin\", \"Fish\", etc.)"
                                    }
                                  }
                                },
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "A human-readable label for the address (if available)."
                                },
                                "entry": {
                                  "type": "object",
                                  "properties": {
                                    "utc": {
                                      "type": "string",
                                      "description": "Timestamp of entry (ISO 8601 format)."
                                    },
                                    "block": {
                                      "type": "integer",
                                      "format": "int32",
                                      "description": "Block number of entry."
                                    },
                                    "method": {
                                      "type": "string",
                                      "description": "How the wallet initially received the token (e.g., \"DEX\", \"Airdrop\", \"Transfer\")"
                                    },
                                    "parent": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Address of the immediate parent wallet/contract that transferred tokens to this wallet."
                                    },
                                    "grand_parent": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Address of the upstream source two levels back in the transfer chain."
                                    },
                                    "token_amount": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "Amount received at entry."
                                    },
                                    "great_grand_parent": {
                                      "type": "string",
                                      "nullable": true,
                                      "description": "Address of the upstream source three levels back in the transfer chain."
                                    }
                                  }
                                },
                                "epoch": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw epoch score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Epoch tier (e.g., \"Early Adopter\")"
                                    }
                                  }
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Additional tags or labels describing the address."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "The trader address."
                                },
                                "reputation": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw reputation score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Reputation label (e.g., \"A\")"
                                    }
                                  }
                                },
                                "intelligence": {
                                  "type": "object",
                                  "properties": {
                                    "iq": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw IQ score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Intelligence label (e.g., \"Genius\")"
                                    }
                                  }
                                },
                                "maker_presence": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw presence score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Presence tier (e.g., \"Active\")"
                                    }
                                  }
                                },
                                "base_token_holding": {
                                  "type": "object",
                                  "properties": {
                                    "held": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Amount held (non-staked)."
                                    },
                                    "staked": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Net amount transferred to a staking contract."
                                    },
                                    "balance": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "Current wallet balance of the token."
                                    },
                                    "value_usd": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "USD value of the token holdings."
                                    },
                                    "staked_pct": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Percentage of the wallet's token balance transferred to a staking contract."
                                    },
                                    "supply_pct": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "Percentage of the token's total supply held."
                                    }
                                  }
                                },
                                "quote_token_holding": {
                                  "type": "object",
                                  "properties": {
                                    "held": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Amount held (non-staked)."
                                    },
                                    "staked": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Net amount transferred to a staking contract."
                                    },
                                    "balance": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "Current wallet balance of the token."
                                    },
                                    "value_usd": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "USD value of the token holdings."
                                    },
                                    "staked_pct": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Percentage of the wallet's token balance transferred to a staking contract."
                                    },
                                    "supply_pct": {
                                      "type": "number",
                                      "format": "double",
                                      "description": "Percentage of the token's total supply held."
                                    }
                                  }
                                }
                              }
                            },
                            "recipient": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "A human-readable label for the address (if available)."
                                },
                                "labels": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Additional tags or labels describing the address."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "The address designated to receive output tokens in the swap event (Uniswap V2: event to; Uniswap V3: event recipient). May be an intermediary contract."
                                }
                              }
                            },
                            "base_token": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "description": "Full token name."
                                },
                                "amount": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "The amount of the token exchanged (normalized by token decimals)."
                                },
                                "symbol": {
                                  "type": "string",
                                  "description": "Token symbol."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "Token contract address."
                                }
                              }
                            },
                            "quote_token": {
                              "type": "object",
                              "properties": {
                                "name": {
                                  "type": "string",
                                  "description": "Full token name."
                                },
                                "amount": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "The amount of the token exchanged (normalized by token decimals)."
                                },
                                "symbol": {
                                  "type": "string",
                                  "description": "Token symbol."
                                },
                                "address": {
                                  "type": "string",
                                  "description": "Token contract address."
                                }
                              }
                            },
                            "transaction": {
                              "type": "object",
                              "properties": {
                                "utc": {
                                  "type": "string",
                                  "description": "UTC timestamp of the transaction (ISO 8601 format)."
                                },
                                "hash": {
                                  "type": "string",
                                  "description": "Transaction hash."
                                },
                                "block": {
                                  "type": "integer",
                                  "format": "int32",
                                  "description": "Block number containing the transaction."
                                },
                                "method": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Decoded contract method name (if available)."
                                },
                                "log_index": {
                                  "type": "integer",
                                  "format": "int32",
                                  "description": "Log index for this transfer within the block."
                                }
                              }
                            }
                          }
                        },
                        "description": "List of token trade records matching the query."
                      }
                    }
                  },
                  {
                    "type": "object",
                    "properties": {
                      "slam": {
                        "type": "number",
                        "format": "double"
                      }
                    }
                  }
                ]
              }
            }
          },
          "description": "OK"
        }
      }
    }
  ],
  "origin": {
    "slug": "api-slamai-dev",
    "host": "api.slamai.dev",
    "url": "https://api.slamai.dev"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/api-slamai-dev-token-trades",
    "url": "https://x402all.com/resource/api-slamai-dev-token-trades",
    "name": "Api \u00b7 Token Trades",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/api-slamai-dev-token-trades",
      "@type": "Offer",
      "price": "0.001",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "additionalProperty": [
        {
          "name": "paymentNetwork",
          "@type": "PropertyValue",
          "value": "base"
        },
        {
          "name": "paymentAsset",
          "@type": "PropertyValue",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ],
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.001000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent"
    },
    "sameAs": "https://api.slamai.dev/token/trades",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/api-slamai-dev",
      "url": "https://api.slamai.dev",
      "name": "api.slamai.dev",
      "@type": "Organization"
    },
    "identifier": "api-slamai-dev-token-trades",
    "description": "Api \u00b7 Token Trades \u2014 x402-protected finance API. Pay $0.0010 per call on base. Indexed by x402all.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=api-slamai-dev-token-trades",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "finance"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=api-slamai-dev-token-trades",
  "callability": {
    "status": "partial",
    "schema_callability": 0.282,
    "source": "facilitator_bazaar",
    "source_confidence": 0.75,
    "match_confidence": 0.4,
    "schema_confidence": 0.2,
    "validated_at": "2026-05-10T23:49:08.101235+00:00",
    "warnings": []
  },
  "contract": {
    "route_template": "https://api.slamai.dev/token/trades",
    "content_type": "application/json",
    "response_schema": {
      "status": 200,
      "content": {
        "application/json": {
          "schema": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "slam": {
                    "type": "number",
                    "format": "double",
                    "description": "The SLAM token cost for this API call."
                  },
                  "chain": {
                    "type": "string",
                    "description": "The name of the blockchain network (e.g., base)."
                  },
                  "cursor": {
                    "type": "object",
                    "properties": {
                      "start_block": {
                        "type": "integer",
                        "format": "int32",
                        "description": "The block number at which to continue fetching results."
                      },
                      "start_log_index": {
                        "type": "integer",
                        "format": "int32",
                        "description": "The log index within the block at which to continue."
                      }
                    }
                  },
                  "trades": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "usd": {
                          "type": "number",
                          "format": "double",
                          "description": "The USD value of the trade at the time of execution."
                        },
                        "pair": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Pair name (e.g., WETH/USDC)."
                            },
                            "labels": {
                              "type": "string",
                              "nullable": true,
                              "description": "Additional tags or labels describing the pair."
                            },
                            "address": {
                              "type": "string",
                              "description": "The pair or pool contract address (V2/V3) or pool ID (V4)."
                            }
                          }
                        },
                        "side": {
                          "type": "string",
                          "description": "The side of the trade: \"buy\" or \"sell\", relative to the trader."
                        },
                        "maker": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "description": "A human-readable label for the address (if available)."
                            },
                            "labels": {
                              "type": "string",
                              "nullable": true,
                              "description": "Additional tags or labels describing the address."
                            },
                            "address": {
                              "type": "string",
                              "description": "The maker address."
                            }
                          }
                        },
                        "price": {
                          "type": "number",
                          "format": "double",
                          "description": "The execution price expressed as quoteToken per baseToken."
                        },
                        "sender": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "description": "A human-readable label for the address (if available)."
                            },
                            "labels": {
                              "type": "string",
                              "nullable": true,
                              "description": "Additional tags or labels describing the address."
                            },
                            "address": {
                              "type": "string",
                              "description": "The address that invoked the pool\u2019s swap function (event sender); often a router, aggregator, or other contract executing the swap."
                            }
                          }
                        },
                        "trader": {
                          "type": "object",
                          "properties": {
                            "flow": {
                              "type": "object",
                              "properties": {
                                "buy": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw flow score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Flow tier (e.g., \"Flood\")"
                                    }
                                  }
                                },
                                "sell": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw flow score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Flow tier (e.g., \"Flood\")"
                                    }
                                  }
                                },
                                "total": {
                                  "type": "object",
                                  "properties": {
                                    "raw": {
                                      "type": "number",
                                      "format": "double",
                                      "nullable": true,
                                      "description": "Raw flow score."
                                    },
                                    "tier": {
                                      "type": "string",
                                      "description": "Flow tier (e.g., \"Flood\")"
                                    }
                                  }
                                }
                              }
                            },
                            "mass": {
                              "type": "object",
                              "properties": {
                                "raw": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Raw mass score."
                                },
                                "tier": {
                                  "type": "string",
                                  "description": "Mass tier (e.g., \"Whale\", \"Dolphin\", \"Fish\", etc.)"
                                }
                              }
                            },
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "description": "A human-readable label for the address (if available)."
                            },
                            "entry": {
                              "type": "object",
                              "properties": {
                                "utc": {
                                  "type": "string",
                                  "description": "Timestamp of entry (ISO 8601 format)."
                                },
                                "block": {
                                  "type": "integer",
                                  "format": "int32",
                                  "description": "Block number of entry."
                                },
                                "method": {
                                  "type": "string",
                                  "description": "How the wallet initially received the token (e.g., \"DEX\", \"Airdrop\", \"Transfer\")"
                                },
                                "parent": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Address of the immediate parent wallet/contract that transferred tokens to this wallet."
                                },
                                "grand_parent": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Address of the upstream source two levels back in the transfer chain."
                                },
                                "token_amount": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Amount received at entry."
                                },
                                "great_grand_parent": {
                                  "type": "string",
                                  "nullable": true,
                                  "description": "Address of the upstream source three levels back in the transfer chain."
                                }
                              }
                            },
                            "epoch": {
                              "type": "object",
                              "properties": {
                                "raw": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Raw epoch score."
                                },
                                "tier": {
                                  "type": "string",
                                  "description": "Epoch tier (e.g., \"Early Adopter\")"
                                }
                              }
                            },
                            "labels": {
                              "type": "string",
                              "nullable": true,
                              "description": "Additional tags or labels describing the address."
                            },
                            "address": {
                              "type": "string",
                              "description": "The trader address."
                            },
                            "reputation": {
                              "type": "object",
                              "properties": {
                                "raw": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Raw reputation score."
                                },
                                "tier": {
                                  "type": "string",
                                  "description": "Reputation label (e.g., \"A\")"
                                }
                              }
                            },
                            "intelligence": {
                              "type": "object",
                              "properties": {
                                "iq": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Raw IQ score."
                                },
                                "tier": {
                                  "type": "string",
                                  "description": "Intelligence label (e.g., \"Genius\")"
                                }
                              }
                            },
                            "maker_presence": {
                              "type": "object",
                              "properties": {
                                "raw": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Raw presence score."
                                },
                                "tier": {
                                  "type": "string",
                                  "description": "Presence tier (e.g., \"Active\")"
                                }
                              }
                            },
                            "base_token_holding": {
                              "type": "object",
                              "properties": {
                                "held": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Amount held (non-staked)."
                                },
                                "staked": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Net amount transferred to a staking contract."
                                },
                                "balance": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Current wallet balance of the token."
                                },
                                "value_usd": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "USD value of the token holdings."
                                },
                                "staked_pct": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Percentage of the wallet's token balance transferred to a staking contract."
                                },
                                "supply_pct": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Percentage of the token's total supply held."
                                }
                              }
                            },
                            "quote_token_holding": {
                              "type": "object",
                              "properties": {
                                "held": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Amount held (non-staked)."
                                },
                                "staked": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Net amount transferred to a staking contract."
                                },
                                "balance": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Current wallet balance of the token."
                                },
                                "value_usd": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "USD value of the token holdings."
                                },
                                "staked_pct": {
                                  "type": "number",
                                  "format": "double",
                                  "nullable": true,
                                  "description": "Percentage of the wallet's token balance transferred to a staking contract."
                                },
                                "supply_pct": {
                                  "type": "number",
                                  "format": "double",
                                  "description": "Percentage of the token's total supply held."
                                }
                              }
                            }
                          }
                        },
                        "recipient": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "nullable": true,
                              "description": "A human-readable label for the address (if available)."
                            },
                            "labels": {
                              "type": "string",
                              "nullable": true,
                              "description": "Additional tags or labels describing the address."
                            },
                            "address": {
                              "type": "string",
                              "description": "The address designated to receive output tokens in the swap event (Uniswap V2: event to; Uniswap V3: event recipient). May be an intermediary contract."
                            }
                          }
                        },
                        "base_token": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Full token name."
                            },
                            "amount": {
                              "type": "number",
                              "format": "double",
                              "description": "The amount of the token exchanged (normalized by token decimals)."
                            },
                            "symbol": {
                              "type": "string",
                              "description": "Token symbol."
                            },
                            "address": {
                              "type": "string",
                              "description": "Token contract address."
                            }
                          }
                        },
                        "quote_token": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string",
                              "description": "Full token name."
                            },
                            "amount": {
                              "type": "number",
                              "format": "double",
                              "description": "The amount of the token exchanged (normalized by token decimals)."
                            },
                            "symbol": {
                              "type": "string",
                              "description": "Token symbol."
                            },
                            "address": {
                              "type": "string",
                              "description": "Token contract address."
                            }
                          }
                        },
                        "transaction": {
                          "type": "object",
                          "properties": {
                            "utc": {
                              "type": "string",
                              "description": "UTC timestamp of the transaction (ISO 8601 format)."
                            },
                            "hash": {
                              "type": "string",
                              "description": "Transaction hash."
                            },
                            "block": {
                              "type": "integer",
                              "format": "int32",
                              "description": "Block number containing the transaction."
                            },
                            "method": {
                              "type": "string",
                              "nullable": true,
                              "description": "Decoded contract method name (if available)."
                            },
                            "log_index": {
                              "type": "integer",
                              "format": "int32",
                              "description": "Log index for this transfer within the block."
                            }
                          }
                        }
                      }
                    },
                    "description": "List of token trade records matching the query."
                  }
                }
              },
              {
                "type": "object",
                "properties": {
                  "slam": {
                    "type": "number",
                    "format": "double"
                  }
                }
              }
            ]
          }
        }
      },
      "description": "OK"
    },
    "examples": [],
    "schema_presence": {
      "path_schema": "unknown",
      "query_schema": "unknown",
      "header_schema": "unknown",
      "request_body_schema": "unknown",
      "response_schema": "partial"
    },
    "contract_hash": "95767de4a7828e978e45af3fde8c163465df030cb49dfd2bbbea155050d94953"
  }
}