Jentic website screenshot

Jentic

Jentic is an AI infrastructure company building the agentic knowledge layer for APIs. Founded in late 2024 and backed by $4.5M in pre-seed funding, Jentic enables enterprises to confidently manage, scale, and govern AI agent initiatives in a unified platform built on open standards. The platform provides secure execution, managed authentication, unified permissions, and observability for AI agents accessing 1,500+ public APIs and 2,000+ agent-ready workflows. Jentic's bet is that AI agents need a standards-based control plane built on OpenAPI plus Arazzo workflows plus MCP, rather than ad-hoc tool wiring inside every agent framework. The platform ships the Jentic Public APIs catalog, the Arazzo Engine (workflow runner), the Standard Agent (a composable ReWOO-style reasoning agent), the Jentic Mini self-hosted execution layer, a hosted Remote MCP server at api.jentic.com/mcp, and the Jentic API AI-Readiness Framework (JAIRF) for scoring API readiness for agents.

6 APIs 0 Features
AI AgentsArazzoOpenAPIMCPWorkflowsIntegrationsAgent RuntimeStandard AgentJust In Time ToolingCredential VaultAgent GovernanceObservabilityAPI AI Readiness

APIs

Jentic API

The Jentic API is the hosted agent control plane. It exposes a small, stable surface that lets any agent dynamically discover, load, and execute API operations and Arazzo workfl...

Jentic Remote MCP Server

The Jentic Remote MCP Server is the hosted Model Context Protocol endpoint that exposes the Jentic catalog to MCP-capable clients (Claude Desktop, ChatGPT, Cursor, Windsurf, VS ...

Arazzo Engine

Open-source Python engine that executes Arazzo workflow specifications alongside OpenAPI operation definitions. Powers the Jentic platform's workflow execution and is also insta...

Jentic Standard Agent

Open-source composable reasoning agent framework that plans, acts, and recovers from failures, preconfigured with Jentic tools and a ReWOO reasoning loop. Primary entry point is...

Jentic Mini

Free, open-source, self-hosted API execution layer that sits between an agent and the outside world. The agent says what it wants to do and Jentic Mini handles the how: finding ...

Jentic API AI-Readiness Framework (JAIRF)

Technical specification for evaluating how interpretable, operable, and trustworthy an API is for AI systems and autonomous agents. Defines the signals, dimensions, scoring mode...

Agent Skills

jentic-v1

AGENT SKILL

jentic-workflows

AGENT SKILL

jentic

AGENT SKILL

Collections

Jentic API

OPEN

Pricing Plans

Jentic Plans Pricing

2 plans

PLANS

Rate Limits

Jentic Rate Limits

4 limits

RATE LIMITS

FinOps

Jentic Finops

FINOPS

Semantic Vocabularies

Jentic Context

0 classes · 6 properties

JSON-LD

API Governance Rules

Jentic API Rules

14 rules · 9 errors 5 warnings

SPECTRAL

JSON Structure

Jentic Operation Structure

0 properties

JSON STRUCTURE

Example Payloads

Jentic Execute Example

5 fields

EXAMPLE

Jentic Load Example

5 fields

EXAMPLE

Jentic Register Example

5 fields

EXAMPLE

Jentic Search Example

5 fields

EXAMPLE

Resources

🔗
Website
Website
📰
Blog
Blog
🔗
Documentation
Documentation
💰
Pricing
Pricing
📝
Signup
Signup
🌐
Console
Console
🔗
Contact
Contact
🔗
About
About
👥
GitHubOrganization
GitHubOrganization
📜
PrivacyPolicy
PrivacyPolicy
📜
TermsOfService
TermsOfService
🔗
LinkedIn
LinkedIn
👥
YouTube
YouTube
💬
Support
Support
💬
FAQ
FAQ
🔗
Security
Security
🔗
Contributing
Contributing
🔗
Press
Press
📰
BlogFeed
BlogFeed
🔗
PythonPackage
PythonPackage
🔗
PythonPackage
PythonPackage
🔗
Vocabulary
Vocabulary
🔗
JSONLD
JSONLD
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
AgentSkills
AgentSkills

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Jentic API
  version: '1'
request:
  auth:
    type: apikey
    key: X-JENTIC-API-KEY
    value: '{{X-JENTIC-API-KEY}}'
    placement: header
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Register A New Jentic Account
      type: http
    http:
      method: POST
      url: https://api.jentic.com/api/v1/auth/register
      body:
        type: json
        data: '{}'
    docs: Registers a new account with the Jentic platform and returns an API key. An optional email address can be provided
      to receive higher rate limits. The returned API key must be stored securely and used in subsequent requests via the
      `X-JENTIC-API-KEY` header.
- info:
    name: Search
    type: folder
  items:
  - info:
      name: Search For APIs And Workflows
      type: http
    http:
      method: POST
      url: https://api.jentic.com/api/v1/agents/search
      body:
        type: json
        data: '{}'
    docs: Searches the Jentic catalog for APIs and workflows that match the provided natural language query. Results are semantically
      ranked based on relevance. Returns operation identifiers prefixed `op_` (single OpenAPI operations) or `wf_` (Arazzo
      workflows) that can be passed to the load and execute endpoints. Supports limiting the number of results returned.
- info:
    name: Execution
    type: folder
  items:
  - info:
      name: Load Execution Information For Operations
      type: http
    http:
      method: POST
      url: https://api.jentic.com/api/v1/agents/load
      body:
        type: json
        data: '{}'
    docs: Retrieves the full execution specification for one or more API operations or Arazzo workflows from the Jentic catalog.
      Returns HTTP method, path, input JSON Schema, authentication requirements, and other metadata needed to call the operation.
      Use the UUIDs returned from the search endpoint.
  - info:
      name: Execute An API Operation Or Workflow
      type: http
    http:
      method: POST
      url: https://api.jentic.com/api/v1/agents/execute
      body:
        type: json
        data: '{}'
    docs: 'Executes a specific API operation or Arazzo workflow through the Jentic platform. Credentials for the upstream
      API are injected server-side by Jentic and are never sent to or stored by the agent. The operation or workflow is identified
      by its UUID, and the required inputs must match the JSON Schema returned by the load endpoint. Supports both single
      OpenAPI operations (`execution_type: operation`) and multi-step Arazzo workflows (`execution_type: workflow`).'
bundled: true