Skip to main content
GET
/
vendor
/
payouts
/
{id}
curl 'http://localhost:9000/vendor/payouts/pout_01HXYZ' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "payout": {
    "id": "pout_01HXYZ",
    "display_id": 42,
    "amount": 1250,
    "currency_code": "usd",
    "status": "paid",
    "created_at": "2026-01-15T10:00:00.000Z"
  }
}
Returns a payout, verifying it belongs to the current seller.

Path parameters

id
string
required
The payout’s ID.

Query parameters

fields
string
Comma-separated fields to include in the response.

Response

payout
object
curl 'http://localhost:9000/vendor/payouts/pout_01HXYZ' \
  -H 'Authorization: Bearer <token>' \
  -H 'x-seller-id: <seller_id>'
{
  "payout": {
    "id": "pout_01HXYZ",
    "display_id": 42,
    "amount": 1250,
    "currency_code": "usd",
    "status": "paid",
    "created_at": "2026-01-15T10:00:00.000Z"
  }
}