---
title: "Retrieve conversion"
method: GET
path: "/v1/conversions/{id}"
tags: ["Conversions"]
---

# Retrieve conversion

`GET /v1/conversions/{id}`

Retrieves a conversion by ID.

## Path parameters

- `id` string, uuid, required

## Response `200`

The conversion resource

- ConversionResourceDto
  - `id` string, uuid, required — Unique identifier of the conversion.
  - `quote_id` string, uuid, nullable, required — ID of the associated quote, or null.
  - `type` 'conversion', required — Resource type discriminator.
  - `status` 'pending' | 'completed' | 'failed', required — Current status of the conversion.
  - `source_amount` string, required — Source amount as a string decimal.
  - `source_currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — Source currency code.
  - `target_currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — Target currency code.
  - `source_account_id` string, nullable, required — ID of the source account, or null.
  - `target_account_id` string, nullable, required — ID of the target account, or null.
  - `failure` object, nullable, required — Failure details when status is failed, otherwise null.
    - `message` string, required — Human-readable description of the failure.
  - `metadata` object, required — Key-value pairs stored with the conversion.
  - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the conversion was created.
  - `updated_at` string, date-time, required — ISO 8601 UTC timestamp when the conversion was last updated.
  - `completed_at` string, date-time, nullable, required — ISO 8601 UTC timestamp when the conversion completed, or null.

## Changes

- **2026-08-17** `3ed0a0aba68b` — 8 info
  - removed the `BTC` enum value from the `source_currency` response property for the response status `200`
  - removed the `BTC` enum value from the `target_currency` response property for the response status `200`
  - removed the `ETH` enum value from the `source_currency` response property for the response status `200`
  - removed the `ETH` enum value from the `target_currency` response property for the response status `200`
  - …4 more
- **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`
- …earlier changes not shown

[Full history](https://skmtc.dev/augustus/apis/augustus-banking-api/changes/v1/conversions/: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)
