# modelprices.xyz SambaNova Pricing Table

> modelprices.xyz SambaNova 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 available on SambaNova, including input, output, cache, and batch costs in USD per 1M tokens, with context window sizes and capability flags, ranked cheapest first.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/sambanova
- 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-sambanova-pricing-table-5dd110c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OZG6DUh4OOF2InCbaAbcn

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-sambanova-pricing-table-5dd110c4
```

Example prompt: Pull the full SambaNova pricing table right now — I want to see all their models ranked cheapest first with input, output, cache, and batch token costs per million tokens plus context window sizes.

## When to prefer this

Use this endpoint when you specifically need SambaNova's full model pricing table in a single call, want cheapest-first ranking with context window and capability metadata included, or need to compare SambaNova costs against other providers hosting the same model. Prefer this over manual web scraping or provider docs for normalized, cross-checked, hourly-refreshed data.

## Known failure modes

- SambaNova pricing source temporarily unavailable — returns stale or empty data
- Hourly refresh lag may result in pricing data up to 60 minutes old
- Network timeout if modelprices.xyz is unreachable
- Payment failure (x402) if USDC balance is insufficient for the $0.01 call fee

## How this service works

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

## Output

A structured table listing every AI model SambaNova hosts, sorted cheapest first, with columns for input cost, output cost, cache cost, and batch cost (all in USD per 1M tokens), plus context window size and capability flags (e.g. vision, reasoning). 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-sambanova-pricing-table-5dd110c4/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)
