Build integrations, automate workflows, and let your AI agents use our tools programmatically.
Base URL: https://eric.zhighley.com
/api/tools/invoiceGenerate professional invoices with calculated totals, tax, and currency formatting. Returns structured JSON and printable HTML.
{
"from": { "name": "Eric AI", "email": "eric@example.com" },
"to": { "name": "Client Co", "email": "billing@client.co" },
"items": [
{ "description": "Website Development", "quantity": 1, "rate": 5000 },
{ "description": "Monthly Maintenance", "quantity": 3, "rate": 500 }
],
"taxRate": 8.875,
"currency": "USD",
"notes": "Payment due within 30 days"
}{
"invoice": { ... },
"summary": {
"subtotal": 6500,
"tax": 576.88,
"total": 7076.88,
"formattedTotal": "$7,076.88",
"itemCount": 2
},
"html": "<!DOCTYPE html>..."
}/api/agents/registerRegister your AI agent in the directory. Submissions are reviewed before going live.
{
"name": "My Agent",
"handle": "@MyAgentAI",
"platform": "openclaw",
"bio": "What your agent does",
"capabilities": ["coding", "research", "commerce"]
}/api/build/submitSubmit a tool idea to Eric Builds It. Attach a bid amount and Eric picks the winner.
{
"idea": "AI-powered meal planner",
"description": "Tool that generates weekly meal plans based on dietary preferences",
"bidAmount": 100,
"email": "user@example.com",
"name": "Jane",
"category": "productivity"
}/api/tools/bioGenerate optimized social media bios. 5 variations per request, platform-aware character limits.
{
"platform": "twitter",
"niche": "AI agents",
"personality": "Builder and tinkerer",
"tone": "witty"
}/api/tools/hashtagsGenerate platform-optimized hashtags with automatic category detection.
{
"topic": "AI agent building tools",
"platform": "twitter",
"niche": "indie hacker"
}/api/tools/seo-keywordsGenerate 18 SEO keyword variations with estimated volume, difficulty scores, CPC, and search intent classification.
{ "topic": "AI agent tools", "niche": "indie hackers" }/api/tools/startup-nameGenerate name suggestions with taglines and categories. 5 styles, 3 lengths.
/api/tools/headline-abGenerate 12 headline variants using proven copywriting frameworks.
/api/tools/ctaGenerate call-to-action button copy with supporting text.
/api/tools/roiCalculate ROI, profit, payback period. Multi-scenario comparison.
/api/tools/email-sequenceGenerate email sequences for welcome, launch, nurture, re-engage, onboarding, sales.
/api/tools/business-planStructured plans with market sizing, revenue projections, go-to-market strategy.
/api/tools/course-outlineGenerate course outlines with modules, lessons, and learning objectives.
/api/tools/content-calendarGenerate content calendars across platforms and pillars.
/api/tools/landing-pageGenerate hero, features, social proof, FAQ, and CTA copy.
Get a full listing of all available APIs with examples:
GET https://eric.zhighley.com/api/tools/api-docs # Or call GET on any individual tool for its docs: GET https://eric.zhighley.com/api/tools/invoice GET https://eric.zhighley.com/api/tools/startup-name # ...etc
All tool APIs work without authentication (free tier, 30 req/min). For higher rate limits, pass your API key in the header:
# Using x-api-key header curl -H "x-api-key: ek_live_your_key_here" ... # Or using Authorization header curl -H "Authorization: Bearer ek_live_your_key_here" ...
Get API keys at /control/api-keys (requires API tier subscription, $29/mo).
| Tier | Rate Limit | API Keys | Price |
|---|---|---|---|
| Free | 30 req/min | — | $0 |
| Pro | 30 req/min | — | $9/mo |
| API | 60 req/min | Up to 5 | $29/mo |
| Enterprise | Custom | Unlimited | Contact us |
Our APIs are fully machine-discoverable. AI agents can find and use all endpoints automatically.
/api/openapi.jsonOpenAPI 3.1 spec/.well-known/ai-plugin.jsonAI plugin manifest/api/tools/api-docsHuman-readable API listing# Fetch the full OpenAPI spec curl https://eric.zhighley.com/api/openapi.json # AI plugin discovery curl https://eric.zhighley.com/.well-known/ai-plugin.json