Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / IOT / Adafruit / Adafruit IO API
Adafruit IO API logo

Adafruit IO API

Browse all Adafruit APIs
★ Only Publicly Available OpenAPI DocumentIOTSensor DataapiKey18 EndpointsREST

For Agents

Read and write sensor telemetry, manage feeds and groups, and look up account data on Adafruit IO.

Use for: I need to create a new feed for a temperature sensor, Read the latest reading from a humidity feed, Push a batch of sensor readings to Adafruit IO, List all feeds in my Adafruit IO account

Not supported: Does not handle device firmware updates, OTA management, or dashboard layout — use for Adafruit IO feeds, groups, and feed data only.

Jentic publishes the only available OpenAPI specification for Adafruit IO API, keeping it validated and agent-ready. Adafruit IO is a cloud service for connected devices and the Internet of Things, exposing endpoints for feeds, groups, batched data points, and the authenticated user. The spec covers 18 operations under three tags — feeds, groups, and user — with the API key passed in the X-AIO-Key header. Feeds support last-value reads and batch ingest, which suit microcontroller-based projects that buffer telemetry.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Adafruit IO API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Adafruit IO 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.

1

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 | sh
2

Step 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 instance

Jentic 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.

Capabilities

What an agent can do with Adafruit IO API.

Create and list feeds for sensor telemetry via /{username}/feeds

Read the latest data point from a feed at /{username}/feeds/{feed_key}/data/last

Submit batch sensor readings to a feed via /{username}/feeds/{feed_key}/data/batch

Pull historical feed data through /{username}/feeds/{feed_key}/data and /{username}/feeds/{feed_key}/data/{id}

Organise related feeds into groups using /{username}/groups and /{username}/groups/{group_key}

Look up the authenticated user via /{username}/user

Use Cases

Patterns agents use Adafruit IO API for, with concrete tasks.

★ Microcontroller telemetry ingest

Hobbyist and educational IoT projects use Adafruit IO to log sensor data from a Feather, ESP32, or Raspberry Pi. The microcontroller (or an agent on its behalf) creates feeds via /{username}/feeds and posts readings in batches to /{username}/feeds/{feed_key}/data/batch. Batch ingest reduces the number of TLS handshakes a memory-constrained device has to perform.

POST a batch of 30 temperature readings to /{username}/feeds/temp/data/batch and confirm the count in the response

Live dashboard polling

Smart-home and weather-station dashboards poll Adafruit IO for the latest values. An agent or front-end calls /{username}/feeds/{feed_key}/data/last for each feed in the dashboard and renders the result. Grouping related feeds via /{username}/groups simplifies the read pattern to a single group key per panel.

Fetch the last value of each feed in group 'weather-station' and render a dashboard summary

Historical analysis

Researchers and tinkerers analyse historical sensor data — for example averaging temperature over a week or charting humidity trends. An agent can pull /{username}/feeds/{feed_key}/data with a date range, aggregate the values, and feed them into a notebook or analytics tool. This avoids exporting CSVs by hand from the Adafruit IO UI.

GET /{username}/feeds/temp/data with start_time and end_time and compute the daily average

AI agent integration

Makers building agent assistants for their lab or smart home wire Adafruit IO into Jentic alongside notification APIs. The X-AIO-Key lives in the Jentic vault and the agent searches by intent — e.g. 'read the latest soil moisture' — without juggling raw keys in the conversation context.

Search Jentic for 'read latest Adafruit IO feed value', load the schema, and execute it for feed_key 'soil-moisture'

Key Endpoints

18 endpoints — jentic publishes the only available openapi specification for adafruit io api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/{username}/feeds

List feeds

POST

/{username}/feeds

Create a feed

POST

/{username}/feeds/{feed_key}/data

Add a data point

POST

/{username}/feeds/{feed_key}/data/batch

Batch add data points

GET

/{username}/feeds/{feed_key}/data/last

Get the latest data point

GET

/{username}/feeds/{feed_key}/data

Get historical feed data

GET

/{username}/groups

List groups

GET

/{username}/user

Get authenticated user

GET

/{username}/feeds

List feeds

POST

/{username}/feeds

Create a feed

POST

/{username}/feeds/{feed_key}/data

Add a data point

POST

/{username}/feeds/{feed_key}/data/batch

Batch add data points

GET

/{username}/feeds/{feed_key}/data/last

Get the latest data point

GET

/{username}/feeds/{feed_key}/data

Get historical feed data

GET

/{username}/groups

List groups

GET

/{username}/user

Get authenticated user

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Adafruit IO X-AIO-Key values are stored encrypted in the Jentic vault. Agents receive scoped execution handles, so the raw key never enters the agent's prompt context or logs.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent, e.g. 'read latest Adafruit IO feed' or 'send a batch of sensor readings', and Jentic returns the matching operation with its input schema.

Time to first call

Time to first call

Direct Adafruit IO integration: a few hours for auth and feed wiring. Through Jentic: under 30 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Particle API

→

End-to-end IoT platform with hardware, cloud, and OTA firmware updates.

Choose Particle when the project needs over-the-air firmware updates and SIM connectivity, which Adafruit IO does not provide.

Alternative

Blynk API

→

Mobile-first IoT platform with drag-and-drop dashboard builder.

Pick Blynk when end users will primarily interact via a mobile app rather than the Adafruit IO web UI.

Complementary

Adafruit IO REST API

→

Wider 71-endpoint Adafruit IO REST surface including dashboards, blocks, and webhooks.

Use the larger Adafruit IO REST API when you need dashboard, block, or webhook management beyond feeds and groups.

FAQs

Specific to using Adafruit IO API through Jentic.

Why is there no official OpenAPI spec for Adafruit IO API?

Adafruit IO does not publish an OpenAPI specification in this trimmed shape. Jentic generates and maintains this spec so that AI agents and developers can call Adafruit IO 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 Adafruit IO API use?

Adafruit IO uses an API key in the X-AIO-Key header, generated from the user's Adafruit IO profile page. Through Jentic, the X-AIO-Key value is stored encrypted in the Jentic vault and the agent receives a scoped execution handle, so raw keys never appear in prompts.

Can I send batch sensor readings with the Adafruit IO API?

Yes. POST to /{username}/feeds/{feed_key}/data/batch with an array of data points to ingest several readings in a single request. This reduces the number of TLS handshakes a memory-constrained microcontroller has to perform compared with single-point POSTs.

What are the rate limits for the Adafruit IO API?

Adafruit IO enforces a per-minute data throughput limit that depends on the account tier (free vs IO Plus). The OpenAPI spec does not declare exact numbers — see Adafruit's IO docs for the current ceiling, and use batch ingest to stay within budget.

How do I read the latest sensor value through Jentic?

Run pip install jentic, search Jentic for 'read latest Adafruit IO feed', load the schema for GET /{username}/feeds/{feed_key}/data/last, and execute it with the username and feed_key. Jentic injects the X-AIO-Key from the vault.

Does the Adafruit IO API support grouping multiple feeds?

Yes. /{username}/groups lets you create and list groups, and a feed can be associated with a group so that related feeds (e.g. all sensors on a weather station) can be queried as a single unit.

GET STARTED

Start building with Adafruit IO API

Explore with Jentic
View OpenAPI Document