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

> Get trading pairs available on a specific Cardano DEX with liquidity and volume information.

# DEX pairs



## OpenAPI

````yaml cardano/market-price-api/openapi.json get /dexs/{dex}
openapi: 3.1.0
info:
  description: Market endpoints dedicated to Cardano DeFi protocols & Ingestor.
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.txt
  title: Cardano - Market Price API
  version: 0.1.0
servers:
  - description: Cardano Mainnet
    url: https://mainnet.gomaestro-api.org/v1/markets
  - description: Cardano Preprod
    url: https://preprod.gomaestro-api.org/v1/markets
  - description: Cardano Preview
    url: https://preview.gomaestro-api.org/v1/markets
security:
  - api-key: []
externalDocs:
  description: ''
  url: ''
paths:
  /dexs/{dex}:
    get:
      tags:
        - DEX
      summary: DEX pairs
      description: Returns available pairs for a given DEX
      operationId: mkt-dex
      parameters:
        - description: DEX name
          example: minswap
          in: path
          name: dex
          required: true
          schema:
            type: string
        - description: DEX pair
          example: ADA-GENS
          in: query
          name: pair
          schema:
            maxLength: 8
            type: string
        - description: Asset policy ID
          example: 5ac3d4bdca238105a040a565e5d7e734b7c9e1630aec7650e809e34a
          in: query
          name: policy
          schema:
            maxLength: 56
            type: string
        - description: Asset name
          example: 534e454b5f53554e4441455f4c51
          in: query
          name: asset_name
          schema:
            maxLength: 56
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.DexRespBody'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.APIError'
          description: Bad Request
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.APIError'
          description: Server Error
components:
  schemas:
    api.DexRespBody:
      properties:
        dex:
          type: string
        pairs:
          items:
            $ref: '#/components/schemas/api.Pair'
          type: array
          uniqueItems: false
      type: object
    api.APIError:
      properties:
        error:
          description: Error returned from the API request
          example: Bad Request
          type: string
      type: object
    api.Pair:
      properties:
        coin_a_asset_name:
          type: string
        coin_a_policy:
          type: string
        coin_b_asset_name:
          type: string
        coin_b_policy:
          type: string
        pair:
          type: string
      type: object
  securitySchemes:
    api-key:
      description: Project API Key
      in: header
      name: api-key
      type: apiKey

````