Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI 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 WorksJentic OneAPI 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 / Brain Web API
Brain Web API logo

Intellifi Nl Brain Web API

✓ Official Vendor SpecIOTDevice ManagementapiKey77 EndpointsREST

For Agents

Read and write to an Intellifi Brain instance — manage devices, locations, items, presences, key-value pairs, and uploaded blobs for RFID and Bluetooth asset tracking.

Use for: I want to list all items currently tracked in our Intellifi Brain, Find which location a specific RFID-tagged item is at right now, Upload a configuration blob to the Brain, Retrieve recent device events from the Brain

Not supported: Does not handle billing, GPS-only outdoor tracking, or generic CRM data — use for Intellifi Brain RFID and Bluetooth asset tracking, devices, locations, and events only.

The Brain Web API is the REST surface of Intellifi's Brain platform, a localisation system for items and assets that uses RFID and Bluetooth devices. Across 77 endpoints, the spec covers device and location management, key-value storage, presences and items, blob upload and download, events, and user-defined location rules — the core building blocks for tracking physical assets in a warehouse, retail, or logistics environment. Authentication can be a query API key, a header API key (X-Api-Key), or a session cookie, and the base URL is templated per customer Brain instance.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Brain Web API to your agent

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

Inspect the authenticated session via GET /authinfo to confirm permissions

Upload, download, and delete binary blobs through /blobs and /blobs/{id}

Stream and query device events through /events

Manage tracked items, locations, and location rules across the corresponding endpoints

Read presences (which item is at which location) for live asset tracking

Persist arbitrary configuration in key-value pairs via /kvpairs

Manage API keys directly through the /keys endpoints

Use Cases

Patterns agents use Brain Web API for, with concrete tasks.

★ Warehouse Asset Tracking Dashboard

Pull presences, items, and locations from a customer Brain instance and render them in a warehouse dashboard so operators can see where every RFID-tagged asset is at any moment. The /presences and /items endpoints provide the live state, while /events offers a stream of changes for animation or alerting.

List items via /items, locations via /locations, and presences via /presences, then render the live mapping in the operations dashboard.

Custom Location Rule Provisioning

Use /locationrules to encode business rules such as 'high-value tools must not leave bay 4' and combine them with device-event streams to detect violations in real time. The Brain stores the rules per customer instance, so a tooling layer can provision them as part of customer onboarding.

POST a new rule via the locationrules endpoint and listen on /events for matching device telemetry.

Configuration and Blob Storage

Store device firmware blobs or per-customer configuration files via POST /blobs, retrieve them through GET /blobs/{id}, and download named files via /blobs/{id}/download/{filename}. This lets the Brain double as a small artifact store for the assets connected to it.

POST a new blob with the firmware payload, then store the returned blob id against the target device.

AI Agent Operations Console via Jentic

An AI agent given access to a customer Brain through Jentic can answer questions like 'where is asset 1234' or 'what events happened on device 9 in the last hour' by calling the Brain endpoints by intent. Jentic isolates the API key and templates the customer subdomain in the base URL, so the agent only handles structured operational data.

Through Jentic, call brain_get_presences for the asset id and brain_list_events for the relevant device, then summarise the location and recent activity.

Key Endpoints

77 endpoints — the brain web api is the rest surface of intellifi's brain platform, a localisation system for items and assets that uses rfid and bluetooth devices.

METHOD

PATH

DESCRIPTION

GET

/authinfo

Inspect the current session

GET

/blobs

List uploaded blobs

POST

/blobs

Upload a new blob

GET

/blobs/{id}

Retrieve a blob's metadata

DELETE

/blobs/{id}

Delete a blob

GET

/events

List device and system events

GET

/authinfo

Inspect the current session

GET

/blobs

List uploaded blobs

POST

/blobs

Upload a new blob

GET

/blobs/{id}

Retrieve a blob's metadata

DELETE

/blobs/{id}

Delete a blob

GET

/events

List device and system events

Why Jentic?

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

Credential management

Credential isolation

The Intellifi Brain X-Api-Key is stored encrypted in the Jentic vault and bound to the request header at execution time. The customer-specific base URL is held alongside it, so the agent never builds the URL or holds the key directly.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (for example 'list Intellifi presences for an asset' or 'upload an Intellifi blob') and Jentic returns the matching operation across the 77 endpoints with its input schema.

Time to first call

Time to first call

Direct integration: 2-3 days to wire multi-scheme apiKey auth, templated base URL, and the 77-endpoint surface across items, locations, presences, and events. Through Jentic: under 1 hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Particle API

→

Particle provides a cloud-managed IoT device platform for cellular and Wi-Fi devices.

Choose Particle when the project starts from cellular IoT modules rather than RFID-based localisation.

Alternative

Balena API

→

Balena manages fleets of containerised IoT devices with deployment-focused APIs.

Choose Balena when the priority is software fleet management rather than item presence and location.

Complementary

Blynk API

→

Blynk supplies dashboards and mobile UIs for IoT data, including telemetry from devices.

Pair with the Intellifi Brain when end-user dashboards are needed on top of presence and event data.

FAQs

Specific to using Brain Web API through Jentic.

What authentication does the Intellifi Brain Web API use?

The spec defines three apiKey schemes: QueryApiKey (query parameter 'key'), HeaderApiKey (header 'X-Api-Key'), and CookieSid (a session cookie named 'brain.sid'). Endpoints accept any of these. Through Jentic, the API key is held in the encrypted Jentic vault and bound to the X-Api-Key header at execution time.

Can I list which items are at which locations?

Yes. The /presences endpoint returns the live mapping between items and locations as observed by the Brain's RFID and Bluetooth devices. Combine with /items and /locations for human-readable metadata.

Can I store binary blobs against the Brain?

Yes. POST /blobs uploads a blob, GET /blobs/{id} reads metadata, /blobs/{id}/upload adds further uploads, /blobs/{id}/download/{filename} retrieves the file, and DELETE /blobs/{id} removes it.

What are the rate limits for the Intellifi Brain Web API?

The OpenAPI specification does not encode explicit rate limits. Each Brain is a per-customer deployment, so capacity depends on the customer instance. Avoid tight polling on /events — use longer intervals or stream consumers — and back off on 429 responses if seen.

How do I query asset presence through Jentic?

Run pip install jentic, then have the agent issue the search-load-execute flow with the query 'list Intellifi presences for an asset'. Jentic returns the operation backed by /presences; the agent supplies the asset id filter and receives the current location mapping.

What does the templated base URL look like?

The servers entry is {protocol}://{customer}.intellifi.{tld}/api, so each customer's Brain has its own subdomain. Provide protocol (http or https), customer subdomain, and tld at execution time; Jentic stores these alongside the API key for the configured Brain instance.

GET STARTED

Start building with Brain Web API

Explore with Jentic
View OpenAPI Document