---
title: "Retrieve quote"
method: GET
path: "/v1/quotes/{id}"
tags: ["Quotes"]
---

# Retrieve quote

`GET /v1/quotes/{id}`

Retrieves a persisted quote by ID.

## Path parameters

- `id` string, uuid, required

## Response `200`

The quote resource

- RetrieveQuoteResponseDto
  - `id` string, uuid, required — Unique identifier of the quote.
  - `type` 'quote', required — Resource type discriminator.
  - `status` 'pending' | 'quote_accepted' | 'order_pending' | 'order_failed' | 'order_completed' | 'withdrawal_pending' | 'withdrawal_failed' | 'withdrawal_completed' | 'completed' | 'failed', required — Current status of the quote.
  - `funding_status` 'pending' | 'sent' | 'completed' | 'failed' | 'on_hold', required — Current funding status of the quote.
  - `source_amount` string, required — Source amount as a string decimal.
  - `source_currency` 'EUR' | 'GBP' | 'USD' | 'USDC' | 'BTC' | 'ETH' | 'SOL' | 'POL', required — Source currency code.
  - `target_amount` string, required — Target amount as a string decimal.
  - `target_currency` 'EUR' | 'GBP' | 'USD' | 'USDC' | 'BTC' | 'ETH' | 'SOL' | 'POL', required — Target currency code.
  - `exchange_rate` string, required — Exchange rate applied.
  - `venue` string, required — Execution venue (e.g. "kraken").
  - `expires_at` string, date-time, required — ISO 8601 UTC timestamp when the quote expires.
  - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the quote was created.
  - `updated_at` string, date-time, required — ISO 8601 UTC timestamp when the quote was last updated.

## Changes

- **2026-07-13** `d92a4abea6c4` — 6 warning
  - added the new `ETH` enum value to the `source_currency` response property for the response status `200`
  - added the new `ETH` enum value to the `target_currency` response property for the response status `200`
  - added the new `POL` enum value to the `source_currency` response property for the response status `200`
  - added the new `POL` enum value to the `target_currency` response property for the response status `200`
  - …2 more
- **2026-06-17** `74deb4d45f9f` — 2 warning
  - added the new `BTC` enum value to the `source_currency` response property for the response status `200`
  - added the new `BTC` enum value to the `target_currency` response property for the response status `200`
- **2026-04-24** `75f9878ced37` — 8 warning
  - added the new `EUR` enum value to the `source_currency` response property for the response status `200`
  - added the new `EUR` enum value to the `target_currency` response property for the response status `200`
  - added the new `GBP` enum value to the `source_currency` response property for the response status `200`
  - added the new `GBP` enum value to the `target_currency` response property for the response status `200`
  - …4 more
- **2026-04-02** `a44080671085` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/augustus/apis/augustus-banking-api/changes/v1/quotes/:id/get.md)

---

[API](https://skmtc.dev/augustus/apis/augustus-banking-api.md) · [All operations](https://skmtc.dev/augustus/apis/augustus-banking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/augustus/augustus-banking-api/revisions/37109d1ed976/schema)
