Production-ready AI API endpoints with no per-request cost. Local LLM inference means your data stays private, responses are fast, and your bill stays at zero.
Request Beta AccessNo per-token or per-request fees. Local inference on dedicated hardware means truly free API calls.
Your data never leaves the inference server. No third-party logging, no data retention.
Optimized model serving on Apple Silicon. Low latency responses for real-time applications.
Four powerful endpoints for common NLP tasks, all powered by Qwen3 30B.
Condense long text into clear, concise summaries. Control output length with the max_length parameter.
{
"text": "Your long article or document...",
"max_length": 150
}
{
"summary": "A concise summary of the input text...",
"model": "qwen3-30b",
"tokens_used": 87
}
Extract structured data — entities, key facts, or specific fields — from unstructured text.
{
"text": "John Smith signed the contract on March 5th for $50,000...",
"fields": ["names", "dates", "amounts"]
}
{
"extracted": {
"names": ["John Smith"],
"dates": ["March 5th"],
"amounts": ["$50,000"]
}
}
Rewrite text in a different tone, style, or reading level. Perfect for content adaptation.
{
"text": "The quarterly earnings exceeded expectations...",
"style": "casual",
"language": "en"
}
{
"rewritten": "So the company absolutely crushed it this quarter...",
"original_length": 48,
"new_length": 52
}
Analyze the sentiment and emotional tone of text. Returns a score and breakdown.
{
"text": "This product is absolutely amazing, best purchase I've ever made!"
}
{
"sentiment": "positive",
"score": 0.94,
"emotions": {
"joy": 0.87,
"surprise": 0.12
}
}
Copy these curl commands and start making requests. Replace the base URL and API key with your credentials.
curl -X POST https://<YOUR-API-URL>/api/summarize \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Paste your long text here...",
"max_length": 100
}'
curl -X POST https://<YOUR-API-URL>/api/extract \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Extract entities from this text...",
"fields": ["names", "dates", "locations"]
}'
curl -X POST https://<YOUR-API-URL>/api/sentiment \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "I love this product, it changed my life!"
}'
Simple, transparent, and currently free.
Free during beta period
Forge AI is currently in closed beta. Request access and we'll get you set up.
Send us an email with your use case and expected volume. We'll reply with your API key and base URL.
📧 Request Access via Email