Full programmatic access to your customers, jobs and invoices. Connect Mailchimp, finance apps, spreadsheets, your website — or plug StreakFree straight into Claude AI. No lock-in, ever.
https://app.streakfree.app/api/v1
Create an API key inside StreakFree (Settings → API Keys), then send it with every request — either header works:
# Option 1 — Bearer token Authorization: Bearer pp_live_xxxxxxxxxxxx # Option 2 — X-API-Key header X-API-Key: pp_live_xxxxxxxxxxxx
Keys are scoped (read / write) and can be revoked at any time. Rate limits: 60 requests/minute, 10,000/day.
| Method | Path | Description |
|---|---|---|
| GET | /me | Your account & key scopes |
| GET | /customers | List customers (search, pagination) |
| GET | /customers/{id} | One customer with full detail |
| POST | /customers | Create a customer |
| PUT | /customers/{id} | Update a customer |
| DELETE | /customers/{id} | Delete a customer |
| GET | /jobs | List jobs (filter by date, status, customer) |
| POST | /jobs | Book a job / appointment |
| GET | /invoices | List invoices (filter by status) |
| GET | /invoices/{id} | One invoice with line items |
| POST | /customers/bulk-import | Bulk import customers |
| GET | /docs | Machine-readable API reference (JSON) |
# Who's on the round today? curl "https://app.streakfree.app/api/v1/jobs?date=2026-08-03" \ -H "X-API-Key: pp_live_xxxxxxxxxxxx" # Add a customer curl -X POST "https://app.streakfree.app/api/v1/customers" \ -H "X-API-Key: pp_live_xxxxxxxxxxxx" \ -H "Content-Type: application/json" \ -d '{"name":"Sarah Smith","address":"12 High Street, Brighton","frequency":"4 weeks","price":20}'
Plug your whole business into Claude — no code needed.
StreakFree ships a native Model Context Protocol server. Create a connector key in Settings → Claude Connector, add the URL below in Claude's Settings → Connectors, and ask things like "who owes me money?", "what's tomorrow looking like?" or "book Mrs Smith in for Thursday" (writes always ask you to confirm first).
https://app.streakfree.app/api/mcp/
search_customers · customer_next_visit · jobs_on_date · who_owes_me · business_summary
add_customer · book_job — Claude previews the change and only acts after you say yes.
Facebook lead capture, email-to-customer ingestion and payment webhooks are available today. Zapier and Mailchimp recipes are on the roadmap — the REST API above already works with any tool that speaks HTTP.