Loading...
Loading...
Docs / Billing
OmegaEngine bills based on Decisions. This page is the canonical spec for how each endpoint consumes Decisions so you can design your agents and workloads with full clarity.
For plan pricing, see the Pricing page · For a human-readable overview, see Billing & Metering.
A Decision is a single evaluation performed by the OmegaEngine API that returns any of the following:
All billing is based on Decisions. We do not bill on tokens, model invocations or opaque “compute units.” Every metered endpoint consumes exactly 1 Decision per billable request — there are no fractional or multiplied weights.
The following endpoints are the complete metered set. Each consumes 1 Decision per billable request; everything else is free:
| Endpoint | Decisions / request | Notes |
|---|---|---|
| /api/authorize | 1 | Execution authorization, risk score, audit ID, and usage snapshot. Only successful live calls are metered — quota-denied attempts and omega_test_ traffic never burn quota. |
| /api/decision | 1 | Full governed decision with the 12-layer pipeline. |
| /api/v2/judge | 1 | Judgment with risk score, safety score, and recommended action. |
| /api/fast-decision | 1 | Low-latency decision path; same meter as a full decision. |
| /api/public/decision | 1 | Public decision endpoint. |
| /api/omega/intelligence | 1 | Governed intelligence verdict. |
| /api/v2/safety-report | 1 | Safety report generation (runs the real engine). |
| /api/v2/scan | 1 | Static analysis scan of prompts, tools, and system instructions. |
| /api/simulate-batch | 1 per decision produced | Batch fan-out: each real decision the batch produces is metered to the caller. |
| Everything else | 0 (free) | Audit log ingestion, receipts, verification, health, and all other endpoints are not metered as Decisions. |
Suppose your support copilot, on average, performs the following for each user turn:
/api/v2/judge/api/authorizeThat’s 1 + 1 = 2 Decisions per turn.
// Pseudocode: estimate Decisions per month
const decisionsPerTurn = 1 // /api/v2/judge
+ 1 // /api/authorize
const monthlyTurns = 10_000;
const estimatedDecisions = decisionsPerTurn * monthlyTurns; // 20,000You are responsible for API usage generated by your keys, agents, scripts and third-party integrations. OmegaEngine surfaces your metered usage in your dashboard so you can audit where every Decision went.
For full legal terms, see the Billing section of our Terms of Service. Billing disputes must be submitted within 7 days of invoice issuance.