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

# Get a quote by ID



## OpenAPI

````yaml /openapi.json get /v1/quotes/{id}
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Comprehensive payment platform API supporting fiat and crypto payments,
    currency conversion, and compliance management
  title: Zuba Payment Platform API
  version: '1.0'
servers: []
security: []
tags:
  - description: Manage M2M API keys and credentials
    name: API Keys
  - description: Internal ledger accounts and transactions
    name: Ledger
  - description: Handle incoming payments and deposits
    name: Pay-ins
  - description: Manage payouts, beneficiaries, and SEPA transfers
    name: Payouts
  - description: Manage outbound webhook endpoints and deliveries
    name: Webhooks
paths:
  /v1/quotes/{id}:
    get:
      tags:
        - Quotes
      summary: Get a quote by ID
      operationId: QuoteController_getQuote
      parameters:
        - description: Quote UUID
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteResponseDto'
          description: The quote. Both intents return the same shape.
        '400':
          description: Invalid quote id (must be a UUID)
        '404':
          description: Quote not found
      security:
        - bearer: []
components:
  schemas:
    QuoteResponseDto:
      properties:
        expiresAt:
          description: Quote expiry timestamp (ISO 8601)
          example: '2026-04-13T12:00:30Z'
          type: string
        fromCurrency:
          description: Source currency (debited from the caller)
          example: NGN
          type: string
        id:
          description: Quote identifier
          example: uuid-here
          type: string
        rate:
          description: >-
            All-in rate: fromCurrency per 1 toCurrency. Always present; a
            same-currency or stablecoin-par quote (no FX leg) reports
            "1.00000000".
          example: '2524.47560000'
          type: string
        status:
          description: Quote status (only included on GET)
          enum:
            - active
            - used
            - expired
          type: string
        targetAmount:
          description: Amount received in toCurrency
          example: '100'
          type: string
        toCurrency:
          description: >-
            Target currency (received by the beneficiary, or credited to the
            caller's own balance for a convert quote)
          example: GBP
          type: string
        totalDebitAmount:
          description: >-
            Total amount debited from the caller in fromCurrency. The quote
            prices FX + markup only, so this is the FX base; a payout's fixed
            fee is added at payout creation.
          example: '252447.5600'
          type: string
      required:
        - id
        - fromCurrency
        - toCurrency
        - targetAmount
        - totalDebitAmount
        - rate
        - expiresAt
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````