Back to reference
GET/payouts/{payoutId}
Payouts

Get payout

Returns a payout and its attempts.

Access tierbusiness_financeRate limit60/minIdempotencynoneAuthenticationBearerAuth
SourceLuxApi/app/Http/Controllers/Api/PayoutApiController.php::showLuxPayProjects @ 146e98baa44e

Parameters

X-Request-IDheader
stringOptional

Client correlation identifier. LuxPay may generate one when omitted.

Example: req_01J...
payoutIdpath
integerRequired

Payout identifier.

Example: 8001

Code examples

The displayed sandbox host is a placeholder until an official host is provisioned. Never paste a production token into a public browser.
curl --request GET \
  --url 'https://sandbox-api.luxpay.example/v1/payouts/8001' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer <token>'

Responses

200Successful response.
status
boolean
Example: true
message
string | null
message_translated
string | null
data
Payout
{
  "status": true,
  "message": "string",
  "message_translated": "string",
  "data": {
    "id": 1,
    "uuid": "00000000-0000-4000-8000-000000000001",
    "wallet_id": 1,
    "amount": 1,
    "currency_code": "string",
    "status": "pending",
    "payout_method": "string",
    "payout_destination": {},
    "description": "string",
    "idempotency_key": "string",
    "attempts": [
      {}
    ],
    "created_at": "2026-07-16T12:00:00Z"
  }
}
400
401
403
404
409
422
429
500
OpenAPI JSONOpenAPI YAMLPostman collection