Skip to content

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.

Authentication

  • User endpoints: Require a JWT in the Authorization header (Bearer token).

Features

  • Form management and record submission
  • Project and sector data retrieval
  • Worker management and operations
  • Production session and record management

Note: API access is available for Corporate accounts. For access or support, contact support@hydrobit.ag.

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/

Forms

Endpoints for form management and record submission

Operations

Projects

Endpoints for project and sector data retrieval

Operations

Get projects with sectors

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
curl -i -X GET \
  https://docs.hydrobit.ag/_mock/spec/openapi/api/control/projects \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Projects retrieved successfully

Bodyapplication/json
statusstring
Example: "success"
dataArray of objects(ProjectWithSectors)
Response
application/json
{ "status": "success", "data": [ { … }, { … } ] }

Workers

Endpoints for worker management and operations

Operations

Production Sessions

Endpoints for managing production sessions (open, close, update)

Operations

Production Records

Endpoints for creating and managing production records

Operations

Phytosanitary

Endpoints for phytosanitary monitoring and analysis (pest/disease tracking)

Operations

Weather

Endpoints for weather and climate data retrieval

Operations

Plant

Endpoints for plant monitoring, growth, and health data

Operations

Irrigation

Endpoints for irrigation control, logs, and automation

Operations

IoT Endpoint

Endpoints for IoT devices, telemetry, and field data integration

Operations