> ## 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 exchange rates

> Returns live indicative quotes for Solana EURC↔USDC. Requires `api:read` scope. Always re-quote on `POST /swaps`.




## OpenAPI

````yaml /openapi.yaml get /rates
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:
  /rates:
    get:
      tags:
        - Rates
      summary: List exchange rates
      description: >
        Returns live indicative quotes for Solana EURC↔USDC. Requires `api:read`
        scope. Always re-quote on `POST /swaps`.
      operationId: listRates
      responses:
        '200':
          description: Rates fetched
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/SuccessEnvelope'
                  - type: object
                    properties:
                      data:
                        type: object
                        properties:
                          chain:
                            type: string
                            example: solana
                          provider:
                            type: string
                            example: relay
                          updatedAt:
                            type: string
                            nullable: true
                          rates:
                            type: array
                            items:
                              type: object
              examples:
                success:
                  $ref: 6bfb9f24-8c57-468f-81a8-76894552dd85
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              examples:
                error:
                  $ref: '#/components/examples/ErrorResponse'
        '403':
          description: Missing required scope
      security:
        - ApiKeyAuth: []
components:
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        status:
          type: string
          example: success
        message:
          type: string
        data:
          nullable: true
  examples:
    ErrorResponse:
      value:
        status: error
        message: Invalid API key
  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.

````