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

Endpoints for form management and record submission

Operations

Endpoints for mobile application (Expo) with custom domain authentication

Operations

Request

Retrieves all forms accessible to a mobile app user based on their company context.

Mobile Authentication: Uses custom domain authentication (auth.hydrobit.ag) for Expo mobile app.

Requires JWT token from mobile authentication in the Authorization header.

  • If subtype=tasks, returns all task forms for the user
  • Otherwise, returns monitoring forms based on user access permissions
Security
bearerAuth
Query
auth0Idstringrequired

User identifier

Example: auth0Id=user_123456789
companyIdstringrequired

Company identifier

Example: companyId=comp_12345
typestring

Form type filter

Example: type=inspection
subtypestring

Form subtype (e.g., 'tasks' for task forms)

Example: subtype=tasks
curl -i -X GET \
  'https://docs.hydrobit.ag/_mock/spec/openapi/api/control/mobile/forms/getForms?auth0Id=user_123456789&companyId=comp_12345&type=inspection&subtype=tasks' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Forms retrieved successfully

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

Endpoints for project and sector data retrieval

Operations

Endpoints for worker management and operations

Operations

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

Operations

Endpoints for creating and managing production records

Operations

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

Operations

Endpoints for weather and climate data retrieval

Operations

Endpoints for plant monitoring, growth, and health data

Operations

Endpoints for irrigation control, logs, and automation

Operations

Endpoints for IoT devices, telemetry, and field data integration

Operations