Data Collection & Telemetry
Overview
Update Hardware
Module and SIM Update Guides
Module Identification
Module Swap Wizard
SIM Swap Wizard
AT&T / T-Mobile Configuration Guide
Verizon Configuration Guide
Worldwide H1 SIM Configuration Guide
SIM Replacement Instructions
Wi-Fi Configuration Guide
Firmware Update
Troubleshoot
ZL6 Troubleshooting Guide
ATMOS 41W Troubleshooting Guide
EM60G Troubleshooting Guide
EM50 Series Troubleshooting Guide
Communication Test
List Cellular Carriers
Test Button & Status Lights
Fix: Retroactively Enable LTE-M Bands for 4G in Europe
Sensor Current Draw Check - ZSC
App Location Permissions on iOS and Android
Coverage
Accessories
ZENTRA Cloud 1.0
Quick Start
Organizations
Account
Edit Account Profile
Update Account Password
Lost Password/Password Reset
Set Measurement Unit Preferences
Users
Devices
Device Inventory
Edit Device
Re-provision ZL6 to European Server
Add Device
Remove Device
Time-zone and Location Override
Calibrations
Downloads
Dashboard
Enable Chart Status
Create Custom Charts
Color Picklist
Add Traces to Chart
Chart Stats
Print Charts
Set a Target Range
Lock Chart Axes
Chart Date Range Picker [NEW]
Download Chart Data
Notifications
Models
Daily Light Integral [1.0]
Ground Water Elevation [1.0]
Ground Water Depth [1.0]
Plant Available Water [1.0]
Daily Light Photoperiod [1.0]
Chill Hours [1.0]
Growing Degree Days [1.0]
Create a Model [1.0]
Evapotranspiration [1.0]
Subscriptions
Error Codes
Applications
FAQ
ZENTRA Field
ZENTRA Cloud 2.0
Frequently Asked Questions
Getting Started
User Account
Setup
Loggers
Add Data Logger
Configure Data Logger
Map of Data Loggers
Data Logger Charts
Data Logger Download
Logs
Archive
Handhelds
Dashboards
Explorer
Data
Workspaces (Projects)
Alerts
Environment Models
Chill Hours [2.0]
Daily Light Integral [2.0]
Daily Light Photoperiod [2.0]
Evapotranspiration [2.0]
Groundwater Elevation [2.0]
Groundwater Depth [2.0]
Growing Degree Days [2.0]
Heat Index [2.0]
Heat Stress Wet Bulb Globe Temperature WBGT [2.0]
Leaf Wetness Amount of Water [2.0]
Plant Available Water [2.0]
Utah Chill Model [2.0]
Wind Chill [2.0]
Subscriptions
Feedback
API
v3.0/4.0
US Server API
EU Server API
TAHMO Server API
Push API
R Package
API Troubleshoot
AgWeatherNet & DAS
Manage API Keys
v5.0
Metadata
Release Notes
Accessibility
Security
Uptime & Incidents
Legal
- All Categories
- API
- v5.0
- Getting Started
Getting Started
A step-by-step walkthrough from creating your ZENTRA Cloud account to making your first authenticated v5 API request and pulling device data.
Getting Started
This guide takes you from a new account to your first successful v5 API request. If you already have an account and a token, skip to Make your first request below.
1. Create an account and set up an organization
Devices belong to organizations, and API access is granted through organization membership. Create your account and organization first.
Create an account and set up an organization
2. Add a data logger
Add at least one data logger so there are devices to discover and data to pull.
3. Get your API token
Your API key authenticates every request. It's per-user and found on your account's Integrations page.
See API Token for full details on copying, regenerating, and securing it.
4. Make your first request
With your token in hand, list the devices your key can access. This is the best first call because it needs no prior knowledge — it returns the device_id values you'll use everywhere else.
curl "https://api.zentracloud.io/v5/devices" \ -H "X-API-Key: YOUR_API_KEY"
A 200 OK returns a devices array and a pagination object. Copy a device_id from the response — you'll need it for the next step.
5. Pull some data
Use a device_id from the previous step to retrieve that device's readings:
curl "https://api.zentracloud.io/v5/devices/z6-00930/data?direction=descending&units=metric" \
-H "X-API-Key: YOUR_API_KEY"
Next steps
- List Devices — filtering by organization, paging through large sets, and requesting each device's measurement range.
- Get Device Readings — date/timestamp windows, ordering, units, and pagination.
- Rate Limiting and Errors — what to expect and how to handle it as you scale up.
- v5 API Overview — the concepts shared across all endpoints.
How did we do?
v5 API Overview
API Token