Money API

AI Text Services for Developers

Rewriting, summarization, SEO content, social media captions, and code assistance. One API, five powerful endpoints. Free tier included.

http://localhost:3950


View Endpoints See Pricing

API Endpoints

All endpoints accept POST requests with JSON body. Authenticate with your API key via the X-API-Key header.

POST /api/rewrite

Text Rewriting

Rewrite any text with a specified tone and style. Perfect for content repurposing, tone adjustment, and improving readability.

# Rewrite text with a professional tone
curl -X POST http://localhost:3950/api/rewrite \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "text": "Hey this product is really cool and you should buy it",
    "tone": "professional",
    "style": "concise"
  }'

Response

{
  "result": "This product delivers exceptional value and is worth your consideration.",
  "tokens_used": 42,
  "model": "gpt-4"
}
POST /api/summarize

Text Summarization

Summarize long text into concise key points. Ideal for articles, reports, meeting notes, and research papers.

# Summarize a long article
curl -X POST http://localhost:3950/api/summarize \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "text": "Your long article text goes here...",
    "max_length": 150,
    "format": "bullets"
  }'

Response

{
  "result": "- Key point one from the article\n- Key point two\n- Key point three",
  "tokens_used": 87,
  "original_length": 2450,
  "summary_length": 148
}
POST /api/seo

SEO Content Generation

Generate SEO-optimized titles, meta descriptions, headings, and content outlines from a topic or existing text.

# Generate SEO content for a topic
curl -X POST http://localhost:3950/api/seo \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "topic": "best AI tools for small businesses 2026",
    "type": "meta",
    "keywords": ["AI tools", "small business", "automation"]
  }'

Response

{
  "title": "12 Best AI Tools for Small Businesses in 2026 | Complete Guide",
  "meta_description": "Discover the top AI tools that help small businesses...",
  "h1": "Best AI Tools for Small Businesses in 2026",
  "outline": ["Introduction", "Selection Criteria", "..."],
  "tokens_used": 156
}
POST /api/social

Social Media Content

Generate platform-specific social media captions, hashtags, and hooks. Supports Twitter/X, LinkedIn, Instagram, and TikTok.

# Generate a Twitter/X post
curl -X POST http://localhost:3950/api/social \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "topic": "Just launched our new AI product",
    "platform": "twitter",
    "tone": "excited",
    "include_hashtags": true
  }'

Response

{
  "result": "We just shipped something big. Our new AI product is live...",
  "hashtags": ["#AI", "#launch", "#buildinpublic"],
  "character_count": 234,
  "tokens_used": 68
}
POST /api/code

Code Assistance

Generate code snippets, explain code, debug errors, and convert between languages. Supports all major programming languages.

# Generate a Python function
curl -X POST http://localhost:3950/api/code \
  -H "Content-Type: application/json" \
  -H "X-API-Key: your-api-key" \
  -d '{
    "task": "generate",
    "description": "Function to calculate compound interest",
    "language": "python"
  }'

Response

{
  "result": "def compound_interest(principal, rate, time, n=12):\n    ...",
  "language": "python",
  "explanation": "Calculates compound interest with optional...",
  "tokens_used": 124
}

Pricing

Start free. Scale as you grow. No surprise charges.

Free

$0/month

Perfect for testing and personal projects

  • 100 requests/month
  • All 5 endpoints
  • 10 requests/minute rate limit
  • Standard response time
  • No credit card required
Get Started Free

Pay As You Go

$0.01/request

Only pay for what you use

  • No monthly fee
  • All 5 endpoints
  • 30 requests/minute rate limit
  • Standard response time
  • Billed monthly
  • Usage dashboard
Get Started

Authentication

Include your API key in the X-API-Key header with every request.

# Include your API key in every request
curl -X POST http://localhost:3950/api/rewrite \
  -H "Content-Type: application/json" \
  -H "X-API-Key: sk_live_your_api_key_here" \
  -d '{"text": "Hello world", "tone": "professional"}'

API keys are generated when you sign up. Keep your key secret — never expose it in client-side code.

Why Money API?

Fast Response Times

Optimized for speed. Most requests complete in under 2 seconds with streaming support coming soon.

🔒

Simple Authentication

One API key. One header. No OAuth complexity. Get started in under a minute.

📈

Usage Dashboard

Track your requests, token usage, and costs in real-time. Paid plans include detailed analytics.

🚀

No Vendor Lock-in

Standard REST API with JSON. Easy to integrate and easy to switch. Your data stays yours.

Frequently Asked Questions

What AI model powers the API?

The API uses state-of-the-art large language models optimized for each specific task. The model selection is handled automatically to give you the best results for each endpoint.

Is there a free tier?

Yes. The free tier includes 100 requests per month across all endpoints. No credit card required to get started.

What's the rate limit?

Free tier: 10 requests/minute. Unlimited plan: 60 requests/minute. Pay As You Go: 30 requests/minute. Contact us for custom higher limits.

How do I authenticate?

Pass your API key in the X-API-Key header with every request. You'll receive your key after signing up.

What programming languages can I use?

Any language that can make HTTP requests. The API is a standard REST API with JSON payloads. Works with Python, JavaScript, Go, Rust, PHP, Ruby, Java, cURL, and anything else.

Is my data stored?

Request data is processed in real-time and not permanently stored. Logs are retained for 30 days for debugging purposes and then automatically deleted.

Can I cancel anytime?

Yes. The Unlimited plan can be cancelled anytime with no penalty. Pay As You Go has no commitment at all.

Start Building with Money API

100 free requests/month. No credit card required. Get your API key in seconds.

Get Your API Key — Free