GuidesBilling & Credits

Billing & Credits

ThinkHive uses a credit-based billing system where different operations consume credits based on their computational cost. This guide explains how credits work, how to monitor usage, and how to manage your billing.

How Credits Work

Credits are consumed when you use ThinkHive features that require compute resources:

OperationCredit CostDescription
Trace IngestionFreeSending traces to ThinkHive
Basic Explainability1 creditStandard trace analysis
RAG Evaluation2 creditsGroundedness, faithfulness, citation metrics
Hallucination Detection2 credits9-type hallucination scan
LLM Judge Evaluation1–3 creditsPer-criterion LLM-based evaluation
Jury Evaluation3–5 creditsMulti-model consensus evaluation
Counterfactual Analysis3 creditsWhat-if scenario analysis
Batch AnalysisVariesBulk trace analysis (discounted)

Trace ingestion, case viewing, and dashboard access are always free. Credits are only consumed for AI-powered analysis and evaluation features.

Credit Packs

Purchase credits through the dashboard at SettingsBilling:

PackCreditsBest For
Starter100 creditsTrying out evaluation features
Growth500 creditsRegular quality monitoring
Professional2,000 creditsProduction evaluation pipelines
EnterpriseCustomHigh-volume or dedicated needs

Credits do not expire and roll over between billing periods.

Monitoring Usage

Dashboard

View your credit balance and usage breakdown at SettingsBillingUsage.

The usage dashboard shows:

  • Current Balance — remaining credits
  • Usage Over Time — daily/weekly/monthly consumption chart
  • By Feature — breakdown by operation type
  • By Agent — credits consumed per agent

API

# Check credit balance
curl "https://app.thinkhive.ai/api/v1/billing/balance" \
  -H "Authorization: Bearer thk_your_api_key"

Response:

{
  "balance": 1247,
  "usedThisMonth": 753,
  "planLimit": null,
  "breakdown": {
    "explainability": 320,
    "rag_evaluation": 180,
    "hallucination_detection": 150,
    "llm_judge": 103
  }
}

Low Balance Alerts

Configure alerts when your credit balance drops below a threshold:

  1. Go to SettingsBillingAlerts
  2. Set your threshold (e.g., 100 credits)
  3. Choose notification method (email, webhook)
⚠️

When credits are exhausted, AI-powered features (explainability, evaluation, analysis) will return an error. Trace ingestion and basic dashboard access are not affected.

Stripe Integration

ThinkHive uses Stripe for secure payment processing. You can manage your payment methods, view invoices, and update billing information through the dashboard.

Managing Payment Methods

  1. Navigate to SettingsBillingPayment Methods
  2. Add or update your credit card via the secure Stripe form
  3. Set a default payment method for auto-purchases

Invoices

Download invoices from SettingsBillingInvoices. All invoices are also sent to the account email on file.

Best Practices

  • Monitor usage weekly to avoid unexpected credit depletion
  • Use deterministic graders (free) before LLM judges (paid) in evaluation suites
  • Batch analysis operations for better credit efficiency
  • Set low-balance alerts at 20% of your typical monthly usage
  • Start with a small pack to estimate your actual usage before purchasing larger packs

Next Steps