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

> ## Agent Instructions
> Treat the published Augustus OpenAPI specification (https://app.stainless.com/api/spec/documented/augustus/openapi.documented.yml) and the current API-reference pages as the source of truth for endpoints, request/response schemas, enum values, webhook event names, and required headers.
> Prefer the 2026-05-01 Banking API and @augustusbank/typescript-sdk for all new integrations. The 2023-01-01 API is a separate, older surface covering two products — Open Banking (instant bank transfer) checkout and refunds, and Manual Bank Transfer (MBT); use it only when one of those products is specifically required.
> Cite or link the relevant docs.augustus.com page when answering integration questions.
> Do not infer support for currencies, networks, scopes, account types, or operations that are not present in the current documentation.
> Use the sandbox base URL (https://api.sandbox.augustus.com) and placeholder credentials in examples. Never include or request a real API key.
> The Augustus docs MCP server (https://docs.augustus.com/mcp) provides documentation search and retrieval only; it does not execute authenticated Augustus API actions.

# Retrieve quote

> Retrieves a persisted quote by ID.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/augustus/openapi.documented.yml get /v1/quotes/{id}
openapi: 3.1.0
info:
  title: Augustus Banking API
  description: Augustus Banking API
  version: 0.1.0
  contact:
    name: Augustus
    url: https://docs.augustus.com
    email: developer@augustus.com
servers:
  - url: https://api.augustus.com
    description: Production
  - url: https://api.sandbox.augustus.com
    description: Sandbox
security:
  - BearerAuth: []
tags: []
paths:
  /v1/quotes/{id}:
    get:
      tags:
        - Quotes
      summary: Retrieve quote
      description: Retrieves a persisted quote by ID.
      operationId: QuotesController_retrieve
      parameters:
        - name: id
          required: true
          in: path
          description: Unique identifier of the quote.
          schema:
            format: uuid
            type: string
      responses:
        '200':
          description: The quote resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetrieveQuoteResponseDto'
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Augustus from '@augustusbank/typescript-sdk';


            const client = new Augustus({
              apiKey: process.env['AUGUSTUS_API_KEY'], // This is the default and can be omitted
            });


            const quote = await
            client.quotes.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');


            console.log(quote.id);
components:
  schemas:
    RetrieveQuoteResponseDto:
      type: object
      properties:
        id:
          description: Unique identifier of the quote.
          type: string
          format: uuid
        type:
          description: Resource type discriminator.
          type: string
          enum:
            - quote
        status:
          description: Current status of the quote.
          type: string
          enum:
            - pending
            - quote_accepted
            - order_pending
            - order_failed
            - order_completed
            - withdrawal_pending
            - withdrawal_failed
            - withdrawal_completed
            - completed
            - failed
        funding_status:
          description: Current funding status of the quote.
          type: string
          enum:
            - pending
            - sent
            - completed
            - failed
            - on_hold
        source_amount:
          description: Source amount as a string decimal.
          type: string
        source_currency:
          description: Source currency code.
          type: string
          enum:
            - EUR
            - GBP
            - USD
            - USDC
            - BTC
            - ETH
            - SOL
            - POL
        target_amount:
          description: Target amount as a string decimal.
          type: string
        target_currency:
          description: Target currency code.
          type: string
          enum:
            - EUR
            - GBP
            - USD
            - USDC
            - BTC
            - ETH
            - SOL
            - POL
        exchange_rate:
          description: Exchange rate applied.
          type: string
        venue:
          description: Execution venue (e.g. "kraken").
          type: string
        expires_at:
          description: ISO 8601 UTC timestamp when the quote expires.
          type: string
          format: date-time
        created_at:
          description: ISO 8601 UTC timestamp when the quote was created.
          type: string
          format: date-time
        updated_at:
          description: ISO 8601 UTC timestamp when the quote was last updated.
          type: string
          format: date-time
      required:
        - id
        - type
        - status
        - funding_status
        - source_amount
        - source_currency
        - target_amount
        - target_currency
        - exchange_rate
        - venue
        - expires_at
        - created_at
        - updated_at
  securitySchemes:
    BearerAuth:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Bearer token for authentication with Augustus Banking API

````