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

# Get Transaction

> Get details of a unified transaction

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<ParamField path="transaction_id" type="string" required>
  The unified transaction ID.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET '/unified-transactions/utx_01abc123' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "transaction_id": "utx_01abc123",
      "type": "deposit",
      "status": "completed",
      "amount": "500.00",
      "asset": "USDC",
      "chain": "solana",
      "from_address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
      "to_address": "GY1EZGdpiJNyx2BSKq8rfTDRe5K8Bb6Cf2Bn1pdmE2o1",
      "tx_hash": "5xYz...",
      "block_number": 250000000,
      "confirmations": 32,
      "fee_amount": "0.00",
      "fee_asset": "USDC",
      "source_reference": {
        "type": "blockchain",
        "id": "5xYz..."
      },
      "created_at": "2026-03-26T10:00:00Z",
      "completed_at": "2026-03-26T10:00:30Z"
    }
  }
  ```
</ResponseExample>
