Master Dev API

AI-powered API for code bugfixing, optimization, documentation & testing

๐Ÿš€ Get Free API Key on RapidAPI

Key Features

๐Ÿž Bug Fixing

Automatically detect & fix code bugs with Qwen 7B/32B models.

๐Ÿ”’ Security Analysis

Scan code for vulnerabilities and get instant fixes.

โšก Optimization

Get AI-powered performance improvements & clean code.

๐Ÿ“„ Documentation

Generate structured, developer-friendly docs automatically.

๐Ÿงช Unit Tests

Create tests & edge case coverage instantly with AI.

๐ŸŽฏ Custom Prompts

Send custom prompts to 7B/32B models for flexible dev help.

Quickstart Examples

๐Ÿ Python

import requests

url = "https://master-dev-api.p.rapidapi.com/bugfix/7b"
payload = { "input": "function add(a, b { return a + b; }" }
headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "master-dev-api.p.rapidapi.com",
    "Content-Type": "application/json"
}

res = requests.post(url, json=payload, headers=headers)
print(res.json())
          

๐ŸŸฆ Node.js

const axios = require('axios');

const options = {
  method: 'POST',
  url: 'https://master-dev-api.p.rapidapi.com/bugfix/7b',
  headers: {
    'X-RapidAPI-Key': 'YOUR_API_KEY',
    'X-RapidAPI-Host': 'master-dev-api.p.rapidapi.com',
    'Content-Type': 'application/json'
  },
  data: { input: 'function add(a, b { return a + b; }' }
};

axios.request(options)
  .then(res => console.log(res.data))
  .catch(err => console.error(err));
          

Pricing Plans

BASIC

Free

50 req/day
1 concurrent

PRO

$10/mo

500 req/day
2 concurrent

ULTRA

$49/mo

5,000 req/day
3 concurrent

MEGA

$199/mo

50,000 req/day
5 concurrent