# modelprices.xyz Oracle OCI LLM Pricing Table

> modelprices.xyz Oracle OCI 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-15).

Returns a ranked table of per-token USD costs (input, output, cache, batch) for every AI model available on Oracle OCI, including context window sizes and capability flags, refreshed hourly.

## Facts

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

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-oracle-oci-llm-pricing-table-bb59df8d
```

Example prompt: Pull the full Oracle OCI LLM pricing table for me — I want to see all models ranked cheapest first with their input, output, cache, and batch costs per million tokens and their context window sizes.

## When to prefer this

Choose this endpoint when you need a complete, normalized, hourly-refreshed snapshot of Oracle OCI LLM token pricing in a single call, especially when comparing costs across all models on that platform or benchmarking Oracle OCI against other providers. Prefer it over scraping Oracle's own pricing pages directly, as it provides pre-normalized, cross-checked data with capability flags and ranking already computed.

## Known failure modes

- Oracle OCI pricing source temporarily unavailable — stale or empty response
- Rate limit or payment failure returns 402 or 429
- Model list may lag actual Oracle OCI catalog if a new model was added within the last hour
- Network timeout if the normalized dataset is large

## How this service works

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

## Output

A structured table of all AI models hosted on Oracle OCI, each row containing the model name, input cost, output cost, cache cost, and batch cost in USD per 1 million tokens, plus context window size and capability flags, sorted ascending by price. Data is cross-checked and refreshed hourly from public Oracle OCI pricing sources.

## 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-oracle-oci-llm-pricing-table-bb59df8d/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)
