> ## 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 list of supported Cardano decentralized exchanges (DEXs) with metadata and trading information.

# DEXs



## OpenAPI

````yaml cardano/market-price-api/openapi.json get /dexs
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:
    get:
      tags:
        - DEX
      summary: DEXs
      description: Returns all available DEXs
      operationId: mkt-dexs
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  type: string
                type: array
          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.APIError:
      properties:
        error:
          description: Error returned from the API request
          example: Bad Request
          type: string
      type: object
  securitySchemes:
    api-key:
      description: Project API Key
      in: header
      name: api-key
      type: apiKey

````