Build powerful integrations with the Ommersa API. Access all platform features through our RESTful API.
Clean, intuitive REST API design with consistent patterns
Detailed documentation with examples and best practices
Official SDKs for Python, JavaScript, and more
All API requests must include your API key in the Authorization header:
You can generate API keys from your dashboard under Settings → API Keys.
/api/v1/users
Retrieve a list of all users
curl -X GET "https://api.businessos.com/api/v1/users" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
Create a new user
curl -X POST "https://api.businessos.com/api/v1/users" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "John Doe", "email": "john@example.com", "role": "user" }'
/api/v1/users/{id}
Update an existing user
curl -X PUT "https://api.businessos.com/api/v1/users/123" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Jane Doe", "email": "jane@example.com" }'
Get started quickly with our official SDKs for popular programming languages.