Skip to main content

List Payouts

GET /v1/payouts?offset=0&limit=5

Overview

Retrieves a paginated list of payouts. This endpoint allows filtering by offset and limit to manage the number of results returned.

Authorization

  • Header: Authorization: Bearer sk_test_907...de66
Request Details

Request

curl "https://api-prod.paybytoken.io/v1/payouts?offset=0&limit=5" \
-X GET \
-H "Authorization: Bearer sk_test_907...de66"

Request Parameters

ParameterTypeDescription
offsetintegerThe number of items to skip before starting to collect the result set (e.g., 0).
limitintegerThe maximum number of items to return (e.g., 5).
Response Details

Response

The response returns a PayoutList object containing the total count and a list of payout details.

Attributes

AttributeTypeDescription
totalintegerTotal number of payouts available.
dataarray of objectsList of payout objects with their details.

Example Response

{
"total": 1,
"data": [
{
"id": "pout_t24cg6MLdv1PgUiO",
"account_id": "acct_1",
"chain": "base",
"amount": "5.0",
"currency": "USDC",
"destination_address": "0xB3906750209897ee480AcfA6cE64538ED0dB5A42",
"metadata": null,
"status": "succeeded",
"payout_type": "manual",
"requires_approval": 0,
"tx_hash": "0x26cd67e2959c40b4f7257a0c12d0a5c08151bef0f10e71bf8985d4fb23274d49",
"error_message": null,
"created_at": "2025-09-05T14:04:55.000Z",
"updated_at": "2025-09-05T14:05:10.000Z"
}
]
}