API Documentation

Integrate GarageSync with your existing tools and workflows

Coming Soon

The GarageSync REST API

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.

What the API Will Cover

Repairs

Create, read, update, and manage repair jobs. Track status changes, assign technicians, and retrieve repair history.

Customers

Manage your customer database. Create profiles, update contact details, and retrieve customer repair and order history.

Parts

Query your parts catalogue, check stock levels, update pricing, and manage supplier information programmatically.

Orders

Create and manage parts orders, track delivery status, and integrate with your existing procurement systems.

Vehicles

Access vehicle records, registration details, MOT history, and service logs for all vehicles in your system.

Invoices

Generate invoices, retrieve payment status, and integrate with your accounting software for seamless bookkeeping.

Authentication

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
  • API keys are generated per-tenant
  • Keys can be revoked at any time from your dashboard
  • All requests must be made over HTTPS

Rate Limits

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

Example Request

GET /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
  }
}

Interested in API Access?

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