GET
/
payments
/
v1
/
payments
/
verify
/
{reference}
curl --request GET \
  --url https://sandbox-api.payfonte.com/payments/v1/payments/verify/{reference} \
  --header 'client-id: <api-key>' \
  --header 'client-secret: <api-key>'
{
  "data": {
    "status": "success",
    "reference": "<string>",
    "externalReference": "<string>",
    "amount": 100000,
    "currency": "NGN",
    "user": {
      "name": "Example User",
      "email": "user@example.com",
      "phoneNumber": "2347012345678"
    },
    "paidAt": 1691265191
  }
}

Authorizations

client-id
string
header
required
client-secret
string
header
required

Path Parameters

reference
string
required

Reference of the transaction to verify

Response

200 - application/json
data
object