Skip to main content
GET
/
api
/
v1
/
liquidity
/
management
/
withdrawals
/
{id}
Get Withdrawal
curl --request GET \
  --url https://api.mansafinance.co/api/v1/liquidity/management/withdrawals/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "amount": "<string>",
  "chain_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "wallet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "SUBMITTED",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Path Parameters

id
string<uuid>
required

Response

Withdrawal details

id
string<uuid>
amount
string
chain_id
string<uuid>
wallet_id
string<uuid>
status
enum<string>
Available options:
SUBMITTED,
PENDING_SCREENING,
PENDING_ENRICHMENT,
PENDING_AUTHORIZATION,
QUEUED,
PENDING_SIGNATURE,
PENDING_3RD_PARTY_MANUAL_APPROVAL,
PENDING_3RD_PARTY,
BROADCASTING,
CONFIRMING,
COMPLETED,
CANCELLING,
CANCELLED,
BLOCKED,
REJECTED,
FAILED
created_at
string<date-time>
updated_at
string<date-time>