Get Payout
Retrieve payout information by ID.
By Payout ID
GET /v1/payouts/{id}
Request Example
curl -X GET https://api.bopay.io/v1/payouts/550e8400-e29b-41d4-a716-446655440000 \
-H "X-Identity: your-api-key" \
-H "X-Signature: your-signature"
Response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"ext_id": "payout_001",
"amount": 5000,
"currency": "RUB",
"method": "card",
"requisites": "4276123456781234",
"holder_name": "Ivan Ivanov",
"bank": "",
"status": "completed",
"created_at": "2026-01-30T12:45:00Z",
"completed_at": "2026-01-30T12:47:00Z"
}
By External ID
GET /v1/payouts/by-ext-id/{extId}
Request Example
curl -X GET https://api.bopay.io/v1/payouts/by-ext-id/payout_001 \
-H "X-Identity: your-api-key" \
-H "X-Signature: your-signature"
Errors
| Code | HTTP | Description |
|---|---|---|
PAY_001 | 404 | Payout not found |