Skip to content
Invofyx
API · Studio plan

REST API.

Invofyx exposes a small, honest REST API for the Studio plan. Authenticate with a keyed token from Settings → API. All responses are JSON. All money is in minor units (cents).

Authentication

curl https://api.invofyx.com/v1/invoices \
  -H "Authorization: Bearer sk_live_••••••••••••••••" \
  -H "Accept: application/json"

Endpoints

MethodPathSummary
POST/v1/invoicesCreate an invoice
GET/v1/invoices/:idRetrieve an invoice
POST/v1/invoices/:id/sendSend via email
GET/v1/clientsList clients
POST/v1/clientsCreate a client
GET/v1/paymentsList payments
POST/v1/exportsTrigger a CSV export

Rate limits

100 requests per minute per API key. Burst of 500. Exceeding the limit returns 429 with a Retry-After header.