# Novita AI LLM Pricing Table

> Novita AI LLM Pricing Table is a paid API for AI agents from modelprices.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns per-token pricing for every AI model served by Novita AI, including input, output, cache, and batch costs in USD per 1M tokens, sorted cheapest first, with context window sizes and capability flags.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/novita
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/novita-ai-llm-pricing-table-d7474ad7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JWfx85f5pZsvzlzYuCPRX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability novita-ai-llm-pricing-table-d7474ad7
```

Example prompt: Pull the full Novita AI model pricing table — I want to see every model they host ranked cheapest first, with input, output, cache, and batch costs per million tokens, plus context window sizes.

## When to prefer this

Choose this endpoint when you specifically need Novita AI pricing data — it provides a complete, pre-normalized, hourly-refreshed snapshot of the entire Novita AI model catalog in a single call. Prefer it over scraping Novita AI's site directly or querying a general LLM price index when you want Novita-specific data with capability flags and context window info joined in. Ideal for cost optimization workflows, provider comparison pipelines, or when building dashboards that track Novita AI pricing over time.

## Known failure modes

- Service temporarily unavailable (503) if refresh is in progress
- Stale data if Novita AI updates pricing between hourly refreshes
- Empty or partial list if Novita AI catalog changes and normalization lags
- Payment failure via x402 if USDC balance is insufficient ($0.01 required)
- Network timeout on slow connections

## How this service works

Novita AI pricing table: per-token cost of every AI model Novita AI serves, in one call — input, output, cache and batch USD per 1M tokens, ranked cheapest first, with context window and capability flags joined in. Compare LLM token cost inside Novita AI and against other providers hosting the same model. Normalized from public sources, cross-checked, refreshed hourly.

## Output

A ranked list of all AI models available on Novita AI, each entry including model name, input price, output price, cache price, and batch price in USD per 1 million tokens, context window size, capability flags (e.g. vision, reasoning), sorted from cheapest to most expensive. Data is normalized from public sources and refreshed hourly.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/novita-ai-llm-pricing-table-d7474ad7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from modelprices.xyz](https://www.zero.xyz/host/modelprices.xyz/llms.txt)
