# modelprices.xyz Nebius Pricing Table

> modelprices.xyz Nebius 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 USD pricing for every AI model hosted on Nebius, ranked cheapest first, with context window sizes and capability flags.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/nebius
- 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/modelprices-xyz-nebius-pricing-table-cd8f4729
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PYUmSN1FchkjyBD-tAdKH

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 modelprices-xyz-nebius-pricing-table-cd8f4729
```

Example prompt: Pull the full Nebius pricing table from modelprices.xyz — I want to see all their models ranked cheapest first with input, output, cache, and batch token costs in USD per 1M tokens, plus context window sizes.

## When to prefer this

Use this endpoint when you specifically need Nebius provider pricing — either to select a model within the Nebius ecosystem or to benchmark Nebius costs against other providers hosting the same models. Prefer this over the cheapest-model query endpoint when you want the full Nebius catalog rather than a filtered cross-provider leaderboard.

## Known failure modes

- Nebius updates their model lineup and pricing data lags by up to one hour
- Nebius discontinues a model that still appears in the table
- Upstream pricing source temporarily unavailable causing stale or missing data
- Rate limiting or payment failure for the $0.01 USDC per-call fee via x402
- Empty result if Nebius has no publicly listed models at time of query

## How this service works

Nebius pricing table: per-token cost of every AI model Nebius 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 Nebius and against other providers hosting the same model. Normalized from public sources, cross-checked, refreshed hourly.

## Output

A table of all AI models available on Nebius with USD per 1M token costs for input, output, cache, and batch usage, ranked ascending by price, plus context window sizes and capability flags such as tool use and vision support. 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/modelprices-xyz-nebius-pricing-table-cd8f4729/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)
