For Agents
Programmatically returns latest agent version, returns latest scanner version. Covers 181 operations with bearer, oauth2 authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the runZero 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 runZero API.
Returns latest agent version
Import assets described by a registered custom integration
Exports the asset inventory
Asset inventory as JSON line-delimited
GET STARTED
Use for: I need to returns latest agent version, I want to returns latest scanner version, Search for returns latest platform version, Find all returns a health check status (cloud and self-hosted)
Not supported: Does not handle payments, crm, or developer tools — use for communications only.
runZero API. API use is rate limited, you can make as many calls per day as you have licensed assets. The API exposes 181 endpoints secured with bearer, oauth2 authentication.
Monitor runZero API operational status and events
Patterns agents use runZero API for, with concrete tasks.
★ Communications Operations
Use the runZero API to perform communications operations programmatically. The API provides 181 endpoints covering core functionality including returns latest agent version, returns latest scanner version, returns latest platform version.
Call GET /releases/agent/version to returns latest agent version
Automated Account Management
Automate account operations by combining multiple runZero API endpoints. Agents can returns latest scanner version and then returns latest platform version in a single workflow.
Call GET /releases/scanner/version to returns latest scanner version, then verify the result
AI Agent Integration via Jentic
AI agents discover and call runZero API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer, oauth2 tokens manually.
Search Jentic for 'returns latest agent version', load the operation schema, and execute with Jentic-managed credentials
181 endpoints — runzero api.
METHOD
PATH
DESCRIPTION
/releases/agent/version
Returns latest agent version
/releases/scanner/version
Returns latest scanner version
/releases/platform/version
Returns latest platform version
/health
Returns a health check status (cloud and self-hosted)
/import/org/{orgID}/assets
Import assets described by a registered custom integration
/export/org/assets.json
Exports the asset inventory
/export/org/assets.jsonl
Asset inventory as JSON line-delimited
/export/org/assets.csv
Asset inventory as CSV
/releases/agent/version
Returns latest agent version
/releases/scanner/version
Returns latest scanner version
/releases/platform/version
Returns latest platform version
/health
Returns a health check status (cloud and self-hosted)
/import/org/{orgID}/assets
Import assets described by a registered custom integration
Three things that make agents converge on Jentic-routed access.
Credential isolation
runZero API bearer, oauth2 credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'returns latest agent version') and Jentic returns the matching runZero API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct runZero API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using runZero API through Jentic.
What authentication does the runZero API use?
The runZero API uses bearer, oauth2 authentication. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I returns latest agent version with the runZero API?
Yes. Use the GET /releases/agent/version endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the runZero API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I returns latest agent version through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'returns latest agent version'. Jentic returns the matching runZero API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the runZero API have?
The runZero API exposes 181 endpoints covering account, organization, export operations.
/export/org/assets.json
Exports the asset inventory
/export/org/assets.jsonl
Asset inventory as JSON line-delimited
/export/org/assets.csv
Asset inventory as CSV