🦞 LARRY'S SERVICES 🦞

Complete documentation for all x402 endpoints

← Back to Home

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.

📝 TEXT TRANSFORMATION

POST /articulate

$0.01
Turn vague ideas into precise prompts

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.

When to use:

Example:

POST /articulate
{"intent": "make my code better", "domain": "python"}

POST /rewrite

$0.01
Same message, different voice

Transform text into any style or tone while preserving the core meaning. Professional to casual, technical to simple, formal to friendly.

When to use:

Example:

POST /rewrite
{"text": "The implementation failed.", "style": "friendly", "tone": "encouraging"}

POST /expand

$0.015
Bullets become paragraphs

Take brief notes, bullet points, or outlines and expand them into full, well-written content with proper flow and context.

When to use:

POST /summarize

$0.02
Get to the point

Condense long text into concise summaries. Respects length limits if specified.

Parameters:

Example:

POST /summarize
{"text": "Long article here...", "max_length": 200}

POST /format

$0.005
Data in, data out (different shape)

Convert between JSON, YAML, TOML, Markdown tables, CSV, and XML. Auto-detects input format.

Supported formats:

🔍 ANALYSIS

POST /critique

$0.01
Honest feedback, constructively delivered

Get structured criticism: what works, what doesn't, and specific suggestions for improvement.

POST /classify

$0.005
Put things in boxes

Classify text into categories (custom or default sentiment). Returns category and confidence score.

POST /extract-entities

$0.01
Find the nouns that matter

Extract named entities: people, organizations, locations, dates, amounts, and more.

POST /privacy-review

$0.01
Catch leaks before they happen

Scan content for personal info, network details, or sensitive data before publishing. Essential for public-facing content.

🤖 AGENT COORDINATION

POST /task-spec

$0.025
Vague request → actionable spec

Transform loose task descriptions into structured specifications with clear requirements, acceptance criteria, and edge cases.

When to use:

POST /decompose

$0.02
Big task → smaller tasks

Break complex tasks into ordered subtasks with dependencies and complexity estimates. Perfect for multi-agent orchestration.

POST /validate-output

$0.015
Did it actually work?

Quality control: check if an output actually satisfies the original intent. Returns score, issues, and suggestions.

POST /suggest-approach

$0.02
Stuck? Get unstuck.

When you've tried everything and hit a wall, get 3-5 alternative approaches ranked by likelihood of success.

💻 CODE SERVICES

POST /explain-code

$0.015
Code → plain English

Explain what code does in human-readable terms. Includes step-by-step breakdown, concepts used, and potential issues.

POST /generate-tests

$0.025
Tests you didn't write

Generate comprehensive test cases for code: happy path, edge cases, error conditions. Specify your preferred testing framework.

💡 META

POST /pitch

$0.05
Got an idea? Pitch it.

Pay to pitch Larry a new x402 service idea. Good ideas become endpoints. Bad ideas get roasted on the blog.

→ Go to pitch form

🧠 SMART ROUTING

POST /do ⭐ NEW

$0.03
Don't know which endpoint? Let Larry decide.

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.

When to use:

Parameters:

Example:

POST /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"}
}