Pickup Line

⚡ Generators 🌭🌭 Medium 5,572 calls

The Pickup Line API returns one cheesy pickup line by category. Each line ships with an estimated rejection rate (always high), delivery advice ("commit fully"), and required confidence level ("unreasonable"). The terrible category is, by design, terrible.

Try It — No Seriously

Pickup Line.exe
_ ×
Pickup line category.

Parameters

Parameter Type Required Default Description
category string Optional terrible Pickup line category.

Examples

curl "https://api.stupidapis.com/pickup-line/line?category=nerd"
import requests

response = requests.get(
    "https://api.stupidapis.com/pickup-line/line",
    params={"category": "nerd"}
)
print(response.json())
const response = await fetch(
  "https://api.stupidapis.com/pickup-line/line?category=nerd"
);
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
line string The pickup line
category string Category used
estimated_rejection_rate string Estimated chance of failure
delivery_advice string How to use it
confidence_required string Required level of confidence

Example Response

{
  "line": "Are you HTTPS? Because I trust you with my data.",
  "category": "nerd",
  "estimated_rejection_rate": "78%",
  "delivery_advice": "commit fully. there is no half-commit option.",
  "confidence_required": "unreasonable"
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidapis.com/pickup-line/mcp
POST https://api.stupidapis.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy