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

# Get /v2/fungible/venues

> Get supported swap venues.



## OpenAPI

````yaml swagger get /v2/fungible/venues
openapi: 3.0.0
info:
  title: Skip Go API
  description: >-
    Simple APIs to build seamless cross-chain products that do more with fewer
    transactions. For devs with all levels of cross-chain experience.
  version: 0.1.0
servers:
  - url: https://api.skip.build
    description: Production
  - url: https://api.dev.skip.build
    description: Development
  - url: http://localhost:8080
    description: Local
security: []
tags:
  - name: Info
    description: APIs that return general information useful for a variety of operations
  - name: Fungible
    description: >-
      APIs swaps, transfers, and contract calls within the IBC/Cosmos Ecosystem,
      EVM ecosystem, and between them, including automatic DEX aggregation,
      bridge routing, and denom recommendation. Typical usage is /route to
      generate routing info and quotes, followed by /msgs to generate msgs for
      signing
  - name: Transaction
    description: >-
      APIs for broadcasting transactions within the IBC/Cosmos ecosystem, EVM
      ecosystem, and between them, and tracking their status and any subsequent
      transfers if routing assets cross chain. Typical usage is /submit to
      broadcast a transaction, followed by /status to query its status
paths:
  /v2/fungible/venues:
    get:
      tags:
        - Fungible
      description: Get supported swap venues.
      operationId: venues
      parameters:
        - in: query
          name: only_testnets
          required: false
          schema:
            type: boolean
          description: Whether to display only venues from testnets in the response
          example: false
      responses:
        '200':
          description: A list of supported swap venues
          content:
            application/json:
              example:
                venues:
                  - name: neutron-astroport
                    chain_id: neutron-1
                    logo_uri: >-
                      https://raw.githubusercontent.com/skip-mev/skip-go-registry/main/swap-venues/neutron-astroport/logo.png
                  - name: osmosis-poolmanager
                    chain_id: osmosis-1
                    logo_uri: >-
                      https://raw.githubusercontent.com/skip-mev/skip-go-registry/main/swap-venues/osmosis/logo.png
              schema:
                type: object
                properties:
                  venues:
                    type: array
                    items:
                      $ref: '#/components/schemas/SwapVenue'
                    description: Array of supported swap venues
components:
  schemas:
    SwapVenue:
      description: A venue on which swaps can be exceuted
      properties:
        chain_id:
          description: Chain ID of the swap venue
          type: string
        name:
          description: Name of the swap venue
          type: string
        logo_uri:
          description: URI for the venue's logo
          type: string
          nullable: true
      type: object

````