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

# Get exchange rate



## OpenAPI

````yaml get /v1/currencies/rate
openapi: 3.0.0
info:
  title: Corebanq - Currencies API
  description: API endpoints for currency management and exchange rates
  version: 1.0.0
servers: []
security: []
paths:
  /v1/currencies/rate:
    get:
      summary: Get exchange rate
      parameters:
        - name: from
          in: query
          required: true
          schema:
            type: string
            minLength: 3
            maxLength: 3
        - name: to
          in: query
          required: true
          schema:
            type: string
            minLength: 3
            maxLength: 3
      responses:
        '200':
          description: Exchange rate details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeRateResponse'
components:
  schemas:
    ExchangeRateResponse:
      type: object
      properties:
        from:
          type: string
        to:
          type: string
        rate:
          type: number
        timestamp:
          type: string
          format: date-time

````