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

# Get Venue List

> API reference for GET /venues



## OpenAPI

````yaml GET /venues
openapi: 3.1.0
info:
  title: DFlow Aggregator
  description: DFlow Aggregator API
  license:
    name: BUSL-1.1
  version: 0.1.0
servers:
  - url: https://quote-api.dflow.net
security:
  - api_key: []
tags:
  - name: order
    description: Order API endpoints
  - name: swap
    description: Swap API endpoints
  - name: intent
    description: Intent trading endpoints
  - name: prediction_market
    description: Prediction market endpoints
  - name: venues
    description: Venue endpoints
  - name: tokens
    description: Token endpoints
paths:
  /venues:
    get:
      tags:
        - venues
      summary: Returns a list of venues supported for swapping.
      operationId: venues_handler
      responses:
        '200':
          description: List of supported venues
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Vec'
components:
  schemas:
    Vec:
      type: array
      items:
        type: string
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Contact hello@dflow.net to obtain an API
        key.

````