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

# Get quote detail by ID.

> Read the retained historical detail for a quote. This is the secondary historical-detail route; GET /quotes/{quoteId}/current remains the default live/current quote readback path.



## OpenAPI

````yaml /openapi/blips-public-reference.yaml get /quotes/{quoteId}
openapi: 3.1.0
info:
  title: BLIPS Public Reference API
  version: '2026-04-08'
  description: >-
    Public OpenAPI 3.1 subset for the first BLIPS Mintlify API Reference and
    Playground release. This document is bound to the confirmed Public Test
    Backend at https://public-test.blips.network, includes only the approved
    first-release public endpoints, uses only internal `$ref` values, and
    excludes callback-only webhook documentation and operator-only surfaces.
servers:
  - url: https://public-test.blips.network
    description: >-
      Confirmed Public Test Backend ingress target for public BLIPS API
      Reference, Playground, and internet-testable Try It flows.
security:
  - BasicAuth: []
tags:
  - name: Platform Setup
    description: >-
      Bootstrap and platform configuration surfaces for establishing the public
      BLIPS integration context.
  - name: Sandbox API
    description: >-
      Sandbox-only externally displayed helper surfaces. These routes either
      adjust quote inputs or create incoming-payment review cases, but they
      always feed the existing quote or transaction families and never become
      second outward API families.
  - name: Tokens
    description: >-
      Platform-scoped API credential create, list, detail, and revoke
      operations.
  - name: Customers
    description: >-
      Customer onboarding, profile lifecycle, and PPV payment-address issuance
      surfaces.
  - name: Accounts
    description: >-
      Customer-bound internal-account and external-account surfaces kept in the
      first-layer public contract.
  - name: Same-Currency Transfers
    description: >-
      Same-currency receiver lookup plus incoming and outgoing transfer
      primitives.
  - name: Cross-Currency Transfers
    description: >-
      PPV-first receiver lookup, quote creation/readback, and quote execution
      for cross-currency flows.
  - name: Transactions
    description: Transaction readback plus bounded incoming-review decision operations.
  - name: Webhooks
    description: >-
      Webhook connectivity verification surface for the public BLIPS
      integration.
paths:
  /quotes/{quoteId}:
    get:
      tags:
        - Cross-Currency Transfers
      summary: Get quote detail by ID.
      description: >-
        Read the retained historical detail for a quote. This is the secondary
        historical-detail route; GET /quotes/{quoteId}/current remains the
        default live/current quote readback path.
      operationId: getQuoteDetail
      parameters:
        - name: quoteId
          in: path
          required: true
          description: Stable BLIPS quote identifier.
          schema:
            type: string
      responses:
        '200':
          description: Retained historical quote detail returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteDetailResponse'
              examples:
                detail:
                  value:
                    quoteId: Quote:019542f5-b3e7-1d02-0000-000000000006
                    transactionId: txn_quote_detail_001
                    createdAt: '2026-04-05T12:00:00Z'
                    expiresAt: '2026-04-05T12:05:00Z'
                    lockedCurrencySide: SENDING
                    lockedCurrencyAmount: '10000'
                    source:
                      accountId: a12dcbd6-dced-4ec4-b756-3c3a9ea3d123
                      currency: USD
                    destination:
                      ppvAddress: demo-customer@pay.example.blips
                      currency: PHP
                    sendingAmount:
                      currencyCode: USD
                      amountMinor: '10000'
                    receivingAmount:
                      currencyCode: PHP
                      amountMinor: '9200'
                    feesTotal:
                      currencyCode: USD
                      amountMinor: '10'
                    exchangeRate: 0.92
                    feesIncluded: true
                    status: QUOTE_READY
        '401':
          description: Invalid or missing API credentials.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteDetailMvpErrorResponse'
              examples:
                unauthorized:
                  value:
                    status: 401
                    code: UNAUTHORIZED
                    message: Invalid or missing API credentials
                    details: {}
        '404':
          description: Quote not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteDetailMvpErrorResponse'
              examples:
                quoteNotFound:
                  value:
                    status: 404
                    code: QUOTE_NOT_FOUND
                    message: Quote not found
                    details: {}
        '500':
          description: Internal service error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteDetailMvpErrorResponse'
              examples:
                internalError:
                  value:
                    status: 500
                    code: INTERNAL_ERROR
                    message: Internal service error
                    details: {}
      security:
        - BasicAuth: []
components:
  schemas:
    QuoteDetailResponse:
      type: object
      description: >-
        Retained historical quote detail for the public lookup-backed PPV quote
        flow. This route stays quote-detail focused and does not replace GET
        /quotes/{quoteId}/current.
      properties:
        quoteId:
          type: string
          description: Stable BLIPS quote identifier.
        transactionId:
          type: string
          description: Public transaction identifier linked to this retained quote detail.
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp for this quote detail.
        expiresAt:
          type: string
          format: date-time
          description: Quote expiry timestamp.
        lockedCurrencySide:
          type: string
          enum:
            - SENDING
            - RECEIVING
          description: Currency side locked when this quote was created.
        lockedCurrencyAmount:
          type: string
          pattern: ^[0-9]+$
          description: Minor-unit amount locked on the selected currency side.
        source:
          type: object
          description: Stored source account snapshot for this quote detail.
          properties:
            accountId:
              type: string
              description: >-
                Internal source account identifier used when the quote was
                created.
            currency:
              type: string
              description: Source account currency captured on this quote detail.
          required:
            - accountId
            - currency
          additionalProperties: false
        destination:
          type: object
          description: Stored receiver PPV destination snapshot for this quote detail.
          properties:
            ppvAddress:
              type: string
              description: Public PPV address in plain `localPart@ppvDomain` format.
            currency:
              type: string
              description: Destination currency captured on this quote detail.
          required:
            - ppvAddress
            - currency
          additionalProperties: false
        sendingAmount:
          $ref: '#/components/schemas/MoneyAmount'
          description: Stored sending amount for this quote detail.
        receivingAmount:
          $ref: '#/components/schemas/MoneyAmount'
          description: Stored receiving amount for this quote detail.
        feesTotal:
          $ref: '#/components/schemas/MoneyAmount'
          description: Stored total fee amount for this quote detail.
        exchangeRate:
          type:
            - number
            - integer
          description: Stored exchange rate for this quote detail.
        feesIncluded:
          type: boolean
          description: Whether the returned quote amounts already include fees.
        status:
          type: string
          enum:
            - QUOTE_READY
            - BLOCKED
            - EXPIRED
          description: Status of this quote.
      required:
        - quoteId
        - transactionId
        - createdAt
        - expiresAt
        - lockedCurrencySide
        - lockedCurrencyAmount
        - source
        - destination
        - sendingAmount
        - receivingAmount
        - feesTotal
        - exchangeRate
        - feesIncluded
        - status
      additionalProperties: false
    QuoteDetailMvpErrorResponse:
      type: object
      description: Standard public error envelope for retained quote-detail failures.
      additionalProperties: false
      required:
        - status
        - code
        - message
        - details
      properties:
        status:
          type: integer
          description: HTTP status code returned for the failed quote-detail request.
        code:
          type: string
          description: Stable public error code for the failed quote-detail request.
        message:
          type: string
          description: Human-readable summary of the quote-detail failure.
        details:
          type: object
          nullable: true
          additionalProperties: true
          description: Additional structured error context when present.
    MoneyAmount:
      type: object
      properties:
        currencyCode:
          type: string
          description: ISO 4217 currency code.
        amountMinor:
          type: string
          description: Amount in minor units for that currency.
      required:
        - currencyCode
        - amountMinor
      additionalProperties: false
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: >-
        Integration-key Basic Auth (`clientId:clientSecret`) as documented in
        docs/public/AUTHENTICATION.md.

````