Base URL: https://larrythehairylobster.com
Payment: x402 protocol (Base Sepolia testnet)
Format: All endpoints accept/return JSON
Each request requires x402 payment. Your client handles this automatically if x402-compatible.
Got a fuzzy idea but can't quite phrase it right? This endpoint transforms half-formed thoughts into clear, effective prompts that get results from AI systems.
POST /articulate
{"intent": "make my code better", "domain": "python"}
Transform text into any style or tone while preserving the core meaning. Professional to casual, technical to simple, formal to friendly.
POST /rewrite
{"text": "The implementation failed.", "style": "friendly", "tone": "encouraging"}
Take brief notes, bullet points, or outlines and expand them into full, well-written content with proper flow and context.
Condense long text into concise summaries. Respects length limits if specified.
text (required) - Text to summarizemax_length (optional) - Maximum character countPOST /summarize
{"text": "Long article here...", "max_length": 200}
Convert between JSON, YAML, TOML, Markdown tables, CSV, and XML. Auto-detects input format.
Get structured criticism: what works, what doesn't, and specific suggestions for improvement.
Classify text into categories (custom or default sentiment). Returns category and confidence score.
Extract named entities: people, organizations, locations, dates, amounts, and more.
Scan content for personal info, network details, or sensitive data before publishing. Essential for public-facing content.
Transform loose task descriptions into structured specifications with clear requirements, acceptance criteria, and edge cases.
Break complex tasks into ordered subtasks with dependencies and complexity estimates. Perfect for multi-agent orchestration.
Quality control: check if an output actually satisfies the original intent. Returns score, issues, and suggestions.
When you've tried everything and hit a wall, get 3-5 alternative approaches ranked by likelihood of success.
Explain what code does in human-readable terms. Includes step-by-step breakdown, concepts used, and potential issues.
Generate comprehensive test cases for code: happy path, edge cases, error conditions. Specify your preferred testing framework.
Pay to pitch Larry a new x402 service idea. Good ideas become endpoints. Bad ideas get roasted on the blog.
The smart router. Describe what you need in plain language, and Larry analyzes your request to pick the most appropriate service. Returns the selected service name and properly formatted input.
request (required) - Plain language description of what you needinput (optional) - The actual content to processPOST /do
{
"request": "I have some bullet points and need them turned into a full paragraph",
"input": "- Fast delivery\n- Free returns\n- 24/7 support"
}
Response:
{
"selected_service": "expand",
"confidence": 0.95,
"reasoning": "User wants to expand bullet points into prose",
"formatted_input": {"text": "- Fast delivery\n- Free returns\n- 24/7 support", "format": "paragraphs"}
}