REST API, webhooks, OAuth. Make your accounting + POS data work however you need.
REST + JSON. No SDK required, but we ship official ones for Node, Python, Ruby, PHP, Go.
Read full quickstartcurl https://tinsuite.com/api/v1/invoices \
-H "Authorization: Bearer $TINSUITE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"customerId": "cus_abc123",
"items": [{ "name": "Consulting", "qty": 8, "price": 250 }],
"send": true
}'
# Response
{ "id": "inv_xyz789",
"status": "sent",
"viewUrl": "https://tinsuite.com/i/abc..." }Six areas, 50+ guides, complete reference.
Type-safe clients with auto-retry and pagination helpers.
npm i @tinsuite/sdkpip install tinsuitegem install tinsuitecomposer require tinsuite/sdkgo get github.com/tinsuite/go-sdk