Withdrawal requests
Generated page, from the OpenAPI specification the gateway serves (
GET /v1/openapi.json). Do not edit it by hand: it is rewritten on every build.
| Method | Path | Description |
|---|---|---|
GET |
/v1/payout-requests |
List your withdrawal requests |
POST |
/v1/payout-requests |
Request a withdrawal |
GET |
/v1/payout-requests/{id} |
Retrieve a withdrawal request |
GET /v1/payout-requests
List your withdrawal requests
Your requests and their state, from requested through to the decision.
Parameters
| Name | In | Required | Description |
|---|---|---|---|
page |
query | no | |
per_page |
query | no |
Responses
200— OK401— API key missing or rejected403— The key does not carry the required scope, or the account is not active429— The key's request budget is exhausted (300/min) — honour Retry-After
POST /v1/payout-requests
Request a withdrawal
Requests a withdrawal of YOUR balance to your own account.
⚠️ THIS IS A REQUEST, NOT A PAYOUT. No money moves and nothing is reserved: the operation opens at status requested and a person decides it in the dashboard. That is the maker-checker separation, with the API key as the requester and an account owner as the decider. There is deliberately no cancellation — a pending request holds nothing, so it is rejected by the decider rather than withdrawn by the requester.
ⓘ The balance check made here is INDICATIVE. You see an aggregate balance; the funds live in pockets per (platform, country) and the decider chooses which to debit. The check that counts is the ledger's no-overdraft rule, at settlement time.
⚠️ Pricing is CLOSED BY DEFAULT: with no withdrawal fee schedule configured for that asset, the request is refused (409). A free withdrawal is a zero line entered on purpose, never an absence.
Parameters
| Name | In | Required | Description |
|---|---|---|---|
Idempotency-Key |
header | no | An idempotency key specific to THIS operation. |
Responses
200— Idempotent replay — the request already existed201— Request recorded401— API key missing or rejected403— The key does not carry the required scope, or the account is not active409— No withdrawal fee schedule configured for that asset422— Amount lower than the fee, or insufficient available balance429— The key's request budget is exhausted (300/min) — honour Retry-After
GET /v1/payout-requests/{id}
Retrieve a withdrawal request
ⓘ An operation that is not a withdrawal answers 404 on this path even if it belongs to you: without that check, a confused identifier would return a status belonging to another lifecycle.
Parameters
| Name | In | Required | Description |
|---|---|---|---|
id |
path | yes | The request's identifier or reference. |
Responses
200— OK401— API key missing or rejected403— The key does not carry the required scope, or the account is not active404— No withdrawal request with that identifier429— The key's request budget is exhausted (300/min) — honour Retry-After