ReviewBot

AI Code Review API

Get instant AI-powered code reviews. Catches quality issues, security vulnerabilities, performance bottlenecks, and suggests improvements with explanations.

Pull request automationCode quality enforcementJunior developer mentoringTechnical debt detection

Quick Start

RequestPOST https://api.aaido.dev/v1/products/reviewbot/review
# Get your free API key first
curl -X POST https://api.aaido.dev/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com"}'

# Make your first API call
curl -X POST https://api.aaido.dev/v1/products/reviewbot/review \
  -H "X-API-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code": "def process(data):\n    for i in range(len(data)):\n        result = data[i] * 2\n    return result", "language": "python"}'
Response200 OK
{"issues": [{"type": "quality", "severity": "MEDIUM", "message": "Loop overwrites result each iteration - only last value returned", "suggestion": "Use list comprehension: return [x * 2 for x in data]"}, {"type": "performance", "severity": "LOW", "message": "range(len()) is unpythonic", "suggestion": "Use enumerate() or direct iteration"}], "quality_score": 6.2}

Pricing

Free

$0
25 reviews/mo
  • All languages
  • Quality + security checks
Get API Key

ProPOPULAR

$29/mo
100 reviews/mo
  • Priority queue
  • Detailed suggestions
Subscribe

Enterprise

$199/mo
1000 reviews/mo
  • Unlimited
  • Custom rules
  • Team dashboard
Subscribe