// for developers

The same API that runs the product. Documented.

REST, JSON, Bearer tokens — no surprises. Every endpoint below powers the tersOS apps themselves; the docs regenerate from the live spec on every deploy.

// quick start

Up and running in minutes

01Get your API keyCreate an API token from your tersOS admin dashboard. Scoped permissions keep your integration secure.
02Make your first requestHit the API with a simple GET request. Bearer token auth, JSON responses, standard HTTP methods.
03Start buildingIntegrate bookings, members, invoices, and more into your own tools and workflows.
// developer experience

Simple, powerful, RESTful.

Clean JSON responses, bearer token auth, standard HTTP methods.

RequestGET /api/bookings
curl -X GET https://app.tersos.io/api/bookings \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json"
Response200 OK
{
"success": true,
"data": [
{
"id": 1,
"room": "Meeting Room A",
"date": "2026-03-15",
"start_time": "10:00",
"end_time": "11:00",
"status": "confirmed"
}
]
}

Build on the system that runs the space.