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/
Bodyapplication/json
Optional alternative to query params (for complex queries)
Start datetime in local timezone (ISO 8601)
Example: "2025-10-01T00:00:00-06:00"
End datetime in local timezone (ISO 8601)
Example: "2025-10-09T23:59:59-06:00"
- Mock serverhttps://docs.hydrobit.ag/_mock/spec/openapi/api/iot/weather
- Production serverhttps://api.hydrobit.ag/api/iot/weather
- IoT serverhttps://iot.hydrobit.ag/api/iot/weather
- MQTT over WebSocket endpointwss://iot.hydrobit.ag/api/iot/weather
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.hydrobit.ag/_mock/spec/openapi/api/iot/weather?projectId=string&from=2019-08-24T14%3A15%3A22Z&to=2019-08-24T14%3A15%3A22Z&timezone=string' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"projectId": "proj_123",
"from": "2025-10-01T00:00:00-06:00",
"to": "2025-10-09T23:59:59-06:00",
"timezone": "America/Mexico_City"
}'Response
application/json
{ "status": "success", "data": [ { … } ] }