Skip to main content
GET
/
v1
/
billing
/
invoices
List Invoices
curl --request GET \
  --url https://api.kiriku.app/v1/billing/invoices \
  --header 'Authorization: Bearer <token>'
[
  {
    "reference": "<string>",
    "amount": 123,
    "status": "pending",
    "paymentUrl": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of invoices

reference
string
amount
number
status
enum<string>
Available options:
pending,
paid,
cancelled
paymentUrl
string