Verify Transaction

The Verify Transaction API allows you confirm the status of a transaction.

Transaction Status


StatusDescription
PENDING
SUCCESS
FAILED
COLLECTED

You do this by making a GET request to the Verify Transaction endpoint from your server using your transaction reference.

-H "x-api-key: your_secret_key".
{{host}}/v1/transactions/verify/:reference

If the API call is successful, Kyshi returns the following response:

{
   "status": true,
   "code": 200,
   "message": "Success",
   "data": {
      "id": "",
      "status": "PENDING"
   }
}