Transfers
Transfer Detail
Read one transfer visible to the authenticated user.
Modified at Apr 28, 2026, 05:38 AM UTC
GET/api/transfer/{id}transfer.read
Returns one transfer visible to the authenticated account, including status, counterparties, and linked transaction data.
Request
curl "https://cekceir.online/api/transfer/{id}" \
-H "Authorization: Bearer <api_key>" \Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
| Authorization | header string | Yes | Bearer token header in the format Bearer <api_key>. |
| id | path positive integer | Yes | Transfer ID. |
Success Response
{ "data": { "id": 501, "amount": 25000, "fee_amount": 0, "status": "succeeded", "description": "Transfer for partner settlement", "created_at": "2026-04-26T00:00:00.000Z", "completed_at": "2026-04-26T00:00:01.000Z", "cancelled_at": null, "role": "sender", "self": { "transaction_id": 9001, "email": "[email protected]", "username": "sender", "profile_picture_url": null }, "counterparty": { "email": "r**************m", "username": "r******r", "profile_picture_url": null } }}Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
| data.id | number | Yes | Transfer ID. |
| data.amount | number | Yes | Transfer amount. |
| data.fee_amount | number | Yes | Transfer fee amount. |
| data.status | string | Yes | Transfer status. |
| data.description | string or null | No | Transfer description when provided. |
| data.created_at | ISO datetime | Yes | Transfer creation time. |
| data.completed_at | ISO datetime or null | No | Time the transfer completed. |
| data.cancelled_at | ISO datetime or null | No | Time the transfer was cancelled. |
| data.role | string | Yes | Authenticated user's role in the transfer, such as sender or receiver. |
| data.self.transaction_id | number | Yes | Transaction ID for the authenticated user side. |
| data.self.email | string or null | No | Authenticated user email. |
| data.self.username | string or null | No | Authenticated username. |
| data.self.profile_picture_url | string or null | No | Authenticated user's profile picture URL. |
| data.counterparty.email | string or null | No | Masked counterparty email. |
| data.counterparty.username | string or null | No | Masked counterparty username. |
| data.counterparty.profile_picture_url | string or null | No | Counterparty profile picture URL when available. |