> ## 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.

# List quote inventory/history summary rows

> Browse retained quote inventory/history summary rows. This operation is part of the current public API walkthrough.



## OpenAPI

````yaml /openapi/blips-public-reference.yaml get /quotes
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:
    get:
      tags:
        - Cross-Currency Transfers
      summary: List quote inventory/history summary rows
      description: >-
        Browse retained quote inventory/history summary rows. This operation is
        part of the current public API walkthrough.
      operationId: listQuotes
      parameters:
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - QUOTE_READY
              - BLOCKED
              - EXPIRED
              - PENDING
          description: >-
            Public summary status vocabulary. Legacy PENDING remains accepted as
            a filter alias for QUOTE_READY.
        - name: customerId
          in: query
          required: false
          schema:
            type: string
        - name: createdAfter
          in: query
          required: false
          schema:
            type: string
            format: date-time
        - name: createdBefore
          in: query
          required: false
          schema:
            type: string
            format: date-time
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
        - name: cursor
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Retained quote summary/history rows returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteSummaryListResponse'
              examples:
                default:
                  value:
                    data:
                      - quoteId: Quote:quote_summary_001
                        transactionId: txn_quote_summary_001
                        createdAt: '2026-04-05T12:00:00Z'
                        expiresAt: '2026-04-05T12:05:00Z'
                        lockedCurrencySide: SENDING
                        lockedCurrencyAmount: '100000'
                        sendingAmount:
                          currencyCode: SGD
                          amountMinor: '100000'
                        receivingAmount:
                          currencyCode: PHP
                          amountMinor: '4200000'
                        feesTotal:
                          currencyCode: SGD
                          amountMinor: '500'
                        status: QUOTE_READY
                    hasMore: false
                    nextCursor: null
                    totalCount: 1
        '400':
          description: Invalid quote-summary filter value.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteSummaryMvpErrorResponse'
              examples:
                invalidRequest:
                  value:
                    status: 400
                    code: INVALID_REQUEST
                    message: Invalid quote summary filter
                    details:
                      status: must be QUOTE_READY, BLOCKED, EXPIRED, or PENDING
        '401':
          description: Invalid or missing API credentials.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteSummaryMvpErrorResponse'
              examples:
                unauthorized:
                  value:
                    status: 401
                    code: UNAUTHORIZED
                    message: Invalid or missing API credentials
                    details: {}
        '500':
          description: Internal service error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuoteSummaryMvpErrorResponse'
              examples:
                internalError:
                  value:
                    status: 500
                    code: INTERNAL_ERROR
                    message: Internal service error
                    details: {}
      security:
        - BasicAuth: []
components:
  schemas:
    QuoteSummaryListResponse:
      type: object
      description: >-
        Retained public quote summary/history list response for the PPV-first
        quote family.
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/QuoteSummaryRow'
        hasMore:
          type: boolean
        nextCursor:
          type:
            - string
            - 'null'
        totalCount:
          type: integer
      required:
        - data
        - hasMore
        - nextCursor
        - totalCount
      additionalProperties: false
    QuoteSummaryMvpErrorResponse:
      type: object
      description: >-
        Standard public error envelope for retained quote summary/history
        failures.
      additionalProperties: false
      required:
        - status
        - code
        - message
        - details
      properties:
        status:
          type: integer
          description: HTTP status code returned for the failed request.
        code:
          type: string
          description: Stable public error code for the failed request.
        message:
          type: string
          description: Human-readable summary of the request failure.
        details:
          type: object
          nullable: true
          additionalProperties: true
          description: Additional structured error context when present.
    QuoteSummaryRow:
      type: object
      description: >-
        Retained public quote summary/history row in the PPV-first quote
        readback family.
      properties:
        quoteId:
          type: string
          description: Stable BLIPS quote identifier for this summary row.
        transactionId:
          type: string
          description: >-
            Public transaction identifier linked to this retained quote summary
            row.
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp for this quote summary row.
        expiresAt:
          type: string
          format: date-time
          description: Quote expiry timestamp for this summary row.
        lockedCurrencySide:
          type: string
          description: Which side of the quote amount is locked.
        lockedCurrencyAmount:
          oneOf:
            - type: integer
            - type: string
              pattern: ^[0-9]+$
          description: Locked amount in minor units on the selected currency side.
        sendingAmount:
          $ref: '#/components/schemas/MoneyAmount'
          description: Sender-side amount captured in this retained quote summary row.
        receivingAmount:
          $ref: '#/components/schemas/MoneyAmount'
          description: Receiver-side amount captured in this retained quote summary row.
        feesTotal:
          $ref: '#/components/schemas/MoneyAmount'
          description: Total fee amount captured in this retained quote summary row.
        status:
          type: string
          description: Retained quote status for this summary row.
      required:
        - quoteId
        - transactionId
        - createdAt
        - expiresAt
        - lockedCurrencySide
        - lockedCurrencyAmount
        - sendingAmount
        - receivingAmount
        - feesTotal
        - status
      additionalProperties: false
    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.

````