PaybytokenDocs
Payouts
API reference · Payouts

List Payouts

List and paginate payouts created by the authenticated account.

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

Overview

Retrieves newest-first payouts owned by the authenticated merchant, with optional chain and currency filters.

Authorization

  • Header: Authorization: Bearer $PAYBYTOKEN_SECRET_KEY
Request Details

Request

curl "https://api-prod.paybytoken.io/api/v1/payouts?chain=base&currency=USDC&offset=0&limit=5" \
  -X GET \
  -H "Authorization: Bearer $PAYBYTOKEN_SECRET_KEY"

Request Parameters

ParameterTypeDescription
chainstringExact chain filter.
currencystringExact asset filter.
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"
    }
  ]
}

On this page

API Workbench

Full Explorer

Open in new tab