Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Checks 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Ftruora.com%2Fchecks-api" | shStep 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%2Ftruora.com%2Fchecks-api" | 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 Checks API.
Report Behavior
Create a background check
List Checks
Get Health Dashboard
Monitor Checks API operational status and events
GET STARTED
Patterns agents use Checks API for, with concrete tasks.
★ Productivity Operations
Use the Checks API to perform productivity operations programmatically. The API provides 25 endpoints covering core functionality including report behavior, create a background check, list checks.
Call POST /v1/behavior to report behavior
Automated checks Management
Automate checks operations by combining multiple Checks API endpoints. Agents can create a background check and then list checks in a single workflow.
Call POST /v1/checks to create a background check, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Checks 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 apiKey tokens manually.
Search Jentic for 'report behavior', load the operation schema, and execute with Jentic-managed credentials
25 endpoints — **note:** this is a preview of the api and it is not considered stable since refinements are still being made.
METHOD
PATH
DESCRIPTION
/v1/behavior
Report Behavior
/v1/checks
Create a background check
/v1/checks
List Checks
/v1/checks/health
Get Health Dashboard
/v1/checks/{check_id}
Get Background Check
/v1/checks/{check_id}/details
List Check Details
/v1/checks/{check_id}/pdf
Create PDF
/v1/checks/{check_id}/pdf
Get PDF
/v1/behavior
Report Behavior
/v1/checks
Create a background check
/v1/checks
List Checks
/v1/checks/health
Get Health Dashboard
/v1/checks/{check_id}
Get Background Check
/v1/checks/{check_id}/details
List Check Details
/v1/checks/{check_id}/pdf
Create PDF
/v1/checks/{check_id}/pdf
Get PDF
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Checks API by hand means setting its Truora-API-Key header, tracking check ids across calls, and handling errors and retries yourself. Through Jentic you install once, import Checks API from the API Directory, store the API key once, and your agent calls it.
Permission scoping
Checks API puts the check id in the URL path (/v1/checks/{check_id}/...), so a rule can pin your agent to one check: it can read that check's details and generate its PDF and nothing else. You choose the operations it may call, so creating new checks or reporting behavior are not included unless you add them.
Credential isolation
Your Checks API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'create a background check' or 'get a check's PDF report', and Jentic returns the matching Checks API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Checks API through Jentic.
What authentication does the Checks API use?
The Checks API uses an API key passed in the `Truora-API-Key` header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I report behavior with the Checks API?
Yes. Use the POST /v1/behavior endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Checks 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 report behavior through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'report behavior'. Jentic returns the matching Checks API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Checks API have?
The Checks API exposes 25 endpoints covering checks, reports, custom-type operations.
Can I limit what my agent is allowed to do with the Truora Checks API?
Yes. Because Jentic One is self-hosted, your own rules decide which Checks API operations and credentials the agent may use. Since the check id lives in the URL path (/v1/checks/{check_id}/...), you can pin the agent to a single check so it only reads that check's details and generates its PDF. You choose the operations it can call, so creating new background checks or reporting behavior stay off-limits unless you add them.
For Agents
Programmatically report behavior, create a background check. Covers 25 operations with apiKey authentication.
Use for: I need to report behavior, I want to a background check, Search for checks, Find all health dashboard
Not supported: Does not handle payments, communications, or crm - use for productivity only.
**NOTE:** This is a preview of the API and it is not considered stable since refinements are still being made. Introduction Welcome to the **Truora Check** [**RESTful API**](https://en.wikipedia.org/wiki/Representational_state_transfer) reference. You may also want to check out our [**Validations API docs**](https://docs.validations.truora.com/) or our [**Signals API docs**](https://docs.signals.t. The API exposes 25 endpoints secured with apiKey authentication.