cURL
curl --request GET \ --url https://routexapi.xoroai.cloud/api/v1/transactions/verify \ --header 'Authorization: Bearer <token>'
200
Example
{ "status": true, "message": "Verification successful", "data": { "reference": "TXN_123456", "status": "success", "domain": "TEST", "type": "PAYMENT", "amount": 5000, "fee": 50, "currency": "NGN", "created_at": "2025-09-17T12:00:00Z", "updated_at": "2025-09-17T12:05:00Z", "customer": { "email": "jsmith@example.com", "name": "<string>" }, "narration": "Payment for order 123", "metadata": { "order_id": "123" }, "selected_gateway": "fltw", "gateway_reference": "FLTW_PROC_001", "attempts": [ { "attempt_no": 123, "gateway": "<string>", "status": "<string>", "gateway_reference": "<string>", "latency_ms": 123 } ] } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Transaction reference
Successful Response
Indicates if verification was successful
true
Human-readable message
"Verification successful"
Details of the verified transaction
Show child attributes
Was this page helpful?