GET/v1/payment-links

List payment links

Lists all payment links for your account.

Authentication

Secret Key — send Authorization: Bearer YOUR_KEY header.

Response fields

FieldTypeDescription
itemsarrayPayment link objects
next_cursorstring | nullPagination cursor

Code examples

bash
curl https://api.watenga.africa/v1/payment-links \
  -H "Authorization: Bearer sk_test_YOUR_KEY"

Response example

json
{ "success": true, "data": { "items": [], "next_cursor": null } }