ClocknextHelp
DocumentationAPI ReferenceMCP Tools
Dashboard

Get started

OverviewQuickstart

Core concepts

The response envelopeErrorsPaginationAsync, flushing & reliability

API reference

Record Signals POSTRecord usage logs POST
List customers GETCreate a customer POSTGet a customer GETUpdate a customer PATCHDelete a customer DELETEGet a customer's balances GETGet a customer's current plan GETList a customer's wallet transactions GETAdd a wallet transaction POSTAdjust a customer's credit balance POSTAdjust a customer's outcome balance POSTAdjust a customer's unit balance POST
List a customer's members GETAdd a member POSTUpdate a member PATCHRemove a member DELETE
List purchases GETCreate a purchase POSTGet a purchase GETUpdate a purchase's auto-payment setting PATCHCancel a purchase POST
List invoices GETGet an invoice GETMint a hosted pay link GET
List payments GETGet a payment GET
Mint a customer-portal access token POST
Invoices

List invoices

GET
/invoices

Authorization

apiKey
AuthorizationBearer <token>

Per-organisation API key from Settings → API Keys, sent as Authorization: Bearer cnk_…. Missing, unknown or expired keys return 401.

In: header

Query Parameters

customerId?string

Restrict results to this customer.

status?string

Filter by invoice status (case-insensitive).

Value in

  • "OPEN"
  • "PAID"
  • "VOID"
limit?integer

Maximum rows to return. Must be a positive number; clamped to 1–200.

Range1 <= value <= 200
Default50

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/invoices?customerId=cus_abc123&status=OPEN&limit=25"
{  "statusCode": 200,  "statusDetail": {    "status": "SUCCESS",    "message": "OK"  },  "result": {    "invoices": [      {        "id": "inv_jkl012",        "invoiceNumber": "INV-2026-0042",        "purchaseNumber": "PUR-2026-0042",        "purchaseId": "pur_ghi789",        "customerId": "cus_abc123",        "customerName": "Acme Inc",        "planName": "Growth",        "billingCycle": "MONTHLY",        "cycleIndex": 0,        "amount": 499,        "currencyCode": "USD",        "status": "OPEN",        "issuedAt": "2026-07-01T09:45:05.000Z",        "paidAt": "2026-07-01T10:02:00.000Z"      }    ]  }}
{  "statusCode": 400,  "statusDetail": {    "status": "ERROR",    "message": "Request body must be valid JSON."  },  "result": {}}
{  "statusCode": 401,  "statusDetail": {    "status": "ERROR",    "message": "Invalid API key."  },  "result": {}}
{  "statusCode": 500,  "statusDetail": {    "status": "ERROR",    "message": "Could not complete the request."  },  "result": {}}

Cancel a purchase POST

Flips the purchase to CANCELLED and voids any OPEN invoice for it.

Get an invoice GET

Next Page