Get payout
Retrieves a payout by ID. The response includes the trace ID and expected delivery date once the payout has been dispatched. Requires the PAYOUTS_READ scope.
GET
https://api.pandabase.io/v2/core/stores/{storeId}/payouts/{payoutId} Authentication
Requires a bearer token (sk_…) or an API key in the header Authorization.
Path parameters
storeId string required (length 12–48)
payoutId string required (length 12–48)
Header parameters
idempotency-key string (length 8–32)
Response 200
Default Response
ok enum required (one of true)
data object required No description.
Response 404
Default Response
ok enum required (one of false)
error string required No description.
Request
curl -X GET https://api.pandabase.io/v2/core/stores/:storeId/payouts/:payoutIdResponse
{ "ok": true, "data": { "id": "pto_n4tr3bcfp2v8q1mzj0kxw5h7", "amount": 500000, "fee": 250, "status": "PROCESSING", "referenceId": "obp_3OXxxxxx0123456789ABCD", "payoutMethod": { "id": "bnk_q1mzj0kxw5h7n4tr3bcfp2v8", "isPrimary": true, "status": "APPROVED" }, "createdAt": "2026-05-13T16:20:00.000Z", "updatedAt": "2026-05-13T16:21:08.000Z" }}