For Agents
Read vibration sensor measurements (peak particle velocity, VDV, Veff/KB) and device traces from Omnidots Honeycomb sensors deployed on construction and demolition sites.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Omnidots Honeycomb API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Omnidots Honeycomb API.
Authenticate an API token and confirm scope before pulling measurement data
List all measuring points configured on the Omnidots account
List sensors associated with a measuring point and their configuration
GET STARTED
Use for: Get the latest peak vibration records for our Amsterdam construction site, List all measuring points on our Omnidots account, Retrieve VDV measurements over the last 24 hours, Check whether my API token is still valid
Not supported: Does not handle device provisioning, alert routing, or noise (dB) monitoring — use for vibration measurement readback only.
Jentic publishes the only available OpenAPI specification for Omnidots Honeycomb API, keeping it validated and agent-ready. The Omnidots Honeycomb API is the data interface for Omnidots' vibration-monitoring platform used on construction sites, demolition projects, and industrial installations to track ground vibrations against safety thresholds. It exposes 11 endpoints for authenticating tokens, listing measuring points and sensors, configuring devices, and pulling peak particle velocity, VDV, and Veff/KB measurement records along with detailed waveform traces. Authentication uses a token query parameter.
Pull peak particle velocity (PPV) records for vibration compliance reporting
Pull VDV (Vibration Dose Value) records for human-comfort assessments
Retrieve detailed waveform traces around triggered events for forensic analysis
Patterns agents use Omnidots Honeycomb API for, with concrete tasks.
★ Construction Site Vibration Compliance
Site managers monitoring against BS 7385 or DIN 4150 thresholds use GET /get_peak_records to pull peak particle velocity values, GET /get_vdv_records for vibration dose values, and GET /get_veff_records for the German Veff/KB metric. Records carry timestamps and measuring-point IDs so they can be aggregated into daily compliance reports.
GET /get_peak_records for measuring point 87 over the last 24 hours and aggregate values above the 5 mm/s threshold into a compliance summary.
Sensor Fleet Inventory
Operations teams running tens or hundreds of sensors across multiple sites use GET /list_measuring_points to enumerate active points and GET /list_sensors to map the sensor inventory at each. GET /configure_measuring_point returns the threshold and sampling configuration for each device, supporting audit and re-deployment workflows.
GET /list_measuring_points to enumerate all sites, then for each call GET /list_sensors and produce a CSV inventory of sensor IDs, locations, and configuration.
Forensic Waveform Analysis After an Alarm
When a vibration alarm fires near a critical structure, GET /get_traces_list returns the available trace records around that timestamp and GET /get_traces returns the detailed waveform sample data for forensic analysis. Engineering teams use this to determine whether a true threshold breach occurred or whether a transient (e.g. nearby traffic) triggered the alarm.
GET /get_traces_list for measuring point 87 between 14:25 and 14:35, then GET /get_traces for each trace ID to download waveform samples for review.
AI Agent Site Monitoring Assistant
An AI agent connected through Jentic can answer questions like 'were vibration thresholds exceeded yesterday on the Rotterdam project?' by calling GET /list_measuring_points and GET /get_peak_records, summarising the result. Jentic stores the API token and injects it on each call so the agent never sees the raw credential.
Search Jentic for 'get omnidots peak records', load /get_peak_records, and execute it for measuring point 87 over the last 24 hours.
11 endpoints — jentic publishes the only available openapi specification for omnidots honeycomb api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/list_measuring_points
List all measuring points
/list_sensors
List sensors at a measuring point
/get_peak_records
Get PPV records
/get_vdv_records
Get VDV records
/get_veff_records
Get Veff/KB records
/get_traces
Get detailed waveform traces
/list_measuring_points
List all measuring points
/list_sensors
List sensors at a measuring point
/get_peak_records
Get PPV records
/get_vdv_records
Get VDV records
/get_veff_records
Get Veff/KB records
Three things that make agents converge on Jentic-routed access.
Credential isolation
Omnidots uses a token query parameter. Jentic stores this token in the encrypted MAXsystem vault and appends it to every outgoing request, so the raw token never enters the agent's context.
Intent-based discovery
Agents search Jentic with phrases like 'get omnidots peak records' or 'list omnidots measuring points' and Jentic returns the right operation with its full input schema typed.
Time to first call
Direct integration: 1-2 days to model measuring-point inventory and trace pagination. Through Jentic: under an hour — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Omnidots Honeycomb API through Jentic.
Why is there no official OpenAPI spec for Omnidots Honeycomb API?
Omnidots does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Omnidots Honeycomb API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Omnidots Honeycomb API use?
Every request includes a token query parameter issued from the Honeycomb account. Jentic stores this token in its encrypted vault and appends it on each call, so agents reference a credential handle rather than the raw token string.
Can I export waveform traces around a vibration alarm?
Yes. GET /get_traces_list returns trace records inside a time window and GET /get_traces returns the underlying waveform samples for forensic review. Use both endpoints to drill from alarm timestamp to raw signal.
What are the rate limits for the Omnidots Honeycomb API?
Rate limits are not declared in the OpenAPI spec. In practice the API is intended for periodic polling rather than per-second pulls — fetch records on a 5-minute or 15-minute schedule for compliance reporting.
How do I check vibration thresholds via Jentic?
Search Jentic for 'get omnidots peak records', and the SDK returns GET /get_peak_records. Pass the measuring point ID and a date range, and the agent receives the records ready for threshold comparison.
Does the Omnidots Honeycomb API include real-time alerting?
No. Real-time alerting and SMS/email push are configured inside the Omnidots Honeycomb portal and webhook integrations. The API is for pulling stored measurement data and waveform traces.
/get_traces
Get detailed waveform traces