Compliment Generator
The Compliment Generator API returns one wholesome, specific compliment per call ("Your commit messages have main-character energy"; "You return things to where you found them"). Sincerity is a feature. Each ships with a recommended response, like "sit with this."
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|
Examples
curl "https://api.stupidapis.com/compliment-generator/generate"
import requests
response = requests.get("https://api.stupidapis.com/compliment-generator/generate")
print(response.json())
const response = await fetch("https://api.stupidapis.com/compliment-generator/generate");
const data = await response.json();
console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
compliment |
string |
The compliment |
specificity |
string |
Description of the kind |
is_sincere |
boolean |
Always true |
recommended_response |
string |
How to receive it |
Example Response
{
"compliment": "Your commit messages have main-character energy.",
"specificity": "oddly specific",
"is_sincere": true,
"recommended_response": "sit with this"
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/compliment-generator/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.