Get Payout
Retrieves a single payout by ID with optional field selection.
Last updated: April 9, 2026
Get Payout
GET /siren/v1/payouts/{id}
Returns a single payout by ID.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
fields | string | core fields | Comma-separated list of fields to include |
include | string | — | Legacy: extended for all available fields |
Example
GET /siren/v1/payouts/20?fields=id,value,currency,status,collaboratorName,collaboratorEmail
{
"id": 20,
"value": 3000,
"currency": "USD",
"status": "unpaid",
"collaboratorName": "Jane Doe",
"collaboratorEmail": "jane@example.com"
}
Returns 404 if no record exists with that ID, or 500 on a database error.