---
title: "Get a single withdrawal by id"
method: GET
path: "/withdrawals/{id}"
tags: ["Withdrawals"]
---

# Get a single withdrawal by id

`GET /withdrawals/{id}`

## Path parameters

- `id` string, required

## Response `200`

The withdrawal record.

- WithdrawalRecord — API projection of a withdrawal record.
  - `id` string, required
  - `userId` string, required
  - `toNetwork` 'sepolia' | 'amoy' | 'besu', required — Target L1 network for the withdrawal.
  - `token` 'QNT' | 'uUSD' | 'uGBP' | 'uEUR' | 'uToken', required
  - `amount` string, required
  - `fromAddress` string, required
  - `toAddress` string, required
  - `isNativeToErc20` boolean, required
  - `l2TxHash` string
  - `l2BlockNumber` integer
  - `withdrawalHash` string
  - `withdrawalTx` object
  - `disputeGameIndex` integer
  - `outputRootProof` object
  - `withdrawalProof` string[]
  - `proveTxHash` string
  - `finalizeTxHash` string
  - `status` 'initiated' | 'l2_confirmed' | 'awaiting_dispute_game' | 'provable' | 'proven' | 'awaiting_finalization' | 'finalizable' | 'finalized' | 'proof_invalidated' | 'failed', required — Withdrawal lifecycle state (L2 rollup to L1).
  - `provableAt` string, date-time
  - `finalizableAt` string, date-time
  - `lastStatusCheckAt` string, date-time
  - `failureReason` string
  - `completedAt` string, date-time
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required

## Other responses

- `401` — Unauthorized — missing or invalid credentials
- `404` — Resource not found

---

[API](https://skmtc.net/overledger/apis/overledger-server.md) · [All operations](https://skmtc.net/overledger/apis/overledger-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/overledger/overledger-server/versions/dd31e0a52064/schema)
