SHIP YOUR AGENT

You built it. Now ship it.

Take your Anthropic- or OpenAI-powered agent from your laptop to production in one SDK call. No Dockerfile, no Kubernetes, no glue code.

WORKS WITH: ANTHROPIC SDK · OPENAI SDK

FIVE LINES OF CODE

One SDK call. Three languages. Same result.

agent.tsNode.js
import { Jettson } from "@jettson/sdk";

const jet = new Jettson({ apiKey: process.env.JETTSON_API_KEY! });

// One call. Your agent gets its own Linux computer.
const agent = await jet.agents.spawn({
  task: "Find 10 plumbers in Phoenix with 4.5+ stars and email them.",
  name: "outreach-bot",
});

// Block until the agent finishes. Polls with backoff.
const result = await jet.agents.wait(agent.agent_id);
console.log(result.status, result.output);
agent.pyPython
from jettson import Jettson

jet = Jettson(api_key=os.environ["JETTSON_API_KEY"])

# One call. Your agent gets its own Linux computer.
agent = jet.agents.spawn(
    task="Find 10 plumbers in Phoenix with 4.5+ stars and email them.",
    name="outreach-bot",
)

# Block until the agent finishes. Polls with backoff.
result = jet.agents.wait(agent.agent_id)
print(result.status, result.output)
spawn.shcurl
curl -X POST https://jettson.dev/api/v1/agents \
  -H "Authorization: Bearer $JETTSON_API_KEY" \
  -d '{
    "task": "Find 10 plumbers in Phoenix with 4.5+ stars and email them.",
    "name": "outreach-bot"
  }'

# Poll /api/v1/agents/{agent_id} until status is "completed".

Deploy in 2 minutes

Your first 100 agent-hours are free.