Embed real-time AI cost estimation into your product, dashboard, or platform — or call the API directly from any agent pipeline.
For developers and platforms who want to power their AI cost intelligence layer.
| Plan | Jobs/month | Per-job | Best for | |
|---|---|---|---|---|
| Free | 5 / day (no account) | $0 | Evaluation, demos | |
| Pro | 250 / month | $0.005 | Individual developers | $5/mo → |
| Scale | 1,000 / month | $0.005 | Teams, products | $20/mo → |
| Per-Job | Pay as you go | $0.005 / job | Agents, pipelines, platforms | Contact → |
| Platform / Enterprise | Custom volume | Custom rate | Embedding in your product | Contact → |
Per-job pricing available for API access after free tier. Contact us for custom volume agreements on 10,000+ jobs/month.
No account needed for the free tier. Just call the endpoint.
# Install
pip install requests
# Estimate cost for a single prompt
import requests, json
payload = {
"job_description": "Your prompt here",
"num_agents": 1,
"estimated_runtime_minutes": 5,
"complexity": "standard", # simple | standard | reasoning | coding
"target_models": ["openai/gpt-4o", "anthropic/claude-sonnet-4-20250514"],
}
resp = requests.post(
"https://api.signalloomai.com/v1/estimate",
json=payload,
).json()
# Response
for model in resp["models"]:
print(f"{model['model']}: ${model['estimated_cost_mid']:.4f}")
# Track usage after the job
requests.post(
"https://api.signalloomai.com/v1/promptcost/jobs/count",
data={"account_key": "your@email.com", "tier": "per_job"}
)
Add LoomLensAI to any website. Perfect for developer tools, SaaS dashboards, and AI platforms.
# Drop this anywhere in your HTML
<iframe
src="https://huggingface.co/spaces/Signalloom-ai/LoomLensAI/embed"
width="100%"
height="600"
style="border:none;border-radius:12px;"
allow="clipboard-write"
></iframe>
The embed uses the free tier by default. To enable Pro for your users, pass your API key as a URL parameter: ?api_key=sl_live_...
Whether you're embedding in a developer tool, powering an AI agent pipeline, or building a platform — LoomLensAI fits in your stack in minutes.
Response time: usually < 2 hours on business days.