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

> List and filter the catalog of trading pairs and their trading rules

**Price:** 1 credit

**💡 AI Hint:** Browse the Binance spot trading-pair catalog. Returns trading pairs with their status, base and quote assets and precisions, allowed order types, permissions, and the full set of trading filters. Narrow the catalog with optional filters: base_asset (e.g. 'BTC'), quote_asset (e.g. 'USDT'), trading status, and supported permission (e.g. 'SPOT', 'MARGIN', 'LEVERAGED'). Use this to discover which pairs exist and how each one trades.



## OpenAPI

````yaml /openapi-filtered.json post /api/binance/symbols/search
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/search:
    post:
      tags:
        - /binance
      summary: /binance/symbols/search
      description: >-
        List and filter the catalog of trading pairs and their trading rules


        **Price:** 1 credit


        **💡 AI Hint:** Browse the Binance spot trading-pair catalog. Returns
        trading pairs with their status, base and quote assets and precisions,
        allowed order types, permissions, and the full set of trading filters.
        Narrow the catalog with optional filters: base_asset (e.g. 'BTC'),
        quote_asset (e.g. 'USDT'), trading status, and supported permission
        (e.g. 'SPOT', 'MARGIN', 'LEVERAGED'). Use this to discover which pairs
        exist and how each one trades.
      operationId: __api_binance_symbols_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BinanceSymbolsSearchPayload'
      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:
    BinanceSymbolsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        count:
          type: integer
          minimum: 1
          description: Number of trading pairs to return
        base_asset:
          anyOf:
            - type: string
            - type: 'null'
          description: Filter by base asset, e.g. 'BTC', 'ETH'
          examples:
            - BTC
            - ETH
        quote_asset:
          anyOf:
            - type: string
            - type: 'null'
          description: Filter by quote asset, e.g. 'USDT', 'BTC'
          examples:
            - USDT
            - BTC
        status:
          anyOf:
            - $ref: '#/components/schemas/BinanceSymbolStatus'
            - type: 'null'
          description: Filter by trading status
        permission:
          anyOf:
            - type: string
            - type: 'null'
          description: Filter by a supported permission, e.g. 'SPOT', 'MARGIN', 'LEVERAGED'
          examples:
            - SPOT
            - MARGIN
      type: object
      required:
        - count
    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
    BinanceSymbolStatus:
      type: string
      enum:
        - PRE_TRADING
        - TRADING
        - POST_TRADING
        - END_OF_DAY
        - HALT
        - AUCTION_MATCH
        - BREAK
    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

````