Access jobs, customers, services, inventory, quotes, invoices and the calendar through one consistent REST API. Everything you need to embed Servicebay into your own products and workflows.
Seven core resources, one consistent envelope. Predictable URLs, JSON in and out, and pagination on every list endpoint.
/customers/lookup endpoint runs an exact-match query server-side. Wire it into a customer-facing intake form to find an existing record before booking a job.Our API follows REST conventions with predictable URLs, standard HTTP methods, and JSON responses. Get started in minutes with any programming language.
# 1. Look up the customer by phone
curl 'https://developer.servicebay.io/api/v1/organisations/{orgId}/customers/lookup?phone=%2B1234567890' \
-H 'X-API-Key: sk_live_your_api_key'
# 2. Book a job for them
curl -X POST 'https://developer.servicebay.io/api/v1/organisations/{orgId}/tickets' \
-H 'X-API-Key: sk_live_your_api_key' \
-H 'Content-Type: application/json' \
-d '{
"customerId": "abc123",
"customerName": "Jane Doe",
"serviceTime": "2025-05-10T14:00:00Z",
"endTime": "2025-05-10T15:00:00Z",
"serviceLocation": "instore"
}'Sign in with your Servicebay account to generate API keys and start building.
Sign In to Get Started