Pricing / Aug 22, 2026

AIWave Pricing: Cache-Aware Forecasting for Chinese AI APIs

Forecast Chinese AI API spend with dated AIWave pricing, cache-hit rows, output caps, retries, and model-family comparisons.

Keyword report: 2026-08-21Tier 1/2 developer focusPrices checked Aug 22, 2026

This guide uses live source checks from Aug 22, 2026. AIWave pricing rows are dated separately where the page publishes a rate date. Recheck provider pages before procurement or monthly forecasting.

The Pricing Search Intent

The 2026-08-21 keyword report includes `aiwave pricing` as a Tier 1 query and recommends stronger pricing sitelinks. The right answer is not a generic discount claim. A developer or finance lead landing on an AI API pricing page wants a forecast they can reproduce: which model, which rate date, how many input tokens, how much cache reuse, how many output tokens, and how retries are counted.

AIWave's live pricing pages checked on Aug 22, 2026 publish DeepSeek V4 all-day rows with a 2026-08-19 rate date. The pricing page lists V4 Flash at $0.638 input, $1.914 output, and $0.0203 cache-hit per 1M tokens. V4 Pro is $1.914 input, $5.742 output, and $0.0638 cache-hit per 1M tokens. The predictable-pricing page also states that official DeepSeek rows are lower and time-window based, while AIWave rows are all-day gateway rates.

Forecast Inputs That Matter

Forecasting starts with token classes, not monthly calls. A support bot that repeats the same knowledge base can have a high cache-hit share. A coding agent that writes long patches may spend more on output. A compliance reviewer may use fewer calls but require higher-reasoning routes. Those patterns should not be flattened into one average request price.

Forecast inputExample fieldWhy it changes the bill
Uncached inputfresh_input_tokensNew context is priced differently from cache-hit input.
Cache-hit inputcached_input_tokensRepeated system and reference context can materially change effective cost.
Outputcompletion_tokensLong answers and patch generation often dominate cost.
Retriesretry_countFailures and schema repairs multiply token use.
Fallbacksfallback_model_idA route change can move the request to a different rate card.
Source daterate_checked_atReproducibility depends on the row used at the time.

A Small Forecasting Function

The following calculation is simple by design. It keeps each token class separate and makes the rate source visible. Use it for pre-dispatch ceilings and monthly planning, then reconcile it with actual provider usage fields after completion.

from dataclasses import dataclass
from openai import OpenAI

client = OpenAI(api_key="YOUR_API_KEY_HERE", base_url="https://aiwave.live/v1")

@dataclass(frozen=True)
class RateCard:
    model: str
    input_per_m: float
    output_per_m: float
    cache_hit_per_m: float
    checked_at: str

FLASH = RateCard("deepseek-v4-flash", 0.638, 1.914, 0.0203, "2026-08-22")
PRO = RateCard("deepseek-v4-pro", 1.914, 5.742, 0.0638, "2026-08-22")

def forecast_usd(card: RateCard, fresh_input: int, cached_input: int, output_cap: int) -> float:
    return (
        fresh_input / 1_000_000 * card.input_per_m
        + cached_input / 1_000_000 * card.cache_hit_per_m
        + output_cap / 1_000_000 * card.output_per_m
    )

print(round(forecast_usd(FLASH, fresh_input=6000, cached_input=18000, output_cap=1400), 6))

Official Rows Are Comparison Inputs

DeepSeek official pricing checked on Aug 22, 2026 lists peak and off-peak rows. For V4 Flash, peak is $0.44 input, $1.32 output, and $0.014 cache-hit per 1M tokens, with off-peak at half. For V4 Pro, peak is $1.32 input, $3.96 output, and $0.044 cache-hit, with off-peak at half. Those rows are useful comparison inputs, but they do not represent the AIWave gateway rate.

For teams evaluating direct provider accounts, the official time window matters. For teams using AIWave, the all-day rate is simpler to model but should be justified by the gateway workflow: one OpenAI-compatible endpoint, one USD billing surface, and access to multiple Chinese model families through a consistent route policy.

Model-Family Comparison Without Overclaiming

A pricing article should compare workload fit without suggesting one route is universally superior. QwenCloud documentation checked during the keyword workflow describes pay-as-you-go pricing, context-aware request billing, failed-call billing behavior, Batch API behavior, context caching, and tool fees. Z.AI's official pricing page lists GLM-5.3, GLM-5.2, and GLM-5.1 rows around $1.40 input, $0.26 cached input, and $4.40 output per 1M tokens, while Kimi K3 public material highlights a 1M-token context and higher output pricing.

That means forecasts should be task-specific. Qwen routes may fit coding tasks, GLM routes may fit reasoning and tool workflows, Kimi routes may fit long-context review, and DeepSeek routes may fit agent planning plus execution splits. The forecast should show volume, cache share, output cap, and route purpose for each task.

Scenario Table for SaaS Teams

Use a scenario table before procurement. It helps engineering, finance, and product argue from the same assumptions instead of from isolated benchmark anecdotes.

ScenarioRoute candidateForecast riskControl
Customer support summariesDeepSeek V4 FlashLong repeated context if cache is not measuredCache-hit ledger and output cap
Architecture reviewDeepSeek V4 Pro or GLM-5.2Reasoning route overuseApproval flag and per-task ceiling
Coding agent patchesQwen coding route or Flash fallbackPatch output expansionDiff-size cap and retry budget
Long policy reviewKimi or GLM routeLarge context and long answersChunking policy and summary reuse
Batch extractionFlash routeRetry loops after schema failuresSchema repair prompt and batch ceiling

Deployment Review Checklist

Before publishing a forecast-driven pricing article, verify that every number has a source date, every comparison distinguishes AIWave gateway rows from direct provider rows, and every example uses placeholder credentials only. Do not make claims about user count, uptime, or procurement terms unless they are verified in the current production system.

After publication, watch whether `aiwave pricing`, `aiwave.live`, and `site:aiwave.live` impressions move toward a clearer click path. The goal is not only ranking. The goal is a reader who can move from pricing to docs to a tested request without needing a sales explanation first.

Source Links

Related AIWave Links