Sim

Cost Calculation

Sim automatically calculates costs for all workflow executions, providing transparent pricing based on AI model usage and execution charges. Understanding these costs helps you optimize workflows and manage your budget effectively.

How Costs Are Calculated

Every workflow execution includes two cost components:

Base Execution Charge: $0.001 per execution

AI Model Usage: Variable cost based on token consumption

modelCost = (inputTokens × inputPrice + outputTokens × outputPrice) / 1,000,000
totalCost = baseExecutionCharge + modelCost

AI model prices are per million tokens. The calculation divides by 1,000,000 to get the actual cost. Workflows without AI blocks only incur the base execution charge.

Model Breakdown in Logs

For workflows using AI blocks, you can view detailed cost information in the logs:

Model Breakdown

The model breakdown shows:

  • Token Usage: Input and output token counts for each model
  • Cost Breakdown: Individual costs per model and operation
  • Model Distribution: Which models were used and how many times
  • Total Cost: Aggregate cost for the entire workflow execution

Pricing Options

Hosted Models - Sim provides API keys with a 2.5x pricing multiplier:

OpenAI

ModelBase Price (Input/Output)Hosted Price (Input/Output)
GPT-5.1$1.25 / $10.00$3.13 / $25.00
GPT-5$1.25 / $10.00$3.13 / $25.00
GPT-5 Mini$0.25 / $2.00$0.63 / $5.00
GPT-5 Nano$0.05 / $0.40$0.13 / $1.00
GPT-4o$2.50 / $10.00$6.25 / $25.00
GPT-4.1$2.00 / $8.00$5.00 / $20.00
GPT-4.1 Mini$0.40 / $1.60$1.00 / $4.00
GPT-4.1 Nano$0.10 / $0.40$0.25 / $1.00
o1$15.00 / $60.00$37.50 / $150.00
o3$2.00 / $8.00$5.00 / $20.00
o4 Mini$1.10 / $4.40$2.75 / $11.00

Anthropic

ModelBase Price (Input/Output)Hosted Price (Input/Output)
Claude Opus 4.5$5.00 / $25.00$12.50 / $62.50
Claude Opus 4.1$15.00 / $75.00$37.50 / $187.50
Claude Sonnet 4.5$3.00 / $15.00$7.50 / $37.50
Claude Sonnet 4.0$3.00 / $15.00$7.50 / $37.50
Claude Haiku 4.5$1.00 / $5.00$2.50 / $12.50

Google

ModelBase Price (Input/Output)Hosted Price (Input/Output)
Gemini 3 Pro Preview$2.00 / $12.00$5.00 / $30.00
Gemini 2.5 Pro$0.15 / $0.60$0.38 / $1.50
Gemini 2.5 Flash$0.15 / $0.60$0.38 / $1.50

The 2.5x multiplier covers infrastructure and API management costs.

Your Own API Keys - Use any model at base pricing:

ProviderExample ModelsInput / Output
DeepseekV3, R1$0.75 / $1.00
xAIGrok 4 Latest, Grok 3$3.00 / $15.00
GroqLlama 4 Scout, Llama 3.3 70B$0.11 / $0.34
CerebrasLlama 4 Scout, Llama 3.3 70B$0.11 / $0.34
OllamaLocal modelsFree
VLLMLocal modelsFree

Pay providers directly with no markup

Pricing shown reflects rates as of September 10, 2025. Check provider documentation for current pricing.

Cost Optimization Strategies

  • Model Selection: Choose models based on task complexity. Simple tasks can use GPT-4.1-nano while complex reasoning might need o1 or Claude Opus.
  • Prompt Engineering: Well-structured, concise prompts reduce token usage without sacrificing quality.
  • Local Models: Use Ollama or VLLM for non-critical tasks to eliminate API costs entirely.
  • Caching and Reuse: Store frequently used results in variables or files to avoid repeated AI model calls.
  • Batch Processing: Process multiple items in a single AI request rather than making individual calls.

Usage Monitoring

Monitor your usage and billing in Settings → Subscription:

  • Current Usage: Real-time usage and costs for the current period
  • Usage Limits: Plan limits with visual progress indicators
  • Billing Details: Projected charges and minimum commitments
  • Plan Management: Upgrade options and billing history

Programmatic Usage Tracking

You can query your current usage and limits programmatically using the API:

Endpoint:

GET /api/users/me/usage-limits

Authentication:

  • Include your API key in the X-API-Key header

Example Request:

curl -X GET -H "X-API-Key: YOUR_API_KEY" -H "Content-Type: application/json" https://sim.ai/api/users/me/usage-limits

Example Response:

{
  "success": true,
  "rateLimit": {
    "sync": {
      "isLimited": false,
      "requestsPerMinute": 25,
      "maxBurst": 50,
      "remaining": 50,
      "resetAt": "2025-09-08T22:51:55.999Z"
    },
    "async": {
      "isLimited": false,
      "requestsPerMinute": 200,
      "maxBurst": 400,
      "remaining": 400,
      "resetAt": "2025-09-08T22:51:56.155Z"
    },
    "authType": "api"
  },
  "usage": {
    "currentPeriodCost": 12.34,
    "limit": 100,
    "plan": "pro"
  }
}

Rate Limit Fields:

  • requestsPerMinute: Sustained rate limit (tokens refill at this rate)
  • maxBurst: Maximum tokens you can accumulate (burst capacity)
  • remaining: Current tokens available (can be up to maxBurst)

Response Fields:

  • currentPeriodCost reflects usage in the current billing period
  • limit is derived from individual limits (Free/Pro) or pooled organization limits (Team/Enterprise)
  • plan is the highest-priority active plan associated with your user

Plan Limits

Different subscription plans have different usage limits:

PlanMonthly Usage LimitRate Limits (per minute)
Free$105 sync, 10 async
Pro$10010 sync, 50 async
Team$500 (pooled)50 sync, 100 async
EnterpriseCustomCustom

Billing Model

Sim uses a base subscription + overage billing model:

How It Works

Pro Plan ($20/month):

  • Monthly subscription includes $20 of usage
  • Usage under $20 → No additional charges
  • Usage over $20 → Pay the overage at month end
  • Example: $35 usage = $20 (subscription) + $15 (overage)

Team Plan ($40/seat/month):

  • Pooled usage across all team members
  • Overage calculated from total team usage
  • Organization owner receives one bill

Enterprise Plans:

  • Fixed monthly price, no overages
  • Custom usage limits per agreement

Threshold Billing

When unbilled overage reaches $50, Sim automatically bills the full unbilled amount.

Example:

  • Day 10: $70 overage → Bill $70 immediately
  • Day 15: Additional $35 usage ($105 total) → Already billed, no action
  • Day 20: Another $50 usage ($155 total, $85 unbilled) → Bill $85 immediately

This spreads large overage charges throughout the month instead of one large bill at period end.

Cost Management Best Practices

  1. Monitor Regularly: Check your usage dashboard frequently to avoid surprises
  2. Set Budgets: Use plan limits as guardrails for your spending
  3. Optimize Workflows: Review high-cost executions and optimize prompts or model selection
  4. Use Appropriate Models: Match model complexity to task requirements
  5. Batch Similar Tasks: Combine multiple requests when possible to reduce overhead

Next Steps

On this page

On this page

Start building today
Trusted by over 60,000 builders.
Build Agentic workflows visually on a drag-and-drop canvas or with natural language.
Get started