Integrate GarageSync with your existing tools and workflows
We are building a comprehensive RESTful API that will give you full programmatic access to your garage data. Available on the Business and Enterprise plans.
Create, read, update, and manage repair jobs. Track status changes, assign technicians, and retrieve repair history.
Manage your customer database. Create profiles, update contact details, and retrieve customer repair and order history.
Query your parts catalogue, check stock levels, update pricing, and manage supplier information programmatically.
Create and manage parts orders, track delivery status, and integrate with your existing procurement systems.
Access vehicle records, registration details, MOT history, and service logs for all vehicles in your system.
Generate invoices, retrieve payment status, and integrate with your accounting software for seamless bookkeeping.
All API requests are authenticated using API keys. Each key is scoped to your tenant and can be generated from your dashboard settings.
# Include your API key in the request header
Authorization: Bearer gs_live_xxxxxxxxxxxxxxxx
Rate limits are applied per API key to ensure fair usage and platform stability.
| Plan | Requests / Minute | Requests / Day |
|---|---|---|
| Business | 60 | 10,000 |
| Enterprise | 300 | 100,000 |
Rate limit headers are included in every response: X-RateLimit-Remaining, X-RateLimit-Reset
/api/v1/repairs
# Retrieve a list of repairs curl -X GET https://api.garagesync.co.uk/v1/repairs \ -H "Authorization: Bearer gs_live_xxxxxxxxxxxxxxxx" \ -H "Content-Type: application/json"
// Response (200 OK) { "data": [ { "id": 1042, "status": "in_progress", "vehicle": "2019 Ford Focus - AB12 CDE", "customer": "John Smith", "description": "Full service and MOT", "created_at": "2026-03-28T09:15:00Z" } ], "meta": { "total": 156, "page": 1, "per_page": 25 } }
The API is available on Business and Enterprise plans. Upgrade your plan or get in touch to learn more about integration possibilities.
View Plans Contact Us