Dating Bio Generator
The Dating Bio Generator creates dating profile bios calibrated to your specific energy level, from 'low effort' through 'trying too hard' to 'unhinged honesty'. It embeds red flags, detects contradictions in your personality traits, and includes a swipe right probability. Corporate energy mode produces bios that are 94% identical to your LinkedIn. Post-breakup mode includes a vulnerability warning. Every bio includes three things you don't want matches to know.
Try It — No Seriously
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
profession |
string |
Optional | — | Your job. Will be made to sound interesting. |
personality |
string |
Optional | — | Comma-separated traits: adventurous, homebody, foodie, intellectual, creative, etc. |
energy |
string |
Optional | "low_effort" |
Bio energy level. |
dealbreaker |
string |
Optional | — | A dealbreaker to embed awkwardly. |
looking_for |
string |
Optional | — | What you're looking for. |
Examples
curl "https://api.stupidapis.com/tinder-bio/generate?profession=software+engineer&energy=unhinged_honesty&looking_for=not_sure"
import requests
response = requests.get(
"https://api.stupidapis.com/tinder-bio/generate",
params={"profession": "software engineer", "energy": "unhinged_honesty", "looking_for": "not_sure"}
)
print(response.json())
const response = await fetch( "https://api.stupidapis.com/tinder-bio/generate?profession=software+engineer&energy=unhinged_honesty" ); const data = await response.json(); console.log(data);
Response Schema
| Field | Type | Description |
|---|---|---|
bio |
string |
The dating bio |
red_flags_embedded |
number |
Number of red flags |
red_flags |
array |
The specific red flags |
swipe_right_probability |
string |
Swipe right chance, X/100 |
personality_actually_conveyed |
string |
What the bio really says about you |
things_i_dont_want_you_to_know |
array |
Three secrets |
Example Response
{
"bio": "Software engineer. I mass the tests of SchrΓΆdinger: my code works and doesn't work until someone observes it.\n\nLooking for someone who won't ask me to fix their printer.\n\nI don't know what I'm doing here. Literally. This app confuses me.",
"energy": "unhinged_honesty",
"red_flags_embedded": 2,
"red_flags": [
"Mentions work in dating profile",
"Admits to not knowing what they want"
],
"swipe_right_probability": "47/100",
"personality_actually_conveyed": "Someone whose honesty is refreshing but concerning",
"things_i_dont_want_you_to_know": [
"My screen time is 11 hours",
"I have strong opinions about JSON formatting",
"I rehearsed this 'casual' bio for 40 minutes"
]
}
MCP Access
This API is available as an MCP tool for AI assistants. Connect your agent to:
POST https://api.stupidapis.com/tinder-bio/mcp
POST https://api.stupidapis.com/mcp
Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.