StreakFree
StreakFree API
← streakfree.app
v1 · REST + MCP

Your round. Your data. Your API.

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.

Base URL

https://app.streakfree.app/api/v1

Authentication

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.

Endpoints

MethodPathDescription
GET/meYour account & key scopes
GET/customersList customers (search, pagination)
GET/customers/{id}One customer with full detail
POST/customersCreate a customer
PUT/customers/{id}Update a customer
DELETE/customers/{id}Delete a customer
GET/jobsList jobs (filter by date, status, customer)
POST/jobsBook a job / appointment
GET/invoicesList invoices (filter by status)
GET/invoices/{id}One invoice with line items
POST/customers/bulk-importBulk import customers
GET/docsMachine-readable API reference (JSON)

Quick start

# 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}'

Claude AI connector (MCP)

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/

Read tools

search_customers · customer_next_visit · jobs_on_date · who_owes_me · business_summary

Write tools (confirm-first)

add_customer · book_job — Claude previews the change and only acts after you say yes.

Webhooks & more

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.