Skip to main content
POST
/
api
/
apps
/
{app_id}
/
payout
/
trigger
Trigger a manual payout POST /api/apps/:app_id/payout/trigger
curl --request POST \
  --url https://api.example.com/api/apps/{app_id}/payout/trigger \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 1,
  "payout_address": "<string>"
}
'

Path Parameters

app_id
string
required

Application ID

Body

application/json

Request body for triggering a manual payout

amount
integer<int64> | null

Amount in USDC base units (omit to withdraw all available)

Required range: x >= 0
payout_address
string | null

Destination EVM address (0x...) for this payout. Overrides payout_config.payout_destination for this request only. Must be a valid 0x address (40 hex chars).

Response

Payout triggered successfully