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

# Get Exchanges

> Returns the list of supported exchanges



## OpenAPI

````yaml GET /exchanges
openapi: 3.1.0
info:
  title: Bestflow API
  description: >-
    Bestflow is a cryptocurrency exchange aggregator that provides cross-chain
    swap capabilities without any additional fees. It aggregates multiple
    exchanges to offer users the best rates and seamless cryptocurrency swaps
    across different networks.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.bestflow.xyz
security:
  - {}
  - bearerAuth: []
paths:
  /exchanges:
    get:
      description: Returns the list of supported exchanges
      responses:
        '200':
          description: List of supported exchanges
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Exchange'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '503':
          $ref: '#/components/responses/ServiceUnavailableError'
components:
  schemas:
    Exchange:
      type: object
      required:
        - id
        - name
        - description
        - icon
        - fullLogoLight
        - fullLogoDark
        - website
        - termsOfUse
        - kyc
      properties:
        id:
          type: string
          description: Exchange identifier
          example: swapter
          enum:
            - swapter
            - etzswap
            - pegasusswap
        name:
          type: string
          description: Display name of the exchange
          example: Swapter
        description:
          type: string
          description: Brief description of the exchange
          example: >-
            Swapter - service that focuses on the cryptocurrency industry and
            its development.
        icon:
          type: string
          description: URL to the exchange icon image
          example: >-
            https://cdn.jsdelivr.net/gh/bestflow-exchange/assets@main/exchanges/swapter.svg
        fullLogoLight:
          type: string
          description: URL to the full logo image for light theme
          example: >-
            https://cdn.jsdelivr.net/gh/bestflow-exchange/assets@main/exchanges/swapter-light.svg
        fullLogoDark:
          type: string
          description: URL to the full logo image for dark theme
          example: >-
            https://cdn.jsdelivr.net/gh/bestflow-exchange/assets@main/exchanges/swapter-dark.svg
        website:
          type: string
          description: Exchange website URL
          example: https://swapter.io
        termsOfUse:
          type: string
          description: Exchange terms of use URL. User must accept this before swapping.
          example: https://swapter.io/terms-of-use
        kyc:
          type: string
          enum:
            - none
            - low
            - medium
            - high
          description: Frequency of KYC requirements
          example: low
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
          description: Error code
          enum:
            - VALIDATION_ERROR
            - INVALID_FORMAT
            - UNKNOWN_EXCHANGE
            - SWAP_ERROR
            - SWAP_NOT_FOUND
            - UNAUTHORIZED
            - RATE_LIMITED
            - SERVICE_UNAVAILABLE
        message:
          type: string
          description: Human-readable error message
  responses:
    UnauthorizedError:
      description: Invalid or unknown API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: UNAUTHORIZED
            message: Invalid API key
    ServiceUnavailableError:
      description: Auth dependency unavailable
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: SERVICE_UNAVAILABLE
            message: Auth service unavailable
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Optional Bearer authentication using an API key provided as a Bearer
        token. Required for unlimited requests and revenue sharing.

````