Developer Platform
Build on tersOS
Integrate your tools with the tersOS API. Manage spaces, bookings, members, and more — programmatically.
Quick Start
Up and running in minutes
Three steps to your first API call.
01
Get your API key
Create an API token from your tersOS admin dashboard. Scoped permissions keep your integration secure.
02
Make your first request
Hit the API with a simple GET request. Bearer token auth, JSON responses, standard HTTP methods.
03
Start building
Integrate bookings, members, invoices, and more into your own tools and workflows.
API Modules
One platform, 6 modules
Every part of tersOS is accessible through a clean, consistent API.
Developer Experience
Simple, powerful, RESTful
Clean JSON responses, bearer token auth, standard HTTP methods.
GET/api/bookings
curl -X GET https://app.tersos.io/api/bookings \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Accept: application/json"200Response
{
"success": true,
"data": [
{
"id": 1,
"room": "Meeting Room A",
"date": "2026-03-15",
"start_time": "10:00",
"end_time": "11:00",
"status": "confirmed"
}
]
}Ready to integrate?
Read the docs, grab your API key, and start building on tersOS today.