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

FieldTypeRequiredDescription
Authorizationheader stringYesBearer token header in the format Bearer <api_key>.
idpath positive integerYesTransfer 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&#160;protected]",      "username": "sender",      "profile_picture_url": null    },    "counterparty": {      "email": "r**************m",      "username": "r******r",      "profile_picture_url": null    }  }}

Response Fields

FieldTypeRequiredDescription
data.idnumberYesTransfer ID.
data.amountnumberYesTransfer amount.
data.fee_amountnumberYesTransfer fee amount.
data.statusstringYesTransfer status.
data.descriptionstring or nullNoTransfer description when provided.
data.created_atISO datetimeYesTransfer creation time.
data.completed_atISO datetime or nullNoTime the transfer completed.
data.cancelled_atISO datetime or nullNoTime the transfer was cancelled.
data.rolestringYesAuthenticated user&#x27;s role in the transfer, such as sender or receiver.
data.self.transaction_idnumberYesTransaction ID for the authenticated user side.
data.self.emailstring or nullNoAuthenticated user email.
data.self.usernamestring or nullNoAuthenticated username.
data.self.profile_picture_urlstring or nullNoAuthenticated user&#x27;s profile picture URL.
data.counterparty.emailstring or nullNoMasked counterparty email.
data.counterparty.usernamestring or nullNoMasked counterparty username.
data.counterparty.profile_picture_urlstring or nullNoCounterparty profile picture URL when available.