Siren

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

ParameterTypeDefaultDescription
fieldsstringcore fieldsComma-separated list of fields to include
includestringLegacy: 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.