GET
Query Transfer
Check the real-time status of an interbank transfer.
GET/v2/transfers/interbank/{reference}/status
Because external transfers are asynchronous, use this endpoint to confirm if a transfer succeeded or failed.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | YES | Bearer token containing your secret API key. |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
reference | string | YES | The reference ID obtained when initiating the transfer. |
Example Request
cURL
curl -X GET "https://sandbox.hexcore.io/v2/transfers/interbank/trf_89sjd89sjd8/status" \-H "Authorization: Bearer sk_test_your_secret_key"Example Response
JSON (200 OK)
{"status": true,"message": "Transfer status retrieved","data": { "reference": "trf_89sjd89sjd8", "status": "SUCCESSFUL", "session_id": "099999260502123456789012345678"} }