API

Agent Execution API

Launch cloud coding agents with a single API call. Pick your agent, choose a model, install skills, and send a prompt. We handle the infrastructure.

One API call

Choose your agent. Choose your model. Choose your skills. Send a prompt.

POST /v1/tasks
curl -X POST https://api.rebyte.ai/v1/tasks \
  -H "API_KEY: rbk_your_key" \
  -H "Content-Type: application/json" \
  -d '{
  "executor":  "claude",            ← agent
  "model":     "claude-sonnet-4.6",   ← model
  "skills":    ["pdf", "data-analysis"], ← skills
  "githubUrl": "owner/repo",
  "prompt":    "Analyze the PDF report and build a dashboard"
}'

Supported Agents

executor

Claude Code claude
Gemini CLI gemini
Codex codex
Rebyte Code opencode

Supported Models

model

claude-sonnet-4.6 Anthropic
claude-opus-4.6 Anthropic
gpt-5.3-codex OpenAI
gemini-3.1-pro Google
gemini-3-flash Google
qwen3-max Open Source
kimi-k2.5 Open Source
minimax-m2.5 Open Source

Skill Ecosystem

skills

pdf Read & extract PDFs
rebyte-app-builder Deploy apps
data-analysis Analyze data
spreadsheet Build spreadsheets
design Generate designs
image Generate images
response.json
{
  "id": "d4e5f6...",
  "workspaceId": "a1b2c3...",
  "url": "https://app.rebyte.ai/run/d4e5f6...",
  "status": "running",
  "createdAt": "2026-03-02T12:00:00Z"
}

Track and interact

Every task returns a live URL where you can watch the agent work in real time. Use the API to send follow-ups, check status, or stop execution.

GET /v1/tasks/:id Poll status
POST /v1/tasks/:id/prompts Follow up
DEL /v1/tasks/:id Stop & clean up
POST /v1/webhooks Async events

Build anything on top of agents

Integrate coding agents into your product, CI pipeline, or internal tooling.

CI/CD Automation

Trigger agents from GitHub Actions, Jenkins, or any CI system. Auto-fix failing tests, generate migration scripts, update dependencies.

Internal Tools

Build Slack bots, Telegram integrations, or custom dashboards that let your team dispatch coding tasks on demand.

SaaS Platforms

Embed coding agent capabilities into your product. Let your users generate apps, reports, or data pipelines from natural language.

Start building with agents

Get your API key in seconds. Run your first coding agent in under a minute.