> ## 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/symbols

> Get trading rules and metadata for one or more trading pairs

**Price:** 1 credit

**💡 AI Hint:** Get the trading rules and metadata for one or more Binance spot trading pairs (e.g. 'BTCUSDT'). For each pair it returns the trading status, base and quote assets and their precisions, allowed order types, supported permissions (spot, margin, leveraged, trading groups), and the full set of trading filters (price range and tick size, lot/quantity steps, minimum notional, percent-price bounds, trailing-delta bounds, order-count caps, and more).

**⚠️ Common errors:** 412: None of the requested trading pairs were found



## OpenAPI

````yaml /openapi-filtered.json post /api/binance/symbols
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/symbols:
    post:
      tags:
        - /binance
      summary: /binance/symbols
      description: >-
        Get trading rules and metadata for one or more trading pairs


        **Price:** 1 credit


        **💡 AI Hint:** Get the trading rules and metadata for one or more
        Binance spot trading pairs (e.g. 'BTCUSDT'). For each pair it returns
        the trading status, base and quote assets and their precisions, allowed
        order types, supported permissions (spot, margin, leveraged, trading
        groups), and the full set of trading filters (price range and tick size,
        lot/quantity steps, minimum notional, percent-price bounds,
        trailing-delta bounds, order-count caps, and more).


        **⚠️ Common errors:** 412: None of the requested trading pairs were
        found
      operationId: __api_binance_symbols_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BinanceSymbolsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BinanceSymbol'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BinanceSymbolsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        symbols:
          items:
            type: string
          type: array
          minItems: 1
          description: Trading pair symbols, uppercase, no separator
          examples:
            - - BTCUSDT
              - ETHUSDT
      type: object
      required:
        - symbols
    BinanceSymbol:
      properties:
        '@type':
          type: string
          default: BinanceSymbol
        symbol:
          type: string
        status:
          anyOf:
            - type: string
            - type: 'null'
        base_asset:
          anyOf:
            - type: string
            - type: 'null'
        base_asset_precision:
          anyOf:
            - type: integer
            - type: 'null'
        quote_asset:
          anyOf:
            - type: string
            - type: 'null'
        quote_asset_precision:
          anyOf:
            - type: integer
            - type: 'null'
        base_commission_precision:
          anyOf:
            - type: integer
            - type: 'null'
        quote_commission_precision:
          anyOf:
            - type: integer
            - type: 'null'
        order_types:
          items:
            type: string
          type: array
          default: []
        iceberg_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        oco_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        oto_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        opo_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        quote_order_qty_market_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        allow_trailing_stop:
          anyOf:
            - type: boolean
            - type: 'null'
        cancel_replace_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        amend_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        peg_instructions_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        spot_trading_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        margin_trading_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        default_self_trade_prevention_mode:
          anyOf:
            - type: string
            - type: 'null'
        allowed_self_trade_prevention_modes:
          items:
            type: string
          type: array
          default: []
        permissions:
          items:
            type: string
          type: array
          default: []
        permission_sets:
          items:
            items:
              type: string
            type: array
          type: array
          default: []
        filters:
          items:
            $ref: '#/components/schemas/BinanceSymbolFilter'
          type: array
          default: []
      type: object
      required:
        - symbol
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BinanceSymbolFilter:
      properties:
        '@type':
          type: string
          default: BinanceSymbolFilter
        filter_type:
          type: string
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        tick_size:
          anyOf:
            - type: number
            - type: 'null'
        min_qty:
          anyOf:
            - type: number
            - type: 'null'
        max_qty:
          anyOf:
            - type: number
            - type: 'null'
        step_size:
          anyOf:
            - type: number
            - type: 'null'
        min_notional:
          anyOf:
            - type: number
            - type: 'null'
        max_notional:
          anyOf:
            - type: number
            - type: 'null'
        apply_min_to_market:
          anyOf:
            - type: boolean
            - type: 'null'
        apply_max_to_market:
          anyOf:
            - type: boolean
            - type: 'null'
        apply_to_market:
          anyOf:
            - type: boolean
            - type: 'null'
        avg_price_mins:
          anyOf:
            - type: integer
            - type: 'null'
        limit:
          anyOf:
            - type: integer
            - type: 'null'
        bid_multiplier_up:
          anyOf:
            - type: number
            - type: 'null'
        bid_multiplier_down:
          anyOf:
            - type: number
            - type: 'null'
        ask_multiplier_up:
          anyOf:
            - type: number
            - type: 'null'
        ask_multiplier_down:
          anyOf:
            - type: number
            - type: 'null'
        min_trailing_above_delta:
          anyOf:
            - type: integer
            - type: 'null'
        max_trailing_above_delta:
          anyOf:
            - type: integer
            - type: 'null'
        min_trailing_below_delta:
          anyOf:
            - type: integer
            - type: 'null'
        max_trailing_below_delta:
          anyOf:
            - type: integer
            - type: 'null'
        max_num_orders:
          anyOf:
            - type: integer
            - type: 'null'
        max_num_algo_orders:
          anyOf:
            - type: integer
            - type: 'null'
        max_num_order_lists:
          anyOf:
            - type: integer
            - type: 'null'
        max_num_order_amends:
          anyOf:
            - type: integer
            - type: 'null'
        max_position:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - filter_type
    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

````