Skip to main content
POST
/
api
/
v2
/
payouts
Create a payout
curl --request POST \
  --url https://api.pawpayments.com/api/v2/payouts \
  --header 'Content-Type: application/json' \
  --header 'X-Uniq-Id: <x-uniq-id>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "address": "<string>",
  "amount": 1,
  "fiat_currency": "<string>",
  "asset": "<string>",
  "ref": "<string>"
}
'
{
  "ok": true,
  "result": {
    "order_id": "65f1c3a4e8b1c2d3a4b5c6e0"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pawpayments.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Headers

X-Uniq-Id
string
required

UUIDv4 for idempotency.

Body

application/json
address
string
required
Minimum string length: 10
amount
required
Required range: x > 0
fiat_currency
string
required
asset
string
required
ref
string | null

Response

Created

ok
boolean
required
result
PayoutCreated · object
required
Example:
{ "order_id": "65f1c3a4e8b1c2d3a4b5c6e0" }