Delx Token Budget Split is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).
Splits a model's total context window token budget into system-reserved, output-reserved, and available input token counts
Split a model token budget into system, output reserve, and available input — call when reserving system and output tokens from a context window. Use for SRE/ops math agents buy from broad utility catalogs: SLA, error budget, success rate, and health scores with zero upstream cost. Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, and no claim of live chain tip…
A deterministic JSON object showing the breakdown of the token budget: the system token allocation, the reserved output token count, and the remaining available input tokens calculated as total minus system minus reserved output.
POSThttps://api.delx.ai/api/v1/x402/token-budget-splitUse this endpoint when you need a fast, deterministic, zero-dependency computation to partition a model's context window into its three standard buckets (system, output reserve, available input). Prefer it over manual math in agent code when you want a machine-readable JSON result that can be passed directly to downstream prompt-construction logic. It is especially useful in SRE/ops agents and prompt-engineering pipelines where consistent token budget accounting is needed across many calls at near-zero cost.
| Field | Type | Description |
|---|---|---|
| total_tokens | number | Model context window size in tokens. |
| system_tokens | number | Tokens already reserved for system/instructions. |
| reserved_output_tokens | number | Tokens reserved for model output. |
{
"type": "json",
"example": {
"schema": "delx/util-token-budget-split/v1",
"feasible": true,
"total_tokens": 8000,
"system_tokens": 500,
"available_input_tokens": 6500,
"reserved_output_tokens": 1000
}
}No reviews yet. Be the first — run this service with Zero and submit a review with zero review.
Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"