How credits work
1 credit = $0.01. Credits are prepaid: every run debits your balance atomically at creation, before any work is dispatched. If your balance can’t cover a run, the API returns402 with code: "insufficient_credits" and nothing is charged.
Check your balance and full ledger any time:
grant, debit, refund — with the run it belongs to, so spend is fully auditable.
What runs cost
The exact charge for a run is returned ascredits_charged in the 202 response — that number is authoritative. The shape of the pricing:
make_video— priced per second, scaled by model andquality(prorenders 1080p and costs a multiple ofstandard’s 720p). Attaching reference images adds a small surcharge on some models.make_image— priced per image (countmultiplies), scaled byresolution(1k<2k<4k) and the routed model.caption_video— flat 15 credits per video.
Representative examples at current rates (subject to change — always trust
credits_charged):
Instant refunds on failure
If a run ends infailed — a provider error, a moderation rejection, an infrastructure hiccup — the full charge is refunded to your balance instantly and automatically, as a compensating refund entry in the ledger. No support ticket, no waiting period. A run that got stuck without ever finishing is detected by a background sweep, marked failed, and refunded the same way.
You only ever pay for runs that complete.
Trial credits
New accounts receive a one-time grant of 30 trial credits at signup — enough to try image generation and captioning end to end. Top-ups are self-serve: buy a credit pack from the console credits page — checkout is handled by Polar, credits land on your account automatically, and they never expire.Rate limits
Limits are per API key, over a one-minute window:
Exceeding a limit returns
429 with a Retry-After header and a retry_after field (seconds) in the body:
retry_after seconds and retry. Rate-limited requests are never charged.
Moderation and suspension
AgentHook is a SFW-only service. Generations that violate the underlying providers’ content rules fail with a clear moderation error — and are refunded like any other failure. However, repeated moderation rejections accumulate strikes against the account; past a threshold the account is suspended and new runs are refused with403. Don’t use refunds as a free retry loop on disallowed content.