Skip to main content
GET
/
accounts
/
{account_id}
/
withdrawals
/
{withdrawal_id}
Get withdrawal details
curl --request GET \
  --url https://service.bluumfinance.com/v1/accounts/{account_id}/withdrawals/{withdrawal_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "withdrawal_id": "wdr_a1b2c3d4e5f6g7h8",
  "account_id": "3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b",
  "wallet_id": "wal_x1y2z3a4b5c6d7e8",
  "method": "ach_plaid",
  "status": "completed",
  "amount": "500.00",
  "currency": "USD",
  "created_at": "2026-01-17T08:00:00.000Z"
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

account_id
string<uuid>
required
withdrawal_id
string
required

Response

Withdrawal details

withdrawal_id
string
Example:

"wdr_a1b2c3d4e5f6g7h8"

account_id
string<uuid>
Example:

"3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b"

wallet_id
string
Example:

"wal_x1y2z3a4b5c6d7e8"

method
enum<string>
Available options:
ach_plaid,
wire
Example:

"ach_plaid"

status
enum<string>
Available options:
pending,
processing,
submitted,
completed,
canceled,
failed
Example:

"processing"

amount
string
Example:

"500.00"

currency
string
Example:

"USD"

description
string | null
Example:

"Monthly payout"

method_details
object
destination_details
object
initiated_at
string<date-time> | null
submitted_at
string<date-time> | null
completed_at
string<date-time> | null
failure_reason
string | null
created_at
string<date-time>