◆ Part of Autonomous AI

One API.
Every model.

The OpenAI-compatible inference API for the Autonomous AI ecosystem. Point any OpenAI SDK at one base URL, drop in your key, and ship — streaming, tool calls, wallet-native credits, no lock-in.

Get your API key Read the quickstart
base_url  https://autonomousintelligence.io/v1
01 · Quickstart

Running in 30 seconds.

It's OpenAI-compatible. Change the base URL and key — the rest of your code stays the same. Create a key →

cURL Python Node

  
02 · Models

Three models, one endpoint.

Every model is served through a resilient multi-provider fleet with automatic failover — you get uptime, we handle routing. Common OpenAI ids (like gpt-4o) alias to the closest Jarvis model, so existing code just works.

ModelBest forContext
jarvis-70bFlagship general model (Llama 3.3 70B class). The default.32K
jarvis-8bFast & cheap for high-throughput / simple tasks.128K
jarvis-120bLargest reasoning model for deep tasks.32K
03 · API reference

Endpoints.

POST /v1/chat/completions

Create a chat completion. Set stream:true for token-by-token SSE. Supports temperature, top_p, max_tokens, stop, tools / tool_choice, and response_format.

GET /v1/models

List the available models in the standard OpenAI list shape. Requires your API key.

Example response

    
04 · Authentication

API keys

Every request is authenticated with a bearer key created in your console. Keys are shown once and stored hashed — treat them like passwords, keep them server-side.

# header on every request
Authorization: Bearer jc_live_...
05 · Streaming

Server-Sent Events

With stream:true the response is text/event-stream: standard OpenAI chat.completion.chunk frames, terminated by data: [DONE]. Every OpenAI streaming client parses it out of the box.

data: {"choices":[{"delta":{"content":"Hel"}}]}
data: {"choices":[{"delta":{"content":"lo"}}]}
data: [DONE]
06 · Pricing

Pay in credits. Never expire.

Requests are metered by token against a prepaid credit balance. Start free with monthly credits, then top up by card or crypto. A request that returns no work is never charged.

STARTER
10,000
credits · $10
BUILDER · POPULAR
50,000
credits · $45
PRO
100,000
credits · $80

Business & Enterprise plans available in the console. Free monthly credits during beta.

07 · Rate limits

Fair-use limits

Free / Beta20 req/min
Premium120 req/min
Over limit429 + Retry-After
08 · Errors

OpenAI-shaped

Errors use the standard envelope, so your existing error handling works.

{"error":{"message":"...",
  "type":"invalid_request_error",
  "code":"invalid_api_key"}}

Build on Jarvis Cloud.

Create a key and make your first call in under a minute.

Get your API key →