Skip to content

Check Transaction

This endpoint is used to check the status and details of a previous transaction using its transaction ID. It is useful for verifying if a deposit or withdrawal was successful.


fetch('https://API-PLATFORM/check-transaction', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Api-Id': 'YOUR_SECRET_TOKEN',
'Api-Key': 'YOUR_SECRET_TOKEN'
},
body: JSON.stringify({
transaction_id: ''
})
})
{
"transaction_id": "sample_transaction_id"
}
{
"code": 0,
"data": {
"user_id": "4346",
"currency": "PHP",
"amount": 5,
"transaction_id": "sample_transaction_id",
"tr_type": "T",
"inout_type": "I",
"after_balance": 45,
"agent_id": "251113karltransfer01",
"crt_date": "2025-11-13 15:27:47"
}
}

📌
For a comprehensive guide on how this works, please refer to the Common and Transfer Introduction or Seamless Introduction sections within the Introduction page.