Skip to main content

Get Payout

GET /v1/payouts/:id

Overview

Retrieves the details of a specific payout using its unique identifier. This endpoint returns the current state of the payout.

Authorization

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

Request

curl https://api-prod.paybytoken.io/v1/payouts/pout_t24cg6MLdv1PgUiO \
-X GET \
-H "Authorization: Bearer sk_test_907...de66"

Request Parameters

ParameterTypeDescription
idstringUnique identifier of the payout (e.g., pout_t24cg6MLdv1PgUiO).
Response Details

Response

The response returns a Payout object containing details about the payout. See Payouts Overview for the full object definition.

Example Response

{
"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"
}