AI Platform

One API. Any agent. Swap models, not code.

SentientOne is the agent platform we build and run. Create agents in a dashboard, connect them to your own systems, and call every one of them from a single endpoint.

What it is

An agent orchestration layer.

You create specialised agents in SentientOne — each with its own instructions, model and behaviour — then call them from your web app, mobile app or backend with one POST request.

Your application keeps the business logic. The platform holds the prompts, the model routing, the conversation state and the tool connections, so none of that has to live in your repo.

You handle the business logic. We handle the AI.

How it works

Three steps to a working agent.

Dashboard, key, endpoint. Nothing to install in your application.

  1. 01

    Create an agent

    In the SentientOne dashboard, name the agent, write its system prompt, pick a model (GPT-4o, Claude, others), and set temperature and output format.

  2. 02

    Get your API key

    Copy the key from platform settings. That is how your application authenticates — one header, no SDK to install.

  3. 03

    Call one endpoint

    POST the agent ID and the user's message to /api/chat. SentientOne handles conversation history, prompt assembly and model routing, then returns the reply.

POST /api/chatapi-request.ts
{
  "agent_id": "your-agent-id",
  "message": "What's the status of order ORD-1234?"
}

// Response
{
  "response": "Order ORD-1234 shipped on March 2nd
    via FedEx. Tracking number: 7891234567.
    Expected delivery: March 5th.",
  "agent": "order-agent",
  "model": "gpt-4o",
  "tokens_used": 142
}

One endpoint. Any language. Any platform.

What you can build

From customer chat to internal automation.

The same agent primitive, pointed at different jobs.

Why SentientOne

The complexity stays out of your codebase.

In action

Three agents, one endpoint.

How an e-commerce team splits the work across agents — all reached through /api/chat with different agent IDs.

Get started

Ship an AI feature this week.

Start on SentientOne directly, or book a free 30-minute call and we will map the first agent worth building in your stack.

  1. 01Sign up for SentientOne
  2. 02Create your first agent
  3. 03Call the API
  4. 04Ship the feature