AI Text Services for Developers
Rewriting, summarization, SEO content, social media captions, and code assistance. One API, five powerful endpoints. Free tier included.
All endpoints accept POST requests with JSON body. Authenticate with your API key via the X-API-Key header.
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" }'
{
"result": "This product delivers exceptional value and is worth your consideration.",
"tokens_used": 42,
"model": "gpt-4"
}
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" }'
{
"result": "- Key point one from the article\n- Key point two\n- Key point three",
"tokens_used": 87,
"original_length": 2450,
"summary_length": 148
}
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"] }'
{
"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
}
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 }'
{
"result": "We just shipped something big. Our new AI product is live...",
"hashtags": ["#AI", "#launch", "#buildinpublic"],
"character_count": 234,
"tokens_used": 68
}
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" }'
{
"result": "def compound_interest(principal, rate, time, n=12):\n ...",
"language": "python",
"explanation": "Calculates compound interest with optional...",
"tokens_used": 124
}
Start free. Scale as you grow. No surprise charges.
Perfect for testing and personal projects
For production apps and heavy usage
Only pay for what you use
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.
Optimized for speed. Most requests complete in under 2 seconds with streaming support coming soon.
One API key. One header. No OAuth complexity. Get started in under a minute.
Track your requests, token usage, and costs in real-time. Paid plans include detailed analytics.
Standard REST API with JSON. Easy to integrate and easy to switch. Your data stays yours.
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.
Yes. The free tier includes 100 requests per month across all endpoints. No credit card required to get started.
Free tier: 10 requests/minute. Unlimited plan: 60 requests/minute. Pay As You Go: 30 requests/minute. Contact us for custom higher limits.
Pass your API key in the X-API-Key header with every request. You'll receive your key after signing up.
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.
Request data is processed in real-time and not permanently stored. Logs are retained for 30 days for debugging purposes and then automatically deleted.
Yes. The Unlimited plan can be cancelled anytime with no penalty. Pay As You Go has no commitment at all.