Endpoints for form management and record submission
Hydrobit API (2.0.0)
Comprehensive API documentation for the Hydrobit platform.
This API enables management of forms, records, workers, projects, and related data within Hydrobit.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs.hydrobit.ag/_mock/spec/openapi/
Production server
https://api.hydrobit.ag/
IoT server
https://iot.hydrobit.ag/
MQTT over WebSocket endpoint
wss://iot.hydrobit.ag/
Request
Retrieves all projects for the authenticated user's company with nested sector information.
Requires JWT token authentication in the Authorization header.
This endpoint:
- Automatically resolves the user's company context from their JWT token
- Returns all projects associated with the company
- For each project, includes nested sectors with only name and sectorId fields
- Only returns projectId and projectName for each project
Security
bearerAuth
- Mock serverhttps://docs.hydrobit.ag/_mock/spec/openapi/api/control/projects
- Production serverhttps://api.hydrobit.ag/api/control/projects
- IoT serverhttps://iot.hydrobit.ag/api/control/projects
- MQTT over WebSocket endpointwss://iot.hydrobit.ag/api/control/projects
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.hydrobit.ag/_mock/spec/openapi/api/control/projects \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "status": "success", "data": [ { … }, { … } ] }