> ## 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/info/bridges

> Get all supported bridges



## OpenAPI

````yaml swagger get /v2/info/bridges
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/info/bridges:
    get:
      tags:
        - Info
      description: Get all supported bridges
      operationId: bridges
      responses:
        '200':
          description: A list of supported bridges
          content:
            application/json:
              example:
                bridges:
                  - id: IBC
                    name: IBC
                    logo_uri: >-
                      https://raw.githubusercontent.com/skip-mev/skip-go-registry/main/bridges/ibc/logo.svg
                  - id: AXELAR
                    name: Axelar
                    logo_uri: >-
                      https://raw.githubusercontent.com/skip-mev/skip-go-registry/main/bridges/axelar/logo.svg
                  - id: CCTP
                    name: CCTP
                    logo_uri: >-
                      https://raw.githubusercontent.com/skip-mev/skip-go-registry/main/bridges/cctp/logo.svg
              schema:
                type: object
                properties:
                  bridges:
                    type: array
                    items:
                      $ref: '#/components/schemas/Bridge'
                    description: Array of supported bridges
components:
  schemas:
    Bridge:
      properties:
        id:
          $ref: '#/components/schemas/BridgeType'
        name:
          description: Name of the bridge
          type: string
        logo_uri:
          description: URI pointing to an image of the logo of the bridge
          type: string
      type: object
    BridgeType:
      description: |
        Bridge Type:
        * `IBC` - IBC Bridge
        * `AXELAR` - Axelar Bridge
        * `CCTP` - CCTP Bridge
        * `HYPERLANE` - Hyperlane Bridge
        * `OPINIT` - Opinit Bridge
        * `GO_FAST` - Go Fast Bridge
        * `STARGATE` - Stargate Bridge
        * `LAYER_ZERO` - Layerzero Bridge
        * `EUREKA` - IBC Eureka Bridge
      enum:
        - IBC
        - AXELAR
        - CCTP
        - HYPERLANE
        - OPINIT
        - GO_FAST
        - STARGATE
        - LAYER_ZERO
        - EUREKA

````