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

# List centralized exchanges for the Connect picker

> Returns the centralized exchanges offered by the Swapped Connect picker. Served from a maintained static list (Swapped exposes no enumeration API).



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /onramp/swapped/connect-exchanges
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /onramp/swapped/connect-exchanges:
    get:
      tags:
        - Onramp
      summary: List centralized exchanges for the Connect picker
      description: >-
        Returns the centralized exchanges offered by the Swapped Connect picker.
        Served from a maintained static list (Swapped exposes no enumeration
        API).
      parameters:
        - schema:
            type: string
            description: API key for authentication (omit when sending Authorization)
            example: your-api-key
          required: false
          description: API key for authentication (omit when sending Authorization)
          name: x-api-key
          in: header
        - schema:
            type: string
            description: >-
              Bearer platform token (e.g. forwarded by user-service). Takes
              precedence over `x-api-key` when both are present.
            example: Bearer eyJhbGciOi...
          required: false
          description: >-
            Bearer platform token (e.g. forwarded by user-service). Takes
            precedence over `x-api-key` when both are present.
          name: authorization
          in: header
      responses:
        '200':
          description: Supported exchanges
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SwappedConnectExchangesResponse'
        '401':
          description: Authentication required or invalid credential
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: API key lacks required deposits scope
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Swapped on-ramp is not configured
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SwappedConnectExchangesResponse:
      type: object
      properties:
        exchanges:
          type: array
          items:
            type: object
            properties:
              connection:
                type: string
              name:
                type: string
              logoUrl:
                type:
                  - string
                  - 'null'
            required:
              - connection
              - name
              - logoUrl
        fetchedAt:
          type: string
        expiresAt:
          type: string
        stale:
          type: boolean
      required:
        - exchanges
        - fetchedAt
        - expiresAt
        - stale
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
              path:
                type: array
                items:
                  anyOf:
                    - type: string
                    - type: number
              code:
                type: string
            required:
              - message
      required:
        - error

````