Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API 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 WorksAPI 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 / Developer Tools / OpenObserve API
OpenObserve API logo

OpenObserve API

★ Only Publicly Available OpenAPI DocumentDeveloper ToolsMonitoring Observabilitybasic9 EndpointsREST

For Agents

Ingest logs and metrics into OpenObserve, manage streams, and run search queries against an organization's observability data.

Use for: I need to send a batch of application logs to OpenObserve, Search OpenObserve logs for errors in the last hour, List all streams in my OpenObserve organization, Retrieve the status of a long-running search job

Not supported: Does not handle alerting, dashboard rendering, or trace visualisation — use for log and metric ingestion and search only.

Jentic publishes the only available OpenAPI specification for OpenObserve API, keeping it validated and agent-ready. OpenObserve is an open-source observability platform that ingests, stores, and queries logs, metrics, and traces. The API exposes stream management, JSON ingestion, and time-range search across an organization's data, letting agents push telemetry and run queries against existing OpenObserve instances. It is self-hosted, so the base URL is the operator's instance address rather than a vendor-managed endpoint.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the OpenObserve API to your agent

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

Ingest JSON log events into a named stream via the _json ingestion endpoint

Push metrics in JSON form for time-series storage and dashboarding

List, retrieve, and delete streams under a tenant organization

Run search queries with time-range filters across stored events

Poll the status of an asynchronous data-by-time-range job until results are ready

Cache repeated search results to reduce repeated query cost

Authenticate per request with HTTP Basic credentials scoped to an organization

Use Cases

Patterns agents use OpenObserve API for, with concrete tasks.

★ Centralised application log ingestion

Self-hosted services push structured JSON logs into a tenant-scoped stream so engineers can search and correlate events across microservices. OpenObserve handles indexing and time-bucketed storage, and the ingestion endpoint accepts arbitrary JSON event payloads. Setup typically takes a few hours once an OpenObserve instance is running and credentials are issued.

POST a batch of 50 JSON log events to /api/{organization}/{stream}/_json with HTTP Basic auth and confirm a 200 response.

Time-range search for incident investigation

On-call engineers query OpenObserve for events within a specific window to investigate an incident. The data_by_time_range endpoint returns matching events for a stream, and the status endpoint reports when an asynchronous job is complete. This replaces ad-hoc grep over scattered log files with a structured query interface.

Submit a data_by_time_range query for the last 30 minutes against the api-errors stream, then poll /status/{jobId} until the job completes.

Custom metrics ingestion from services

Internal services emit custom metrics directly to OpenObserve via the metrics JSON ingestion endpoint, avoiding the need for a separate StatsD or Prometheus pipeline. Metrics are stored alongside logs and traces under the same organization scope, simplifying operator authentication.

POST a metrics payload with name, value, and timestamp fields to /api/{organization}/ingest/metrics/_json and verify acceptance.

Agent-driven observability through Jentic

AI agents that triage production incidents call OpenObserve via Jentic to fetch relevant logs and metrics for a given service window. Jentic resolves the right ingestion or search operation based on the agent's intent and injects the operator's credentials at execution time so the raw username and password never appear in agent context.

Search Jentic for 'search openobserve logs', load the search operation schema, and execute a query for stream=api-errors over the last hour.

Key Endpoints

9 endpoints — jentic publishes the only available openapi specification for openobserve api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/api/{organization}/{stream}/_json

Ingest JSON log events into a stream

POST

/api/{organization}/ingest/metrics/_json

Ingest metrics in JSON form

POST

/api/{organization}/_search

Run a search query across an organization

POST

/api/{organization}/streams/{streamName}/data_by_time_range

Submit a time-range search job

GET

/api/{organization}/streams/{streamName}/data_by_time_range/status/{jobId}

Poll status of a time-range search job

GET

/api/{organization}/streams

List streams in an organization

POST

/api/{organization}/{stream}/_json

Ingest JSON log events into a stream

POST

/api/{organization}/ingest/metrics/_json

Ingest metrics in JSON form

POST

/api/{organization}/_search

Run a search query across an organization

POST

/api/{organization}/streams/{streamName}/data_by_time_range

Submit a time-range search job

GET

/api/{organization}/streams/{streamName}/data_by_time_range/status/{jobId}

Poll status of a time-range search job

GET

/api/{organization}/streams

List streams in an organization

Why Jentic?

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

Credential management

Credential isolation

OpenObserve Basic-auth credentials are stored encrypted in the Jentic vault. Agents receive scoped execution access — the username and password never enter the agent's context window.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'send logs to openobserve' or 'search openobserve by time range') and Jentic returns the matching ingestion or search operation with its input schema, so the agent does not need to read the OpenObserve docs.

Time to first call

Time to first call

Direct OpenObserve integration: half a day to set up auth, choose endpoints, and handle the async search status loop. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

New Relic API

→

Hosted observability platform with logs, metrics, and APM in one product

Choose New Relic when the team wants a managed SaaS observability backend rather than self-hosting OpenObserve.

Alternative

Elastic Kibana API

→

Search and analytics over Elasticsearch indexes, including log data

Choose Kibana/Elastic when the team already runs Elasticsearch as the storage layer for logs.

Complementary

Splunk API

→

Enterprise log search and SIEM that can sit alongside OpenObserve for security workflows

Use Splunk for security incident workflows while OpenObserve handles general engineering observability.

FAQs

Specific to using OpenObserve API through Jentic.

Why is there no official OpenAPI spec for OpenObserve API?

OpenObserve does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call OpenObserve API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the OpenObserve API use?

OpenObserve uses HTTP Basic authentication, passing base64-encoded username and password in the Authorization header on every request. Through Jentic, the credentials sit in the encrypted vault and the agent never sees the raw values; Jentic injects the Basic header at execution time.

Can I ingest both logs and metrics with the OpenObserve API?

Yes. Logs are pushed as JSON events to /api/{organization}/{stream}/_json, and metrics use the dedicated /api/{organization}/ingest/metrics/_json endpoint. Both are scoped to an organization tenant in the same instance.

What are the rate limits for the OpenObserve API?

Because OpenObserve is self-hosted, rate limits are governed by the operator's instance configuration rather than a central vendor quota. Plan ingestion volume against the resources of your specific deployment.

How do I run a time-range search through Jentic?

Search Jentic for 'search openobserve by time range', load the operation that matches /api/{organization}/streams/{streamName}/data_by_time_range, and execute it with start/end timestamps. Jentic returns the jobId, and a follow-up call to the status endpoint retrieves the results when ready.

Why is the base URL in the spec a placeholder?

OpenObserve runs as a self-hosted platform, so the spec uses {instance} as a server variable. Set it to the URL of your own OpenObserve deployment (for example, https://logs.example.com) when configuring the operation through Jentic.

GET STARTED

Start building with OpenObserve API

Explore with Jentic
View OpenAPI Document