Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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 Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / IOT / Adafruit / Adafruit IO API
Adafruit IO API logo

Adafruit IO API

Browse all Adafruit APIs
Agent-ready OpenAPI document · curated by JenticIOTSensor DataapiKey18 EndpointsREST

Know of an official OpenAPI document? Contribute it →

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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fadafruit.com%2Fadafruit-adafruit-io" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fadafruit.com%2Fadafruit-adafruit-io" | 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 your Jentic One instance 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?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Adafruit IO API by hand means attaching the X-AIO-Key header on every call and threading the username and feed key through feed and group endpoints. Through Jentic you install once, import the Adafruit IO API from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

Adafruit IO puts the feed key in the URL path (/{username}/feeds/{feed_key}/...), so a rule can pin your agent to one feed: it can push and read data for that feed and nothing else. You choose the operations it may call, so creating feeds or reading groups is not included unless you add it.

Credential management

Credential isolation

Your Adafruit IO X-AIO-Key is stored once, encrypted, by your own Jentic One instance and injected as a header at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'read latest Adafruit IO feed' or 'send a batch of sensor readings', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

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 with Jentic One, the self-hosted execution layer.

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 your Jentic One instance 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.

Can I limit what my agent is allowed to do with the Adafruit IO API?

Yes. Because Jentic One is self-hosted, you write the rules that decide which Adafruit IO operations and credentials your agent may use. Since the feed key sits in the URL path (/{username}/feeds/{feed_key}/...), you can pin the agent to a single feed so it only pushes and reads that feed's data and nothing else. You also choose which operations are exposed, so creating feeds or reading groups stays off unless you add it.

GET STARTED

Start building with Adafruit IO API

Explore with Jentic One
View OpenAPI Document