Purchases
Get a purchase
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
Path Parameters
id*string
Purchase id.
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/purchases/pur_ghi789"{ "statusCode": 200, "statusDetail": { "status": "SUCCESS", "message": "OK" }, "result": { "purchase": { "id": "pur_ghi789", "purchaseNumber": "PUR-2026-0042", "status": "SCHEDULED", "cost": 499, "billingCycle": "MONTHLY", "planName": "Growth", "billingDate": "2026-08-01T00:00:00.000Z", "nextBillingDate": "2026-09-01T00:00:00.000Z", "createdAt": "2026-07-01T09:45:00.000Z", "createdByName": "Priya N.", "customer": { "id": "cus_abc123", "name": "Acme Inc" }, "autoPayment": true, "autoPaymentPauseReason": "string", "autoPaymentPausedAt": "string", "plan": { "id": "plan_growth" }, "stats": { "invoiceCount": 3, "paidCount": 2 } } }}{ "statusCode": 401, "statusDetail": { "status": "ERROR", "message": "Invalid API key." }, "result": {}}{ "statusCode": 404, "statusDetail": { "status": "ERROR", "message": "No customer with id \"cus_abc123\"." }, "result": {}}{ "statusCode": 500, "statusDetail": { "status": "ERROR", "message": "Could not complete the request." }, "result": {}}