Chaching is a modern subscription-billing platform designed to simplify product management, customer lifecycle workflows, and recurring payments. It combines a clean dashboard for business users with a powerful API built for developers who need full automation and control.
Chaching API (1.0)
- Mock serverhttps://chaching.redocly.app/_mock/developer-guide/api/transactions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://chaching.redocly.app/_mock/developer-guide/api/transactions?page=1&take=10' \
-H 'cc-api-key: string'Response
application/json
{ "data": [ [] ], "meta": { "page": 0, "take": 0, "itemsTotal": 0, "pagesTotal": 0 } }
- Mock serverhttps://chaching.redocly.app/_mock/developer-guide/api/transactions/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://chaching.redocly.app/_mock/developer-guide/api/transactions/{id}' \
-H 'cc-api-key: string'Transaction details
ID of the payment method used in this transaction.
Example: "pm_1MiN3gLkdIwHu7ixxYzWqR2b"
The date that the transaction’s net funds become available in the Stripe balance.
Example: 1678043844
Detailed breakdown of fees (in cents) paid for this transaction.
Example: []
Response
application/json
{ "id": "txn_1MiN3gLkdIwHu7ixxapQrznl", "object": "balance_transaction", "amount": -400, "payment_method": "pm_1MiN3gLkdIwHu7ixxYzWqR2b", "balance_type": "default", "available_on": 1678043844, "created": 1678043844, "currency": "usd", "description": "Transfer to acct_1MiN3gLkdIwHu7ix", "exchange_rate": null, "fee": 0, "fee_details": [], "net": -400, "status": "available", "type": "transfer" }