---
title: "Fetch Transaction Details V1"
method: GET
path: "/v1/transactions/{transaction_id}"
tags: ["Transactions"]
---

# Fetch Transaction Details V1

`GET /v1/transactions/{transaction_id}`

Returns full details for a transaction by ID, including status, amounts, fees, and settlement data. The populated fields vary based on the transaction type.

## Path parameters

- `transaction_id` string, uuid, required

## Response `200`

Transaction details retrieved successfully

- object
  - `data` object, required
    - `id` string, uuid
    - `transaction_type` 'ONRAMP' | 'OFFRAMP' | 'CRYPTO_WITHDRAWAL' | 'CRYPTO_DEPOSIT'
    - `customer_id` string, uuid, nullable
    - `beneficiary_id` string, uuid
    - `hash` string
    - `transaction_ref_id` string, nullable
    - `status` 'PENDING' | 'PROCESSING' | 'COMPLETED' | 'FAILED' | 'REFUNDED'
    - `batch_info` object, nullable
    - `from_amount` number
    - `payout_amount` number
    - `processing_amount` number
    - `from_currency` string
    - `payout_currency` string
    - `fx_rate` number
    - `developer_fee` number
    - `developer_fee_percentage` number
    - `developer_fee_fixed` number
    - `virtual_account_id` string, nullable
    - `fiat_details` object, nullable
    - `crypto_details` object, nullable
    - `fees` object, nullable
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `401` — Authentication failed due to invalid credentials
- `404` — Transaction not found
- `500` — Internal server error

---

[API](https://skmtc.net/fin/apis/fin-com-api.md) · [All operations](https://skmtc.net/fin/apis/fin-com-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fin/fin-com-api/revisions/6e69503ee7b8/schema)
