Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Phare 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%2Fphareio%2Fphare" | 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%2Fphareio%2Fphare" | 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 Phare API.
Create HTTP uptime monitors to track endpoint availability and response times
Pause and resume monitors for maintenance windows without deletion
Retrieve incident records with downtime details and resolution status
List all monitors across projects with their current status
Manage multiple projects with scoped API key access control
GET STARTED
Patterns agents use Phare API for, with concrete tasks.
★ Automated Uptime Monitoring Setup
Create HTTP uptime monitors programmatically when deploying new services or endpoints. POST /uptime/monitors accepts URL, check interval, and alert configuration. Agents can automatically provision monitoring for each new microservice or API endpoint as part of the deployment pipeline, ensuring nothing goes unmonitored.
Create a new uptime monitor via POST /uptime/monitors with URL 'https://api.example.com/health', 60-second interval, and HTTP GET method
Maintenance Window Management
Pause monitors during planned maintenance to avoid false incident alerts, then resume them when maintenance completes. POST /uptime/monitors/{id}/pause stops checking temporarily, and POST /uptime/monitors/{id}/resume restarts monitoring. Agents can orchestrate this around deployment schedules automatically.
Pause monitor ID 42 via POST /uptime/monitors/42/pause before deployment, then resume it via POST /uptime/monitors/42/resume after health check passes
Incident Reporting and Analysis
Retrieve incident records to analyze downtime patterns, measure SLA compliance, or trigger escalation workflows. GET /uptime/incidents returns all detected incidents with timestamps, duration, and affected monitors. Agents can aggregate this data for weekly reliability reports or feed it into alerting pipelines.
Retrieve all incidents via GET /uptime/incidents, filter for the past 7 days, and calculate total downtime minutes per monitor for an SLA report
AI Agent Uptime Management via Jentic
AI agents discover and manage Phare uptime monitors through Jentic as part of infrastructure automation workflows. Agents search for monitoring capabilities by intent, receive operation schemas with Bearer auth handled, and create monitors or query incidents without manual integration. This enables self-healing infrastructure patterns.
Search Jentic for 'create an uptime monitor', load the POST /uptime/monitors schema, and execute with target URL and check interval parameters
10 endpoints — jentic publishes the only available openapi specification for phare api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/uptime/monitors
List all uptime monitors
/uptime/monitors
Create a new monitor
/uptime/monitors/{id}
Get a specific monitor
/uptime/monitors/{id}/pause
Pause a monitor
/uptime/monitors/{id}/resume
Resume a paused monitor
/uptime/monitors/{id}
Delete a monitor
/uptime/incidents
List all incidents
/projects
List projects
/uptime/monitors
List all uptime monitors
/uptime/monitors
Create a new monitor
/uptime/monitors/{id}
Get a specific monitor
/uptime/monitors/{id}/pause
Pause a monitor
/uptime/monitors/{id}/resume
Resume a paused monitor
/uptime/monitors/{id}
Delete a monitor
/uptime/incidents
List all incidents
/projects
List projects
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Phare API by hand means setting up its bearer key against api.phare.io, deciding whether the key is project-scoped or organization-scoped with project selection headers, and formatting the monitor requests yourself. Through Jentic you install once, import the Phare API from the API Directory, store the key once, and your agent calls it.
Permission scoping
Phare puts the monitor id in the URL path (/uptime/monitors/{id}), so a rule can pin your agent to one monitor: it can read, pause, or resume that monitor and nothing else. You choose the operations it may call, so destructive ones like deleting a monitor are not included unless you add them.
Credential isolation
Your Phare 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 'list uptime monitors' or 'pause a monitor', and Jentic returns the matching Phare 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 Phare API through Jentic.
Why is there no official OpenAPI spec for Phare API?
Phare does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Phare 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 Phare API use?
The Phare API uses Bearer token authentication. API keys are generated from the Phare control panel and can be project-scoped (acting on a specific project) or organization-scoped (requiring project selection headers). Through Jentic, your API key is stored encrypted and agents never handle the raw token.
Can I pause monitors during maintenance?
Yes. POST /uptime/monitors/{id}/pause temporarily stops a monitor from checking. POST /uptime/monitors/{id}/resume restarts it. This prevents false incident alerts during planned maintenance windows without deleting and recreating the monitor.
How do I retrieve incident data through Jentic?
Search Jentic for 'list uptime incidents' to discover GET /uptime/incidents. Load the schema and execute to retrieve incident records including timestamps, affected monitors, and downtime duration. Use this data for SLA reporting or escalation logic.
What is the difference between project-scoped and organization-scoped API keys?
Project-scoped keys automatically target their assigned project for all operations. Organization-scoped keys require you to specify the target project via request headers, but allow access to multiple projects with a single key. GET /projects lists available projects for organization-scoped keys.
Can I limit what my agent is allowed to do with the Phare API?
Yes. Because you run Jentic One yourself, your own rules decide which Phare operations and credentials your agent can use. Phare puts the monitor id in the URL path (/uptime/monitors/{id}), so a rule can pin your agent to a single monitor and let it read, pause, or resume only that one. You pick the operations it may call, so a destructive action like DELETE /uptime/monitors/{id} stays out of reach unless you explicitly add it.
Know of an official OpenAPI document? Contribute it →
For Agents
Create and manage uptime monitors that check endpoint availability. Pause, resume, and configure HTTP monitors, and retrieve incident records when downtime occurs.
Use for: I need to create an uptime monitor for my API, List all monitors and their current status, I want to pause a monitor during maintenance, Get all incidents that occurred this week
Not supported: Does not handle application performance monitoring, log aggregation, or distributed tracing - use for HTTP uptime monitoring and incident detection only.
Jentic publishes the only available OpenAPI specification for Phare API, keeping it validated and agent-ready. The Phare API provides 10 endpoints for managing uptime monitors, viewing incidents, and listing projects. It supports creating HTTP monitors that check endpoint availability, pausing and resuming monitors, and retrieving incident data when downtime is detected. API keys can be project-scoped or organization-scoped for multi-project setups.
This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.
Base layer of spec validity and structural soundness.
Aggregated quality score from linter diagnostics, weighted by severity.
Percentage of `$ref` references that resolve successfully.
Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).
Structural correctness score based on schema issues using logarithmic dampening.
Clarity, completeness, and ingestion readiness for developers and tooling.
How richly the API is illustrated with examples.
Percentage of examples that conform to their schemas.
Percentage of operations with complete response definitions (success, client error, server error).
Health of API ingestion, bundling, and resolution within Jentic pipelines.
Semantic breadth, depth, and agent comprehension for AI systems.
Coverage of descriptions across API elements.
Coverage of RFC 9457 Problem Details for error responses.
Coverage, uniqueness, and casing consistency of operationIds for AI inference.
Coverage of summaries across operations/tags/info.
Functional utility, complexity comfort, and AI orchestration readiness.
Agent comfort level based on API operational and structural complexity.
Trust, risk posture, and security compliance.
Average quality of security schemes based on authentication method strength (weakest link for OAuth2).
Findability, semantic richness, and reasoning readiness.
Clarity and depth of descriptions across API elements.
Score it yourself
Every API in the directory is allowlisted, so you can re-score it with no key required.
npx @jentic/api-scorecard-cli score <openapi-url>