Skip to main content

Recurring Invoices

Automatically generate and send invoices on a recurring schedule.

How It Works

Recurring invoices are powered by Subscriptions. When a subscription renews, Ikawaari automatically creates and sends an invoice.

Create a Recurring Invoice

  1. Create a Product with a recurring Price
  2. Create a Subscription for the customer
  3. Ikawaari generates invoices automatically at each billing cycle
curl -X POST https://api.ikawaari.com/v1/subscriptions \
-H "Authorization: Bearer ik_test_your_key" \
-H "Content-Type: application/json" \
-d '{
"customer": "cus_abc123",
"items": [
{ "price": "price_monthly_50000" }
]
}'

Each billing period, a new invoice is created, finalized, and sent to the customer automatically.