A
AutoDev API
LLM-powered review platform

Edge-hosted · Secure · API-first

AI code reviews, docs, and bug reports in one API call.

AutoDev API wires Claude Sonnet 4.6 (with GPT fallbacks) into ready-made endpoints so your platform can ship review bots, doc generators, and CI checks without building LLM infrastructure.

Join the beta Talk to us

What you get

Structured JSON

Each endpoint returns machine-friendly summaries, issues, docs sections, and explanations—no prompt wrangling required.

Rapid integration

REST, curl, SDK snippets, and Postman collections mean you can call the API in minutes.

Usage analytics

Supabase-backed logging, rate limits, and cost tracking so your finance team stays calm.

BYO model roadmap

Anthropic primary today, optional GPT/Gemini and customer-supplied keys on the roadmap for compliance-heavy teams.

Pricing

Free

$0 / forever

  • 750 credits/month (≈25 calls/day)
  • Docs & explain endpoints
  • Community support
  • Top-up packs available

Pro

$25 / month
$19/mo billed annually

  • 3,000 credits/month (Claude Sonnet 4.6)
  • Review / bugs / docs / explain
  • Usage logs, email support, overage packs

Team

$49 / month

  • 15,000 credits/month
  • Webhook + workspace sharing
  • Overage blocks @ $10 / 1,000 credits
  • Priority queue & roadmap access

Use cases

Ship review bots

Plug /v1/review into GitHub Actions or GitLab CI to auto-comment on every pull request with actionable feedback.

Generate docs on save

Build internal documentation bots that watch repositories, call /v1/docs, and publish Markdown to your wiki.

Support teams

Give customer success or SRE teams /v1/explain so they can quickly understand unfamiliar services during incidents.

No-code automations

Trigger AutoDev from Zapier/Make/n8n to review code snippets submitted via forms or Slack.

Roadmap

How it works

  1. Authenticate via Supabase magic link, create an API key.
  2. Send POST requests with code payloads to AutoDev endpoints.
  3. We route to Claude Sonnet 4.6 (or GPT-lite for free tier), validate structured JSON, log usage, and return results.
  4. Track costs and rate limits directly from your dashboard.
curl -X POST https://api.autodevapi.com/v1/review   -H "Authorization: Bearer "   -H "Content-Type: application/json"   -d '{"language":"ts","code":"function add(a,b){return a+b;}"}'