Aller au contenu
Chargement des API keys…
Authorization<token>

Use a public key (pk./pk_test.) for payment initialization. Use a secret key (sk./sk_test.) for sensitive operations (transfers, refunds, balance), or a restricted key (rk./rk_test.) scoped to specific permissions. The _test. variant of any key selects the sandbox environment, there is no separate sandbox URL. Never expose your secret key in client-side code.

In: header

Request Body

application/json

per_pageinteger | null

Must be at least 1. Must not be greater than 100.

cursorstring | null
searchstring | null

Must not be greater than 255 characters.

status"pending" | "processing" | "succeeded" | "expired" | "partial" | "failed" | "cancelled" | "refunded" | "partially_refunded"
"pending""processing""succeeded""expired""partial""failed""cancelled""refunded""partially_refunded"
date_fromstring | null

Must be a valid date.

date_tostring | null

Must be a valid date. Must be a date after or equal to <code>date_from</code>.

amount_minnumber | null

Must be at least 0.

amount_maxnumber | null

Must be at least 0.

Response Body

application/json

application/json

application/json

curl -X GET "https://api.wajub.com/payments" \  -H "Content-Type: application/json" \  -d '{}'
GET
/payments
{  "code": 200,  "status": "OK",  "message": "Payments retrieved",  "items": [    {      "id": "trx_01JXXXXXXXXXXXXX",      "reference": "trx.PVrU8x2kQ1",      "amount": 25000,      "currency": "XAF",      "status": "succeeded",      "channel": "cm.mtn",      "description": "Order #4172",      "sandbox": false,      "created_at": "2026-01-15T10:30:00Z"    }  ],  "meta": {    "current_page": 1,    "last_page": 3,    "per_page": 25,    "total": 68  }}

Paginated list

Que pensez-vous de ce contenu ?