Transactions

Check Transaction Status

Endpoint: GET /status?reference={reference}

ParameterRequiredDescription
referenceYesThe reference returned from the purchase response.

Example cURL

curl -X GET "https://app.wisesub.com.ng/api/partner/v1/status?reference=WS_ABC123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "X-API-Secret: YOUR_API_SECRET" \
  -H "X-Environment: live" \
  -H "Accept: application/json"

Response

{
  "success": true,
  "message": "Transaction status retrieved",
  "data": {
    "reference": "WS_ABC123",
    "amount": 995.00,
    "status": "successful",
    "recipient": "1111111111111",
    "service": "electricity",
    "provider": "Ikeja Electric (IKEDC)",
    "date": "2025-06-01 10:38:46"
  }
}