Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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 Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / AI/ML / Inflection AI API
Inflection AI API logo

Inflection AI API

Official vendor OpenAPI document · agent-readyAI/MLLanguage Modelsbearer7 EndpointsREST

For Agents

Lets an AI agent call Inflection AI language models for chat completions and embeddings, read discovery configurations, and run inference requests.

Use for: I need a chat completion from an Inflection AI model, Create embeddings for a batch of documents, Stream a model response for a conversation, Check which model configurations are available

Not supported: Does not handle fine-tuning, model hosting, or billing. Use it for chat completions, embeddings, and inference only.

Inflection AI provides an API for its language models, covering chat completions, embeddings, and inference. Applications send messages to generate model responses, create vector embeddings for text, and read discovery configurations that describe available options. Legacy inference endpoints, including a streaming variant, remain available for existing integrations.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Inflection AI API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Inflection AI 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Finflection.ai%2Fmain" | sh
2

Step 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%2Finflection.ai%2Fmain" | 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 Inflection AI API.

Generate chat completions from Inflection AI language models

Create vector embeddings for text

Retrieve chat attributes for a conversation

Read discovery configurations for available options

Run legacy inference requests, including streaming

Use Cases

Patterns agents use Inflection AI API for, with concrete tasks.

★ Conversational responses

A product needs model-generated replies inside a chat experience. Inflection AI accepts a sequence of messages and returns a chat completion, so an application can power a conversational feature without hosting a model. Streaming inference is available where a product wants responses to appear incrementally.

Send a conversation history and return the model's chat completion

Text embeddings for search

A retrieval feature needs vector representations of text. Inflection AI creates embeddings for supplied text, letting an application build semantic search or clustering over its own documents. The embeddings endpoint pairs with a vector store the product already runs.

Create embeddings for a set of documents and return the vectors for indexing

AI agent model access

An AI agent needs a language model it can call under governed access. The agent sends prompts for chat completions or embeddings and reads discovery configurations to pick options, with each model operation gated behind what the operator has allowed. The token stays outside the agent's own context.

Read the discovery configurations, then send a prompt to the selected model for a completion

Key Endpoints

7 endpoints — inflection ai provides an api for its language models, covering chat completions, embeddings, and inference.

METHOD

PATH

DESCRIPTION

POST

/v1/chat/completions

Create a chat completion

POST

/v1/embeddings

Create embeddings for text

POST

/v1/chat/attributes

Get chat attributes

GET

/v1/discovery/configs

List discovery configurations

POST

/external/api/inference

Run a legacy inference request

GET

/status

Check service status

POST

/v1/chat/completions

Create a chat completion

POST

/v1/embeddings

Create embeddings for text

POST

/v1/chat/attributes

Get chat attributes

GET

/v1/discovery/configs

List discovery configurations

POST

/external/api/inference

Run a legacy inference request

GET

/status

Check service status

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring Inflection AI by hand means provisioning a bearer token, choosing between the current chat endpoints and the legacy inference paths, and handling streaming responses. Install Jentic One once, import the API from the Jentic API Directory, and store the credential once for your agent to reuse.

Permission scoping

Permission scoping

Scope your agent to the operations it needs, such as chat completions or embeddings, and withhold the rest. You decide which operations are callable, so an agent can generate text without gaining access to every endpoint.

Credential management

Credential isolation

Your Inflection AI token is stored once, encrypted, by your own Jentic One instance and injected only at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents find Inflection AI through Jentic's intent search: a query such as 'generate a chat completion' matches the chat and embeddings operations, which the agent then calls with your stored credential.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

OpenAI

→

Chat completions, embeddings, and a broad model family

Choose OpenAI when the agent needs a wider model range or tooling than Inflection AI

Alternative

Mistral AI

→

Open-weight and hosted language models for chat and embeddings

Choose Mistral when the agent needs open-weight models or a different provider

Complementary

Cohere

→

Embeddings, rerank, and language models for retrieval

Choose Cohere when the agent needs rerank or retrieval-focused embeddings alongside generation

FAQs

Specific to using Inflection AI API through Jentic.

What can an AI agent do with the Inflection AI API?

An agent can generate chat completions, create text embeddings, read chat attributes and discovery configurations, and run inference requests including a streaming variant. It provides governed access to Inflection AI language models.

How does the Inflection AI API authenticate?

It authenticates with a bearer token on requests to its model endpoints, while the service status endpoint is open. Jentic injects the token at execution time so it stays out of the agent's context.

Can I limit what my agent is allowed to do with the Inflection AI API?

Yes. Your Jentic One instance decides which operations an agent may call, so you can allow chat completions while withholding embeddings or the legacy inference endpoints. Nothing outside the operations you allow is reachable.

What operations does the Inflection AI API offer?

It offers chat completions, text embeddings, chat attributes, and discovery configurations, plus legacy inference endpoints including a streaming variant for existing integrations.

How do I connect the Inflection AI API to my AI agent with Jentic?

Install Jentic One with its setup script, import the Inflection AI API from the Jentic API Directory, and store your token once. Your agent can then call the chat and embeddings operations you allow.

GET STARTED

Start building with Inflection AI API

Explore with Jentic One
View OpenAPI Document