Middleware API
Overview
The Colmeia middleware provides a unified API for accessing agricultural data from connected providers. Each tenant has a bearer secret that authenticates all data requests.
Base URL: https://colmeia.mt2data.cloud/api
Authentication
All data routes require a tenant bearer secret in the Authorization header:
Authorization: Bearer <tenant-secret>
Tenant secrets are provisioned by MT2Data and can be rotated through the dashboard. Contact support if you need a new secret.
Connection Status
GET /api/data/:tenantId/connections
Returns the connection state for all providers configured for your tenant. Use this as a pre-flight check before making data requests.
curl https://colmeia.mt2data.cloud/api/data/YOUR_TENANT_ID/connections \
-H "Authorization: Bearer YOUR_TENANT_SECRET"
Response:
{
"success": true,
"data": {
"tenant_id": "your-tenant-id",
"connections": [
{ "provider": "john_deere", "connected": true, "expired": false, "expires_at": 1714086400, "auto_renew": true },
{ "provider": "syngenta", "connected": true, "expired": false },
{ "provider": "solinftec", "connected": true, "expired": false, "expires_at": 2092433279, "auto_renew": true },
{ "provider": "datalake", "connected": true, "expired": false, "expires_at": 1714090000, "auto_renew": true }
]
}
}
A connected: false provider means that integration has not been configured for your tenant yet. Contact MT2Data to enable it.
Route Discovery
GET /api/
Returns the full list of available routes. No auth required.
curl https://colmeia.mt2data.cloud/api/
Response Envelope
All endpoints return a consistent JSON envelope:
{ "success": true, "data": { ... } }
{ "success": false, "error": "snake_case_error_code" }
Client-facing error codes
| Code | HTTP | Meaning |
|---|---|---|
unauthorized | 401 | Missing or invalid tenant bearer secret |
unsupported_provider | 400 | Unknown provider ID |
phone_not_linked | 404 | Phone number not provisioned to any tenant |