RevKeen Docs
Api reference

Get payments in a payout

Retrieve all payments that were included in a specific payout batch.


Related endpoints

  • GET /payouts — List payouts
  • GET /payouts/{id} — Get payout by ID

Common errors

  • 401 unauthenticated — missing, malformed, or revoked API key.
  • 404 resource_missing — the referenced resource does not exist or is not visible to your key.

Pagination

Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.

GET
/payouts/{id}/payments
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Path Parameters

id*string

Payout public ID (pyt_xxx) or UUID

Query Parameters

limit?number

Maximum number of results (1-100)

Default50
Range1 <= value <= 100
offset?|

Number of results to skip

Default0
Range0 <= value

Response Body

application/json

curl "https://api.revkeen.com/v2/payouts/string/payments" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "public_id": "string",
      "amount_minor": 0,
      "currency": "string",
      "status": "string",
      "kind": "string",
      "paid_at": "string",
      "created_at": "string"
    }
  ],
  "meta": {
    "payout_id": "string",
    "total": 0,
    "limit": 0,
    "offset": 0
  }
}
Empty
Empty
Empty