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

# Get trading pairs for a symbol

> [OpenAPI JSON Spec](/docs/output/v1_market_trading-pairs_get.json)
Returns all available trading pairs for a given symbol, grouped by instrument type



## OpenAPI

````yaml /api-reference/openapi.json get /v1/market/trading-pairs
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Welcome to Arrays!


    Arrays is a unified financial data layer for both financial institutions and
    retail users, delivering comprehensive market data across crypto and equity
    markets. Our datasets cover fundamentals, ETFs, options, crypto, and more.


    Visit [arrays.org](https://arrays.org) to request an API key and start your
    free trial. You can explore our full API offerings in the documentation
    below.


    For any questions regarding APIs or pricing, please contact
    support@arrays.org.
  title: Arrays API
  version: '1.0'
servers:
  - url: https://data-tools.prd.arrays.org/api
security: []
paths:
  /v1/market/trading-pairs:
    get:
      tags:
        - Market
      summary: Get trading pairs for a symbol
      description: >-
        [OpenAPI JSON Spec](/docs/output/v1_market_trading-pairs_get.json)

        Returns all available trading pairs for a given symbol, grouped by
        instrument type
      parameters:
        - description: Canonical symbol (e.g. BTC, NVDA, VOO)
          in: query
          name: symbol
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        items:
                          $ref: >-
                            #/components/schemas/model.SymbolTradingPairsResponse
                        type: array
                    type: object
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/model.APIResponse'
components:
  schemas:
    model.APIResponse:
      properties:
        data: {}
        error:
          $ref: '#/components/schemas/model.APIError'
        metadata: {}
        pagination: {}
        request_id:
          type: string
        success:
          type: boolean
      type: object
    model.SymbolTradingPairsResponse:
      properties:
        alias:
          items:
            type: string
          type: array
        symbol:
          type: string
        trading_pairs:
          items:
            $ref: '#/components/schemas/model.InstrumentGroup'
          type: array
      type: object
    model.APIError:
      properties:
        code:
          example: RESOURCE_NOT_FOUND
          type: string
        details:
          items:
            $ref: '#/components/schemas/model.APIErrorDetail'
          type: array
        docs_url:
          type: string
        examples:
          items:
            type: string
          type: array
        hint:
          type: string
        message:
          example: The requested resource was not found.
          type: string
        suggestions:
          items:
            type: string
          type: array
      type: object
    model.InstrumentGroup:
      properties:
        instrument_type:
          type: string
        pairs:
          items:
            $ref: '#/components/schemas/model.TradingPairDetail'
          type: array
      type: object
    model.APIErrorDetail:
      properties:
        field:
          type: string
        got:
          type: string
        reason:
          type: string
      type: object
    model.TradingPairDetail:
      properties:
        alias:
          items:
            type: string
          type: array
        contract_type:
          description: >-
            Option-specific fields (present only for instrument_type ==
            "option").
          type: string
        description:
          type: string
        exercise_style:
          type: string
        expiration_date:
          type: string
        fee_rate:
          type: number
        market:
          type: string
        quote:
          type: string
        shares_per_contract:
          type: integer
        strike_price:
          type: number
        symbol_icon_url:
          type: string
        trading_pair:
          type: string
        type:
          type: string
        underlying_type:
          type: string
      type: object

````