AgentX docs

Integration Overview

AgentX is API-first: the desktop client is just one consumer of the same REST API your own code can call. The backend runs as a Django service (default http://localhost:12319) and the API is the integration surface for everything — chat, memory, agents, tools, and config.

The basics

Base URLhttp://localhost:12319/api/
FormatJSON in, JSON out. POST bodies are application/json.
CORSPreflight (OPTIONS) is handled automatically.
ErrorsFailures return a flat { "error": "message" } body with an HTTP status that reflects the error kind (400, 401, 404, 5xx).

Authentication

Auth is optional and off by default — one server is one user. When the server is started with AGENTX_AUTH_ENABLED=true, every /api/* route requires a session token in the X-Auth-Token header. Obtain one from POST /api/auth/login. See the Authentication guide for the full model.

What you’ll integrate against

  • ChatPOST /api/agent/chat for a single JSON response, or POST /api/agent/chat/stream for token-by-token streaming.
  • Memory — recall and write facts, browse user history, inspect entities/facts.
  • Agents & workflows — agent profiles (/api/agent/profiles) and multi-agent Agent Alloy workflows (/api/alloy/workflows).
  • Tools & providers — MCP servers/tools and model providers.

Jump to the recipes for copy-paste curl, JavaScript, and Python snippets.

Versioning & compatibility

The API advertises a protocol_version (an integer that increments on breaking changes) and a min_client_version. Clients must match the protocol exactly to connect; mismatches are surfaced to users on a dedicated screen. Read the live values from GET /api/version, and see Database Migration for upgrade/compatibility notes.

Full reference

The exhaustive endpoint catalog lives in the API Reference (with request/ response examples) and the API Models reference. A machine-readable OpenAPI 3.0 spec mirroring it lives at OpenApi.yaml in the repo root.

For AI agents

This documentation site is built to be read by agents, not just people. On the hosted site (https://agentx.thejpnet.net):

  • /llms.txt — an agent-oriented index of every doc page, each linking to a Markdown copy.

  • Markdown twins — append .md to any docs URL (e.g. /docs/integrate/overview.md) for the raw Markdown source. Pages also advertise it via <link rel="alternate" type="text/markdown">.

  • Accept: text/markdown — you don’t need the .md suffix. Request any page URL (including the home page) with that header and you get the twin back as text/markdown; charset=utf-8, plus an x-markdown-tokens estimate so you can budget context before reading. HTML stays the default for every other client, and responses carry Vary: Accept. For example:

    curl -H 'Accept: text/markdown' https://agentx.thejpnet.net/docs/features/memory
  • /.well-known/api-catalog — an RFC 9727 linkset pointing at the OpenAPI spec (service-desc) and the API docs (service-doc). The same targets are surfaced as RFC 8288 Link response headers on every page.

  • robots.txt carries Content-Signal directives (search / AI-input / AI-training all allowed).

  • WebMCP — browsers that support it get a search_docs tool exposed on the page, backed by the same search index as ⌘K.

Note these describe the documentation site. The AgentX API itself is self-hosted (you run the server), so there is no central hosted API endpoint, OAuth authorization server, or hosted MCP server to discover — authentication is the optional X-Auth-Token model described above.