Verify Payment Link

Verify a payment link created through the external API. This endpoint is scoped to your business by API key.

-H "x-api-key: your_secret_key"
GET {{host}}/v1/pay/verify-api/{code}

Path Parameters

FieldData TypeRequiredDescription
codestringYesPayment link code returned when the link was created.
{
  "status": true,
  "message": "Success",
  "code": 200,
  "data": {
    "status": "PENDING",
    "reference": "KYSHI-1778623597453",
    "authorizationUrl": "https://checkout.example.com/pay/abc123",
    "paymentLink": {
      "expiresAt": "2026-06-01T23:59:59.000Z"
    },
    "amount": {
      "value": 155000,
      "currency": "NGN"
    }
  }
}