Early adopter pricing — locked for life. Only 4 spots available. Claim yours now before spots run out →
Developer-Friendly

REST API included.
No extra cost.

Every DataKubo plan includes full API access. Pull device data, consumption history, and fleet status programmatically — with your own API key.

Try it in 30 seconds

Every reseller account comes with an API key. Here's how simple it is to pull your data:

List all your devices

Get device status, battery levels, and last readings in one call.

curl -s https://api.datakubo.com/api/v1/devices \
  -H "X-API-Key: rsk_your_api_key"

Response

{
  "data": [
    {
      "id": "d1a2b3c4-...",
      "dev_eui": "383936306c4b5880",
      "name": "Water Meter 001",
      "status": "online",
      "battery_level": 3.65,
      "last_reading_at": "2026-03-23T10:30:00Z",
      "is_active": true
    }
  ],
  "status": "success"
}

Ingest device data

Push readings from any IoT device via webhook.

curl -X POST https://api.datakubo.com/api/v1/ingest/water-consumption \
  -H "X-API-Key: rsk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "deviceInfo": {
      "tenantName": "your-tenant",
      "deviceName": "Meter 001",
      "devEui": "383936306c4b5880"
    },
    "time": "2026-03-23T10:30:00Z",
    "object": {
      "cumulativeFlowM3": 125.450,
      "batteryVoltage": 3.65
    }
  }'

Get device details

Look up any device by its EUI — case-insensitive.

curl -s https://api.datakubo.com/api/v1/devices/383936306c4b5880 \
  -H "X-API-Key: rsk_your_api_key"

Explore the full interactive API reference

View Interactive API Docs →

API key on signup

Your API key is generated automatically when you create your account. No approval process.

OpenAPI documentation

Auto-generated interactive docs at /docs. Test endpoints directly from your browser.

Webhook ingestion

Push data from ChirpStack, TTN, or any HTTP source. We normalize and store it.

Multi-tenant isolation

Your API key only accesses your data. Row-level security enforced at the database level.

Rate limit transparency

Clear rate limit headers on every response. 100K device messages/month included.

Both auth methods

Use API key for integrations, JWT tokens for frontend apps. Both work on every endpoint.

Why build when you can deploy in 15 minutes?

Stop spending months building custom dashboards and APIs. DataKubo gives you production-ready infrastructure — API, dashboards, multi-tenant isolation — so you can focus on your customers.

15 min
From signup to live API
€15K+
Saved vs custom development
0
Lines of backend code to write

Your API key is waiting

Start your free trial and get instant API access. No credit card required.