> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /binance/trades

> Get the most recent trades for a trading pair

**Price:** 1 credit

**💡 AI Hint:** Get the most recent executed trades for a Binance spot trading pair (e.g. 'BTCUSDT') — real-time tick data. Each trade carries its id, price, quantity, quote quantity, execution time, whether the buyer was the maker, and whether it was the best price match. Trades are ordered oldest to newest.

**⚠️ Common errors:** 412: Trading pair not found



## OpenAPI

````yaml /openapi-filtered.json post /api/binance/trades
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/binance/trades:
    post:
      tags:
        - /binance
      summary: /binance/trades
      description: >-
        Get the most recent trades for a trading pair


        **Price:** 1 credit


        **💡 AI Hint:** Get the most recent executed trades for a Binance spot
        trading pair (e.g. 'BTCUSDT') — real-time tick data. Each trade carries
        its id, price, quantity, quote quantity, execution time, whether the
        buyer was the maker, and whether it was the best price match. Trades are
        ordered oldest to newest.


        **⚠️ Common errors:** 412: Trading pair not found
      operationId: __api_binance_trades_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BinanceTradesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BinanceTrade'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BinanceTradesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        symbol:
          type: string
          description: Trading pair symbol, uppercase, no separator
          examples:
            - BTCUSDT
            - ETHUSDT
        count:
          type: integer
          maximum: 1000
          minimum: 1
          description: Number of recent trades to return
      type: object
      required:
        - symbol
        - count
    BinanceTrade:
      properties:
        '@type':
          type: string
          default: BinanceTrade
        id:
          type: integer
        price:
          anyOf:
            - type: number
            - type: 'null'
        quantity:
          anyOf:
            - type: number
            - type: 'null'
        quote_quantity:
          anyOf:
            - type: number
            - type: 'null'
        traded_at:
          anyOf:
            - type: integer
            - type: 'null'
        is_buyer_maker:
          anyOf:
            - type: boolean
            - type: 'null'
        is_best_match:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````