Skip to main content
GET
/
api
/
v0
/
withdrawals
/
{id}
Get a withdrawal by ID
curl --request GET \
  --url https://app.crown-brlv.com/api/v0/withdrawals/{id}
{
  "id": "660e8400-e29b-41d4-a716-446655440001",
  "asset": "fiat/brl",
  "amount": "100.50",
  "method": "pix",
  "state": "created",
  "created-at": "2025-03-06T10:30:00Z",
  "state-updated-at": "2025-03-06T10:30:00Z"
}

You’re viewing v0, which is deprecated. Endpoints may change or be removed.

Switch to v1 (Latest)

Path Parameters

id
string<uuid>
required

Response

Withdrawal retrieved successfully

BRL PIX withdrawal

id
string<uuid>
required
Example:

"660e8400-e29b-41d4-a716-446655440001"

asset
enum<string>
required
Available options:
fiat/brl
Example:

"fiat/brl"

amount
string<decimal>
required
Example:

"100.50"

method
enum<string>
required
Available options:
pix
Example:

"pix"

state
enum<string>
required
Available options:
created,
rolled-back,
completed,
processing
Example:

"created"

created-at
string<date-time>
required
Example:

"2025-03-06T10:30:00Z"

state-updated-at
string<date-time>
required
Example:

"2025-03-06T10:30:00Z"