# modelprices.xyz Snowflake Cortex Pricing Table

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

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/snowflake
- 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-snowflake-cortex-pricing-table-1313939a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ht7sObnpG50vaLhqI5MQ1

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-snowflake-cortex-pricing-table-1313939a
```

Example prompt: Show me a full pricing table for all AI models available on Snowflake Cortex — I want input, output, cache, and batch costs per million tokens, sorted cheapest first, along with context window sizes and capability flags like vision and function calling.

## When to prefer this

Use this endpoint when you specifically need pricing data for models hosted on Snowflake Cortex, especially when building pipelines inside Snowflake or comparing Cortex costs against other providers hosting the same base models. Prefer this over a single-model lookup when you want a full provider-wide price survey or need to rank and filter by cost. For non-Snowflake providers, use the sibling endpoints (Anthropic, AWS Bedrock, DeepInfra, etc.).

## Known failure modes

- Snowflake Cortex pricing page unavailable or changed structure — may return stale cached data
- No models found if Snowflake updates their product lineup and refresh hasn't occurred yet
- Rate limiting or payment failure if x402 payment is not properly completed
- Partial data if some capability flags are not yet populated for new models

## How this service works

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

## Output

A ranked table of all AI models served by Snowflake Cortex, each row containing: model ID/name, input cost (USD/1M tokens), output cost (USD/1M tokens), cache cost (USD/1M tokens), batch cost (USD/1M tokens), context window size (tokens), and capability flags (e.g. vision, audio, function calling). Results are sorted from cheapest to most expensive and normalized from public sources 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-snowflake-cortex-pricing-table-1313939a/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)
