Roast My Resume
The Roast My Resume API takes a single resume bullet and returns: a formatting observation ("the ratio of leveraged to specifics is concerning"), a recommended rewrite strategy ("Strike owned if you did not, in fact, own anything"), a verdict ("salvageable on the second pass"), a reception estimate, and two remaining questions a recruiter would ask.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
bullet |
string |
Required | — | A single resume bullet. |
Examples
curl -X POST "https://api.stupidapis.com/roast-my-resume/roast" -H "Content-Type: application/json" -d '{"bullet":"Synergized cross-functional teams to drive 30% growth"}'
import requests
response = requests.post(
"https://api.stupidapis.com/roast-my-resume/roast",
json={"bullet": "Synergized cross-functional teams to drive 30% growth"}
)
print(response.json())
const response = await fetch(
"https://api.stupidapis.com/roast-my-resume/roast",
{ method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ bullet: "Synergized cross-functional teams to drive 30% growth" }) }
);
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
bullet |
string |
Echoed back |
formatting_observation |
string |
Critique of structure |
recommended_rewrite_strategy |
string |
How to fix it |
verdict |
string |
Final assessment |
reception_estimate |
string |
How a recruiter will read it |
remaining_questions |
string[] |
Two questions |
Example Response
{
"bullet": "Synergized cross-functional teams to drive 30% growth",
"formatting_observation": "this bullet has more verbs than achievements",
"recommended_rewrite_strategy": "Replace at least one buzzword with a verb someone uses out loud",
"verdict": "salvageable on the second pass",
"reception_estimate": "a recruiter will read this on autopilot. it will land.",
"remaining_questions": [
"what was the team size",
"what was the metric, exactly"
]
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/roast-my-resume/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.