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

# List supported payment paths

> Same payment paths as `/payment-routes/corridors`. Requires `collections:read` scope.



## OpenAPI

````yaml /openapi.yaml get /collections/corridors
openapi: 3.1.0
info:
  title: Remitflex API
  version: 1.0.0
  description: >
    Programmatic access to Remitflex payment routes, fiat rates, customers, and
    transactions.


    **Dashboard:** Create API keys at https://dashboard.remitflex.io


    **Authentication:** Send your API key as `Authorization: Bearer
    rmf_live_...` or `rmf_test_...`.


    **Idempotency:** Mutating requests (`POST`, `PUT`, `PATCH`, `DELETE`)
    require an `Idempotency-Key` header when authenticated with an API key.
servers:
  - url: http://localhost:4000/v1
    description: Local development
  - url: https://api.remitflex.io/v1
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /collections/corridors:
    get:
      tags:
        - Payment links
      summary: List supported payment paths
      description: >-
        Same payment paths as `/payment-routes/corridors`. Requires
        `collections:read` scope.
      operationId: listCollectionCorridors
      responses:
        '200':
          $ref: '#/components/responses/CorridorsDiscovery'
      security:
        - ApiKeyAuth: []
components:
  responses:
    CorridorsDiscovery:
      description: Grouped routing options (same `routing` array as `/chains`)
      content:
        application/json:
          schema:
            allOf:
              - $ref: '#/components/schemas/SuccessEnvelope'
              - type: object
                properties:
                  data:
                    $ref: '#/components/schemas/RoutingDiscovery'
          examples:
            success:
              $ref: '#/components/examples/ListCorridorsResponse'
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        status:
          type: string
          example: success
        message:
          type: string
        data:
          nullable: true
    RoutingDiscovery:
      type: object
      required:
        - routing
      properties:
        routing:
          type: array
          items:
            $ref: '#/components/schemas/OriginRouting'
    OriginRouting:
      type: object
      required:
        - key
        - network
        - token
        - settlements
      properties:
        key:
          type: string
          description: Origin network key for `originChainKey`.
        network:
          type: string
        token:
          type: string
        settlements:
          type: array
          items:
            $ref: '#/components/schemas/SettlementRoute'
    SettlementRoute:
      type: object
      required:
        - key
        - network
        - tokens
      properties:
        key:
          type: string
        network:
          type: string
        tokens:
          type: array
          items:
            type: string
  examples:
    ListCorridorsResponse:
      value:
        status: success
        message: Routing options fetched
        data:
          routing:
            - key: tron
              network: Tron
              token: USDT
              settlements:
                - key: base
                  network: Base
                  tokens:
                    - USDC
                    - USDT
                - key: solana
                  network: Solana
                  tokens:
                    - USDC
                    - USDT
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >
        API key created in the Remitflex Dashboard at dashboard.remitflex.io
        (`rmf_live_...` or `rmf_test_...`).

        Key management endpoints require a dashboard JWT and are not part of
        this reference.

````