From 3454ac252680807f89620622fff5ab7be161915e Mon Sep 17 00:00:00 2001 From: "ton.gggg" Date: Sun, 7 Jun 2026 14:47:11 +0800 Subject: [PATCH 1/3] feat(v1.5): contribution CTA, MCP server, agent docs, SVG charts, GH Pages dashboard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three additive feature groups on top of v1 price observatory: A) Lower contribution friction - README "Want your relay listed?" section (en/zh-TW/zh-CN) above price snapshot Surfaces issue template + PR path; sets expectation that status=unverified is normal - Enhanced .github/PULL_REQUEST_TEMPLATE.md with schema CI mention + operator disclosure field - New .github/workflows/pr-validate.yml runs scripts.validate on every PR touching data/, fetchers/, scripts/, or pyproject.toml — catches typos before human review B) Agent integration layer - New mcp/ package: awesome-ai-api-proxy-mcp (separate PyPI dist) Six tools: list_providers, list_canonical_models, get_price, find_cheapest, compare, tier_overview + data://prices/latest resource. FastMCP, stdio. Branch override via AWESOME_AI_API_PROXY_REF env var for dev/staging. - docs/agent-integration.md: one-page reference for MCP / OpenAI function calling / LangChain / direct HTTP / pandas+DuckDB / n8n. Same question ("cheapest claude-sonnet-4.6") across all six examples for friction comparison. - scripts/build_prices.py now also writes prices.latest.csv + prices.latest.parquet for analyst-friendly access (gated on [charts] extra) C) Visualization - scripts/build_charts.py generates SVG via matplotlib: - tier-ladder bar chart (input + output) with log y-axis and per-bar labels - cost-spread heatmap (rows=canonical, cols=providers, log color scale) - README embeds tier-ladder-input.svg inside the prices markers - docs/index.html: GitHub Pages dashboard (vanilla HTML + Plotly CDN, no build step) reads raw prices.latest.json, renders interactive grouped bars + heatmap + filterable record table. docs/.nojekyll keeps it served raw. - Weekly workflow now installs [charts] extra and runs build_charts after build_prices, before validate. All v1 fetchers still pass (3/3 fetchers, 1024 records, 47 canonical matches). Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/PULL_REQUEST_TEMPLATE.md | 25 +- .github/workflows/pr-validate.yml | 32 ++ .github/workflows/price-refresh.yml | 7 +- README.md | 22 ++ README.zh-CN.md | 21 ++ README.zh-TW.md | 21 ++ docs/.nojekyll | 0 docs/agent-integration.md | 252 +++++++++++++++ docs/index.html | 320 +++++++++++++++++++ mcp/README.md | 98 ++++++ mcp/pyproject.toml | 39 +++ mcp/src/awesome_ai_api_proxy_mcp/__init__.py | 9 + mcp/src/awesome_ai_api_proxy_mcp/server.py | 220 +++++++++++++ pyproject.toml | 1 + scripts/build_charts.py | 240 ++++++++++++++ scripts/build_prices.py | 32 ++ 16 files changed, 1332 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/pr-validate.yml create mode 100644 docs/.nojekyll create mode 100644 docs/agent-integration.md create mode 100644 docs/index.html create mode 100644 mcp/README.md create mode 100644 mcp/pyproject.toml create mode 100644 mcp/src/awesome_ai_api_proxy_mcp/__init__.py create mode 100644 mcp/src/awesome_ai_api_proxy_mcp/server.py create mode 100644 scripts/build_charts.py diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d330210..1e460a8 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,9 @@ - + ## What this changes @@ -6,13 +11,23 @@ ## Checklist -- [ ] Edited `data/providers.yaml` (not the README tables directly) +- [ ] Edited `data/providers.yaml` only (not the README tables — they auto-regenerate) - [ ] Followed [`data/schema.md`](../data/schema.md) -- [ ] `status` honest (`unverified` if I couldn't verify it myself) -- [ ] No referral/affiliate links, no marketing copy +- [ ] `status: unverified` if I cannot independently verify (self-submissions default to this) +- [ ] No referral / affiliate links, no marketing copy +- [ ] `notes` is one factual sentence - [ ] Claims have a dated source where non-obvious -- [ ] Bumped `last_reviewed` if this was a broad pass +- [ ] If adding a price fetcher: created `fetchers/.py`, registered in `fetchers/__init__.REGISTRY`, added aliases to `data/canonical-models.yaml` ## Source / verification + +## Are you the operator of this station? (Optional) + + + +--- + +> **Schema CI ([pr-validate.yml](../.github/workflows/pr-validate.yml)) runs on every change to `data/`, `fetchers/`, `scripts/`, or `pyproject.toml`.** +> If you see a red ✗, scroll to the action log — it usually points to the exact field. Fix and push; CI re-runs automatically. diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml new file mode 100644 index 0000000..37097b1 --- /dev/null +++ b/.github/workflows/pr-validate.yml @@ -0,0 +1,32 @@ +name: Validate PR + +# Runs scripts/validate.py on every PR touching the data layer or tooling. +# Catches typos / invalid schema / bad units before a human maintainer sees the PR. + +on: + pull_request: + paths: + - "data/**" + - "fetchers/**" + - "scripts/**" + - "pyproject.toml" + workflow_dispatch: + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + cache: pip + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -e . + + - name: Validate schemas + run: python -m scripts.validate diff --git a/.github/workflows/price-refresh.yml b/.github/workflows/price-refresh.yml index 953cdce..6ac0b25 100644 --- a/.github/workflows/price-refresh.yml +++ b/.github/workflows/price-refresh.yml @@ -28,15 +28,18 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e . + pip install -e ".[charts]" - name: Scrape all fetchers id: scrape run: python -m scripts.scrape - - name: Build prices + - name: Build prices (+ CSV/Parquet exports) run: python -m scripts.build_prices + - name: Build charts (SVG) + run: python -m scripts.build_charts + - name: Validate run: python -m scripts.validate diff --git a/README.md b/README.md index 34de430..7a85822 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Contributions welcome — see [CONTRIBUTING.md](CONTRIBUTING.md) - [Global gateways & aggregators](#global-gateways--aggregators) - [Self-hosted alternatives](#self-hosted-alternatives) - [Comparison & monitoring tools](#comparison--monitoring-tools) +- [Want your relay listed?](#want-your-relay-listed) - [Price snapshot (weekly)](#price-snapshot-weekly) - [How to choose one safely](#how-to-choose-one-safely) - [For AI agents & programmatic use](#for-ai-agents--programmatic-use) @@ -125,6 +126,23 @@ You give up the relay's Alipay/WeChat convenience and accept ops overhead. | [中轉站競技場 (AI API PK)](https://www.aiapipk.com) | Price wall across OpenAI / Reverse / Claude / DeepSeek for ~40 stations. | | [awesome-ai-proxy (mn-api)](https://github.com/mn-api/awesome-ai-proxy) | The original list (~31 stations). **Unmaintained as of 2026** — this repo aims to continue the effort. | +## Want your relay listed? + +We accept community submissions, **including from relay operators themselves**. +Two paths — pick whichever is easier: + +- **One-click issue:** [Open a new-provider issue](https://github.com/howardpen9/awesome-ai-api-proxy/issues/new?template=new-provider.md) — fill the form, a maintainer adds it. +- **Direct PR:** edit [`data/providers.yaml`](data/providers.yaml) only (READMEs auto-regenerate). See [CONTRIBUTING.md](CONTRIBUTING.md) for the schema; the [PR template](.github/pull_request_template.md) has a one-glance checklist. + +**Default status is `unverified`** until a maintainer runs a canary against your station. +That's not a rejection — it just means the entry says "community-listed, not independently confirmed." +After verification (typically <2 weeks) status flips to `active` with `last_verified` set. + +We never accept referral links or marketing copy. We do accept honest entries +from operators — one factual sentence in `notes`, no superlatives. + +> **Schema CI runs on every PR** ([pr-validate workflow](.github/workflows/pr-validate.yml)) — if you mis-spell a field or use an invalid `type`, the bot will tell you before a human gets there. + ## Price snapshot (weekly) > Why tier groups: the top 10 frontier models span a **10× cost spread** @@ -140,6 +158,10 @@ You give up the relay's Alipay/WeChat convenience and accept ops overhead. _Snapshot date: **2026-06-07**. 1024 price records across 3 fetched providers. **Reference column** is OpenRouter (officially-authorized, ~5% markup). ⚠ = relay quotes <50% of OpenRouter — verify with [canary prompts](docs/canary-prompts.md) before trusting._ +![Tier-ladder input pricing](assets/charts/tier-ladder-input.svg) + +_More charts (output pricing, cost-spread heatmaps): [`assets/charts/`](assets/charts/). Interactive dashboard: ._ + ### Tier 1 — cheapest viable (routine, batch summaries) — USD per 1M input tokens | Model | OpenRouter (ref) | Atlas Cloud | Relaydance | diff --git a/README.zh-CN.md b/README.zh-CN.md index 9f79d21..ac36ea8 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -18,6 +18,7 @@ - [海外网关与聚合平台](#海外网关与聚合平台) - [自托管替代方案](#自托管替代方案) - [对比与监控工具](#对比与监控工具) +- [想被收录吗?](#想被收录吗) - [价格快照(每周更新)](#价格快照每周更新) - [如何安全地挑选](#如何安全地挑选) - [给 AI agent 与程序化使用](#给-ai-agent-与程序化使用) @@ -112,6 +113,22 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中转站 | [中转站竞技场 (AI API PK)](https://www.aiapipk.com) | 约 40 家站点的 OpenAI / 逆向 / Claude / DeepSeek 报价墙。 | | [awesome-ai-proxy (mn-api)](https://github.com/mn-api/awesome-ai-proxy) | 最早的清单(约 31 家)。**2026 年起已停更** —— 本仓库延续这一工作。 | +## 想被收录吗? + +欢迎社区提交 —— **包括中转站运营者本人**。两种路径,挑简单的: + +- **一键 issue:**[开新中转站 issue](https://github.com/howardpen9/awesome-ai-api-proxy/issues/new?template=new-provider.md) —— 填表单、维护者会加入。 +- **直接 PR:**只改 [`data/providers.yaml`](data/providers.yaml)(README 表格自动重新生成)。schema 见 [CONTRIBUTING.md](CONTRIBUTING.md);[PR template](.github/pull_request_template.md) 有逐项 checklist。 + +**默认 `status: unverified`**,直到维护者亲自跑一次 canary。这不是拒绝 —— +只是表示"社区登录、未独立确认"。通常 2 周内验证完,状态改成 `active`、 +写入 `last_verified`。 + +我们不收 referral 链接、不收营销文案。但**接受运营者自荐**—— +`notes` 写一句事实、不要最高级形容词就好。 + +> **每个 PR 自动跑 schema CI**([pr-validate workflow](.github/workflows/pr-validate.yml))—— 字段拼错或 `type` 不合法,bot 会先告诉你、不用等维护者抓。 + ## 价格快照(每周更新) > 为什么按 tier 分组:顶尖 10 个前沿模型价格相差 **10 倍** @@ -126,6 +143,10 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中转站 _Snapshot date: **2026-06-07**. 1024 price records across 3 fetched providers. **Reference column** is OpenRouter (officially-authorized, ~5% markup). ⚠ = relay quotes <50% of OpenRouter — verify with [canary prompts](docs/canary-prompts.md) before trusting._ +![Tier-ladder input pricing](assets/charts/tier-ladder-input.svg) + +_More charts (output pricing, cost-spread heatmaps): [`assets/charts/`](assets/charts/). Interactive dashboard: ._ + ### Tier 1 — cheapest viable (routine, batch summaries) — USD per 1M input tokens | Model | OpenRouter (ref) | Atlas Cloud | Relaydance | diff --git a/README.zh-TW.md b/README.zh-TW.md index bd01f51..eace411 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -18,6 +18,7 @@ - [海外閘道與聚合平台](#海外閘道與聚合平台) - [自架替代方案](#自架替代方案) - [對比與監控工具](#對比與監控工具) +- [想被收錄嗎?](#想被收錄嗎) - [價格快照(每週更新)](#價格快照每週更新) - [如何安全地挑選](#如何安全地挑選) - [給 AI agent 與程式化使用](#給-ai-agent-與程式化使用) @@ -112,6 +113,22 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中轉站 | [中轉站競技場 (AI API PK)](https://www.aiapipk.com) | 約 40 家站點的 OpenAI / 逆向 / Claude / DeepSeek 報價牆。 | | [awesome-ai-proxy (mn-api)](https://github.com/mn-api/awesome-ai-proxy) | 最早的清單(約 31 家)。**2026 年起已停更** —— 本倉庫延續這項工作。 | +## 想被收錄嗎? + +歡迎社群提交 —— **包括中轉站營運者本人**。兩種路徑,挑簡單的: + +- **一鍵 issue:**[開新中轉站 issue](https://github.com/howardpen9/awesome-ai-api-proxy/issues/new?template=new-provider.md) —— 填表單、維護者會加入。 +- **直接 PR:**只改 [`data/providers.yaml`](data/providers.yaml)(README 表格自動重新生成)。schema 見 [CONTRIBUTING.md](CONTRIBUTING.md);[PR template](.github/pull_request_template.md) 有逐項 checklist。 + +**預設 `status: unverified`**,直到維護者親自跑一次 canary。這不是拒絕 —— +只是表示「社群登錄、未獨立確認」。通常 2 週內驗證完,狀態改成 `active`、 +寫入 `last_verified`。 + +我們不收 referral 連結、不收行銷文案。但**接受營運者自薦**—— +`notes` 寫一句事實、不要最高級形容詞就好。 + +> **每個 PR 自動跑 schema CI**([pr-validate workflow](.github/workflows/pr-validate.yml))—— 欄位拼錯或 `type` 不合法,bot 會先告訴你、不用等維護者抓。 + ## 價格快照(每週更新) > 為什麼按 tier 分組:頂尖 10 個前沿模型的價格相差 **10 倍** @@ -126,6 +143,10 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中轉站 _Snapshot date: **2026-06-07**. 1024 price records across 3 fetched providers. **Reference column** is OpenRouter (officially-authorized, ~5% markup). ⚠ = relay quotes <50% of OpenRouter — verify with [canary prompts](docs/canary-prompts.md) before trusting._ +![Tier-ladder input pricing](assets/charts/tier-ladder-input.svg) + +_More charts (output pricing, cost-spread heatmaps): [`assets/charts/`](assets/charts/). Interactive dashboard: ._ + ### Tier 1 — cheapest viable (routine, batch summaries) — USD per 1M input tokens | Model | OpenRouter (ref) | Atlas Cloud | Relaydance | diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/docs/agent-integration.md b/docs/agent-integration.md new file mode 100644 index 0000000..ff52975 --- /dev/null +++ b/docs/agent-integration.md @@ -0,0 +1,252 @@ +# Agent integration + +How to plug the **weekly AI API relay price observatory** into LLM agents, +research scripts, or automation tools. + +Every example answers the same question — *"What's the cheapest provider for +`claude-sonnet-4.6` (input)?"* — so you can directly compare friction. + +The data layer behind all of these is one stable file: +`https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json` + +Each record carries `provider_id`, `raw_model_name`, `canonical_model`, `unit`, +`price_usd`, `source_url`, `captured_at`, `method` — the **citation envelope**. +Always pass `source_url` + `captured_at` through to the user so they can verify. + +--- + +## 1. MCP server (recommended for Claude Desktop / Cline / Cursor) + +Install once, then **the model picks the right tool automatically** — no glue +code per question. + +```json +// ~/Library/Application Support/Claude/claude_desktop_config.json +{ + "mcpServers": { + "awesome-ai-api-proxy": { + "command": "uvx", + "args": ["awesome-ai-api-proxy-mcp"] + } + } +} +``` + +Then in Claude Desktop: + +> **You:** What's the cheapest provider for `claude-sonnet-4.6` input? +> +> **Claude (silently calls `find_cheapest("claude-sonnet-4.6")`):** Atlas Cloud +> and OpenRouter both list it at $3.00/1M tokens as of 2026-06-07 +> (source: ). + +Full tool list in [`mcp/README.md`](../mcp/README.md). + +--- + +## 2. OpenAI function calling + +Drop these tool schemas straight into the `tools=[...]` array of an OpenAI +Chat Completions or Responses call. The function bodies fetch the JSON directly +— no extra service to host. + +```python +import json +import httpx +from openai import OpenAI + +PRICES_URL = "https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json" + +tools = [ + { + "type": "function", + "function": { + "name": "find_cheapest_relay", + "description": "Find the cheapest AI API relay/gateway providing a given canonical model. Returns price + provenance (source_url, captured_at).", + "parameters": { + "type": "object", + "properties": { + "canonical_model": { + "type": "string", + "description": "e.g. claude-sonnet-4.6, grok-4.3, deepseek-v3", + }, + "unit": { + "type": "string", + "enum": [ + "per_1m_input_tokens", + "per_1m_output_tokens", + "per_image", + "per_second", + ], + "default": "per_1m_input_tokens", + }, + }, + "required": ["canonical_model"], + }, + }, + } +] + + +def find_cheapest_relay(canonical_model: str, unit: str = "per_1m_input_tokens") -> dict: + data = httpx.get(PRICES_URL, timeout=20).json() + matches = [ + r + for r in data["records"] + if r.get("canonical_model") == canonical_model and r["unit"] == unit + ] + if not matches: + return {"error": f"No data for {canonical_model}/{unit}"} + return min(matches, key=lambda r: r["price_usd"]) + + +client = OpenAI() +msg = client.chat.completions.create( + model="gpt-5.4", + messages=[{"role": "user", "content": "Cheapest claude-sonnet-4.6 input?"}], + tools=tools, +) + +# Then handle the tool call as usual: +for call in msg.choices[0].message.tool_calls or []: + if call.function.name == "find_cheapest_relay": + args = json.loads(call.function.arguments) + result = find_cheapest_relay(**args) + print(result) +``` + +--- + +## 3. LangChain tools + +```python +import httpx +from langchain.tools import StructuredTool +from pydantic import BaseModel, Field + +PRICES_URL = "https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json" + + +class FindCheapestRelayInput(BaseModel): + canonical_model: str = Field(description="e.g. claude-sonnet-4.6, grok-4.3, deepseek-v3") + unit: str = Field(default="per_1m_input_tokens", description="per_1m_input_tokens | per_1m_output_tokens | per_image | per_second") + + +def _find_cheapest_relay(canonical_model: str, unit: str = "per_1m_input_tokens") -> dict: + data = httpx.get(PRICES_URL, timeout=20).json() + matches = [ + r for r in data["records"] + if r.get("canonical_model") == canonical_model and r["unit"] == unit + ] + if not matches: + return {"error": f"No data for {canonical_model}/{unit}"} + return min(matches, key=lambda r: r["price_usd"]) + + +find_cheapest_relay = StructuredTool.from_function( + func=_find_cheapest_relay, + name="find_cheapest_relay", + description="Find the cheapest AI API relay providing a canonical model. Returns price + provenance.", + args_schema=FindCheapestRelayInput, +) + +# Pass to your agent: +# from langchain.agents import create_openai_functions_agent +# agent = create_openai_functions_agent(llm, [find_cheapest_relay], prompt) +``` + +--- + +## 4. Direct HTTP (no framework) + +The "I just want the numbers" path. + +```python +import httpx +data = httpx.get( + "https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json" +).json() + +for rec in data["records"]: + if rec.get("canonical_model") == "claude-sonnet-4.6" and rec["unit"] == "per_1m_input_tokens": + print(f"{rec['provider_name']:15s} ${rec['price_usd']:.3f}/1M ({rec['captured_at']})") +``` + +```bash +# Or via jq from the shell: +curl -s https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json \ + | jq '.records[] | select(.canonical_model == "claude-sonnet-4.6" and .unit == "per_1m_input_tokens")' +``` + +--- + +## 5. CSV / Excel / Google Sheets + +`data/prices.latest.csv` is regenerated weekly alongside the JSON. Open it in +Excel / Google Sheets / DuckDB: + +```python +import pandas as pd +df = pd.read_csv( + "https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.csv" +) +cheapest = df[(df.canonical_model == "claude-sonnet-4.6") & (df.unit == "per_1m_input_tokens")] \ + .sort_values("price_usd").iloc[0] +print(cheapest[["provider_name", "price_usd", "captured_at"]]) +``` + +```sql +-- DuckDB +SELECT provider_name, price_usd, captured_at +FROM 'https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.csv' +WHERE canonical_model = 'claude-sonnet-4.6' AND unit = 'per_1m_input_tokens' +ORDER BY price_usd ASC LIMIT 1; +``` + +--- + +## 6. n8n / Make / Zapier + +Use an HTTP GET node pointing at the raw URL: + +- **URL:** `https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json` +- **Method:** GET +- **No auth needed** + +Then a JS / filter node: + +```javascript +const records = $json.records || []; +const matches = records.filter( + r => r.canonical_model === "claude-sonnet-4.6" && r.unit === "per_1m_input_tokens" +); +const cheapest = matches.sort((a, b) => a.price_usd - b.price_usd)[0]; +return cheapest; +``` + +--- + +## Citation rules + +Whenever an agent quotes a price, include both `captured_at` and `source_url`: + +> ✅ **Good:** Relaydance lists `grok-4.3` input at **$1.125/1M tokens** as of +> 2026-06-07 (source: ). +> +> ❌ **Bad:** Relaydance has the cheapest grok-4.3. +> *(no date, no source — user can't verify, may already be wrong)* + +The repo's [license](../LICENSE) is MIT — quote freely with attribution. + +## What if a model isn't in the canonical list? + +The canonical list is just the **headline 9** (cost-tier ladder for the README +table). The raw `prices.latest.json` contains every model every fetcher saw — +1000+ records as of v1. Filter on `raw_model_name` instead of `canonical_model`: + +```python +matches = [r for r in data["records"] if "qwen3-coder" in r["raw_model_name"].lower()] +``` + +To add a model to the canonical list (so it appears in the README), open a PR +adding aliases to [`data/canonical-models.yaml`](../data/canonical-models.yaml). diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..904c81d --- /dev/null +++ b/docs/index.html @@ -0,0 +1,320 @@ + + + + + + AI API Relay Price Observatory — awesome-ai-api-proxy + + + + + + +
+

AI API Relay Price Observatory

+

+ Weekly normalized snapshots of AI API relay station and LLM gateway prices. + = relay quotes <50% of OpenRouter (the + official-authorized reference baseline) — verify with + canary prompts + before trusting. +

+
Loading data/prices.latest.json
+ +
+ + + + + + +
+ +

Cost-tier ladder

+
+
Loading chart…
+
+ +

Spread heatmap

+
+
Loading chart…
+
+ +

All records (filterable)

+
+ +
+
+ + + + + + + + + + + + + +
ProviderModelCanonicalTierUnitPrice (USD)Source
+
+ + +
+ + + + diff --git a/mcp/README.md b/mcp/README.md new file mode 100644 index 0000000..b5fa929 --- /dev/null +++ b/mcp/README.md @@ -0,0 +1,98 @@ +# awesome-ai-api-proxy-mcp + +MCP server exposing the weekly **AI API relay price observatory** at +[howardpen9/awesome-ai-api-proxy](https://github.com/howardpen9/awesome-ai-api-proxy) +as agent-callable tools. + +LLM agents (Claude Desktop, Cline, Cursor, etc.) can ask: + +> "What's the cheapest provider for `claude-sonnet-4.6` right now?" + +…and the model will silently call `find_cheapest("claude-sonnet-4.6")`, get back +a record with `provider_name`, `price_usd`, `source_url`, and `captured_at`, and +quote the answer with full provenance. + +## Tools + +| Tool | Returns | +|---|---| +| `list_providers()` | Every relay station, gateway, and tool in the registry. | +| `list_canonical_models()` | The 9 canonical models on the cost-tier ladder. | +| `get_price(canonical_model, provider_id?, unit?)` | Price records (with citation envelope). | +| `find_cheapest(canonical_model, unit?)` | Single cheapest record. | +| `compare(canonical_model, unit?)` | All providers, sorted cheapest first. | +| `tier_overview(tier)` | All canonical models in a tier with prices. | + +Plus an MCP resource: `data://prices/latest` returns the full +`prices.latest.json` document. + +Every record carries `source_url` + `captured_at` + `method` so an agent can +quote the price with provenance — and the user can verify. + +## Install + +### Claude Desktop / Cursor / Cline (recommended) + +Add to your MCP config (e.g. `~/Library/Application Support/Claude/claude_desktop_config.json`): + +```json +{ + "mcpServers": { + "awesome-ai-api-proxy": { + "command": "uvx", + "args": ["awesome-ai-api-proxy-mcp"] + } + } +} +``` + +Restart your client. The tools appear under "awesome-ai-api-proxy" in the tool list. + +### Direct install + +```bash +pip install awesome-ai-api-proxy-mcp +awesome-ai-api-proxy-mcp # stdio MCP server +``` + +### From source + +```bash +git clone https://github.com/howardpen9/awesome-ai-api-proxy.git +cd awesome-ai-api-proxy/mcp +pip install -e . +awesome-ai-api-proxy-mcp +``` + +## Cache + +Data is fetched from +`https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/main/data/prices.latest.json` +and cached in-memory for 5 minutes per process. The underlying snapshot is +refreshed weekly on Sundays 02:00 UTC by the +[price-refresh workflow](../.github/workflows/price-refresh.yml). + +## Configuration + +Override which branch/tag the server reads via env var: + +```bash +AWESOME_AI_API_PROXY_REF=main awesome-ai-api-proxy-mcp # default +AWESOME_AI_API_PROXY_REF=chore/price-observatory awesome-ai-api-proxy-mcp # dev +AWESOME_AI_API_PROXY_REF=v0.2.0 awesome-ai-api-proxy-mcp # pinned tag +``` + +Useful for staging, A/B testing schema changes, or pinning agents to a specific +data snapshot for reproducibility. + +## Citing prices + +When quoting a price to the user, include `captured_at` (so users see how fresh +the data is) and `source_url` (so they can verify): + +> Atlas Cloud lists `claude-sonnet-4.6` input at **$3.00 / 1M tokens** (snapshot +> 2026-06-07, source: ). + +## License + +MIT — see [LICENSE](../LICENSE) in the parent repo. diff --git a/mcp/pyproject.toml b/mcp/pyproject.toml new file mode 100644 index 0000000..dffe06f --- /dev/null +++ b/mcp/pyproject.toml @@ -0,0 +1,39 @@ +[project] +name = "awesome-ai-api-proxy-mcp" +version = "0.1.0" +description = "MCP server exposing the awesome-ai-api-proxy price observatory (weekly AI API relay pricing) as agent-callable tools." +readme = "README.md" +requires-python = ">=3.10" +license = { file = "../LICENSE" } +authors = [{ name = "Howard Peng", email = "howard.peng.tw@gmail.com" }] +keywords = ["mcp", "llm", "ai-api", "pricing", "openrouter", "claude", "gpt", "grok", "relay"] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Software Development :: Libraries", +] + +dependencies = [ + "mcp>=1.0", + "httpx>=0.27", + "pydantic>=2.7", +] + +[project.urls] +Homepage = "https://github.com/howardpen9/awesome-ai-api-proxy" +Repository = "https://github.com/howardpen9/awesome-ai-api-proxy" +Issues = "https://github.com/howardpen9/awesome-ai-api-proxy/issues" + +[project.scripts] +awesome-ai-api-proxy-mcp = "awesome_ai_api_proxy_mcp.server:main" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["src/awesome_ai_api_proxy_mcp"] diff --git a/mcp/src/awesome_ai_api_proxy_mcp/__init__.py b/mcp/src/awesome_ai_api_proxy_mcp/__init__.py new file mode 100644 index 0000000..7182fd3 --- /dev/null +++ b/mcp/src/awesome_ai_api_proxy_mcp/__init__.py @@ -0,0 +1,9 @@ +"""awesome-ai-api-proxy MCP server. + +Exposes the weekly AI API relay price observatory at +https://github.com/howardpen9/awesome-ai-api-proxy as MCP-callable tools. + +Run via `uvx awesome-ai-api-proxy-mcp` or after `pip install`. +""" + +__version__ = "0.1.0" diff --git a/mcp/src/awesome_ai_api_proxy_mcp/server.py b/mcp/src/awesome_ai_api_proxy_mcp/server.py new file mode 100644 index 0000000..850cd3a --- /dev/null +++ b/mcp/src/awesome_ai_api_proxy_mcp/server.py @@ -0,0 +1,220 @@ +"""MCP server exposing the awesome-ai-api-proxy price observatory. + +Six tools: + list_providers() - all providers with status + pricing URL + list_canonical_models() - the 9 canonical models on the tier ladder + get_price(model, provider?, unit?) - matching price records + find_cheapest(model, unit?) - cheapest record for a model+unit + compare(model, unit?) - all providers' prices, sorted ascending + tier_overview(tier) - all canonical models in a tier with prices + +Data source: data/prices.latest.json from main branch (raw URL). +Cached in-memory for 5 minutes per process. +""" + +from __future__ import annotations + +import os +import time +from typing import Any + +import httpx +from mcp.server.fastmcp import FastMCP + +# Override with AWESOME_AI_API_PROXY_REF= for dev / staging. +# Defaults to `main` so production agents always see the latest merged data. +GIT_REF = os.environ.get("AWESOME_AI_API_PROXY_REF", "main") +RAW_BASE = f"https://raw.githubusercontent.com/howardpen9/awesome-ai-api-proxy/{GIT_REF}" + +PRICES_URL = f"{RAW_BASE}/data/prices.latest.json" +PROVIDERS_URL = f"{RAW_BASE}/data/providers.yaml" +CANONICAL_URL = f"{RAW_BASE}/data/canonical-models.yaml" + +CACHE_TTL_SECONDS = 300 +_cache: dict[str, tuple[float, Any]] = {} + + +def _get_cached(key: str, fetch_fn) -> Any: + now = time.time() + cached = _cache.get(key) + if cached and now - cached[0] < CACHE_TTL_SECONDS: + return cached[1] + value = fetch_fn() + _cache[key] = (now, value) + return value + + +def _fetch_prices() -> dict: + return _get_cached("prices", lambda: httpx.get(PRICES_URL, timeout=20).json()) + + +def _fetch_providers() -> list[dict]: + import yaml + + def go() -> list[dict]: + raw = httpx.get(PROVIDERS_URL, timeout=20).text + doc = yaml.safe_load(raw) + out = [] + for section, entries in doc.items(): + if not isinstance(entries, list): + continue + for entry in entries: + if isinstance(entry, dict): + out.append({"section": section, **entry}) + return out + + return _get_cached("providers", go) + + +def _fetch_canonical() -> list[dict]: + import yaml + + def go() -> list[dict]: + raw = httpx.get(CANONICAL_URL, timeout=20).text + doc = yaml.safe_load(raw) + return doc.get("canonical_models", []) + + return _get_cached("canonical", go) + + +mcp = FastMCP("awesome-ai-api-proxy") + + +@mcp.tool() +def list_providers() -> list[dict]: + """List every relay station, gateway, and tool tracked in the registry. + + Returns each provider's name, URL, type (official-relay / mixed / reverse / + aggregator / gateway-oss / observability / comparison / list), status, and + pricing page when available. + """ + out = [] + for p in _fetch_providers(): + out.append( + { + "provider_id": (p.get("pricing") or {}).get("fetcher"), + "name": p.get("name"), + "url": p.get("url"), + "type": p.get("type"), + "status": p.get("status"), + "section": p.get("section"), + "pricing_url": (p.get("pricing") or {}).get("pricing_url"), + "has_fetcher": bool((p.get("pricing") or {}).get("fetcher")), + } + ) + return out + + +@mcp.tool() +def list_canonical_models() -> list[dict]: + """List the canonical models picked to span the cost-tier ladder. + + Tier 1 = cheapest viable (routine work), Tier 2 = daily driver, + Tier 3 = top frontier (hardest problems), Tier 4 = multimodal. + The README's headline price table only compares these canonical models. + """ + return [ + { + "canonical": m["canonical"], + "family": m.get("family"), + "tier": m.get("tier"), + "task": m.get("task"), + "aliases": m.get("aliases", []), + } + for m in _fetch_canonical() + ] + + +@mcp.tool() +def get_price( + canonical_model: str, + provider_id: str | None = None, + unit: str | None = None, +) -> list[dict]: + """Get price records for a canonical model. + + Args: + canonical_model: e.g. "claude-sonnet-4.6", "grok-4.3", "deepseek-v3" + provider_id: optional filter, e.g. "openrouter" / "atlascloud" / "relaydance" + unit: optional filter, e.g. "per_1m_input_tokens" / "per_1m_output_tokens" + + Each record carries source_url + captured_at + method — the citation envelope. + """ + doc = _fetch_prices() + out = [] + for rec in doc.get("records", []): + if rec.get("canonical_model") != canonical_model: + continue + if provider_id and rec.get("provider_id") != provider_id: + continue + if unit and rec.get("unit") != unit: + continue + out.append(rec) + return out + + +@mcp.tool() +def find_cheapest( + canonical_model: str, + unit: str = "per_1m_input_tokens", +) -> dict | None: + """Find the cheapest provider for a given canonical model and unit. + + Returns the single cheapest record with full provenance (source_url + + captured_at) so the answer is citable. Returns None if no provider has the + model at that unit. + + Note: "cheapest" doesn't mean "best" — see the ⚠ rule. If price is <50% of + OpenRouter, the relay is likely reverse / mixed and may silently downgrade. + Run docs/canary-prompts.md before trusting cheap relays. + """ + matches = get_price(canonical_model, unit=unit) + if not matches: + return None + return min(matches, key=lambda r: r["price_usd"]) + + +@mcp.tool() +def compare( + canonical_model: str, + unit: str = "per_1m_input_tokens", +) -> list[dict]: + """Compare all providers' prices for a canonical model, sorted cheapest first. + + Useful for cost-tier routing decisions: shows the spread at a glance. + """ + matches = get_price(canonical_model, unit=unit) + return sorted(matches, key=lambda r: r["price_usd"]) + + +@mcp.tool() +def tier_overview(tier: int) -> dict[str, list[dict]]: + """Show all canonical models in a tier with their compared prices. + + Args: + tier: 1 (cheapest viable), 2 (daily driver), 3 (top frontier), 4 (multimodal) + + Returns {canonical_model: [sorted-cheapest-first records]}. + """ + canon = [m for m in _fetch_canonical() if m.get("tier") == tier] + out: dict[str, list[dict]] = {} + for m in canon: + out[m["canonical"]] = compare(m["canonical"]) + return out + + +@mcp.resource("data://prices/latest") +def prices_latest_resource() -> str: + """The full latest prices.latest.json document as an MCP resource.""" + import json + + return json.dumps(_fetch_prices(), indent=2, ensure_ascii=False) + + +def main() -> None: + """Entry point for `uvx awesome-ai-api-proxy-mcp` and `pip install -e .` console script.""" + mcp.run() + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml index a1fef2a..cfd4150 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ dependencies = [ [project.optional-dependencies] playwright = ["playwright>=1.45"] +charts = ["pandas>=2.2", "matplotlib>=3.9", "pyarrow>=16.0"] dev = ["pytest>=8.0", "ruff>=0.4"] [tool.ruff] diff --git a/scripts/build_charts.py b/scripts/build_charts.py new file mode 100644 index 0000000..aa16850 --- /dev/null +++ b/scripts/build_charts.py @@ -0,0 +1,240 @@ +"""Generate SVG charts from data/prices.latest.json. + +Output goes to assets/charts/*.svg. Charts are embedded in the README between +the price-table markers so readers see the cost spread at a glance. + +Run after `python -m scripts.build_prices`. Idempotent — overwrites existing SVGs. +""" + +from __future__ import annotations + +import json +from collections import defaultdict +from pathlib import Path + +import matplotlib + +matplotlib.use("Agg") # No display needed; SVG output only. +import matplotlib.pyplot as plt +import numpy as np +import yaml +from matplotlib.colors import LogNorm +from rich.console import Console + +from ._paths import CANONICAL_YAML, PRICES_LATEST, REPO_ROOT + +console = Console() + +CHARTS_DIR = REPO_ROOT / "assets" / "charts" +CHARTS_DIR.mkdir(parents=True, exist_ok=True) + +PROVIDER_COLORS = { + "openrouter": "#7c3aed", # purple + "atlascloud": "#0ea5e9", # sky + "relaydance": "#10b981", # emerald +} +PROVIDER_LABELS = { + "openrouter": "OpenRouter (ref)", + "atlascloud": "Atlas Cloud", + "relaydance": "Relaydance", +} + + +def _load() -> tuple[list[dict], list[dict]]: + prices = json.loads(PRICES_LATEST.read_text(encoding="utf-8")) + canonical = yaml.safe_load(CANONICAL_YAML.read_text(encoding="utf-8")).get( + "canonical_models", [] + ) + return prices, canonical + + +def _matrix(records: list[dict], unit: str) -> dict[tuple[str, str], float]: + """Index price by (canonical, provider) for a given unit.""" + out: dict[tuple[str, str], float] = {} + for rec in records: + cm = rec.get("canonical_model") + if not cm or rec.get("unit") != unit: + continue + out.setdefault((cm, rec["provider_id"]), rec["price_usd"]) + return out + + +def chart_tier_ladder(prices_doc: dict, canonical: list[dict], unit: str, kind: str) -> Path: + """Grouped bar chart: x=canonical models (sorted by tier), y=log $ per unit.""" + records = prices_doc["records"] + matrix = _matrix(records, unit) + snapshot_date = prices_doc.get("snapshot_date", "") + + # Keep canonical models with at least one observation in this unit. + models_in_unit = [ + m for m in canonical + if (m.get("tier") or 5) <= 3 # Tier 1-3 for text token charts + and any(k[0] == m["canonical"] for k in matrix) + ] + models_in_unit.sort(key=lambda m: (m.get("tier", 99), m["canonical"])) + if not models_in_unit: + console.print(f"[yellow]no data for unit={unit}; skip[/yellow]") + return CHARTS_DIR / f"tier-ladder-{kind}.svg" + + providers = sorted({k[1] for k in matrix}) + providers = [p for p in PROVIDER_COLORS if p in providers] # stable order + + fig, ax = plt.subplots(figsize=(10, 5.5), dpi=110) + n_models = len(models_in_unit) + n_providers = len(providers) + bar_width = 0.8 / n_providers + x = np.arange(n_models) + + for i, pid in enumerate(providers): + heights = [matrix.get((m["canonical"], pid)) for m in models_in_unit] + # Replace None with 0 for plotting but track which were missing. + plot_heights = [h if h is not None else 0 for h in heights] + offset = (i - (n_providers - 1) / 2) * bar_width + bars = ax.bar( + x + offset, + plot_heights, + bar_width, + label=PROVIDER_LABELS.get(pid, pid), + color=PROVIDER_COLORS.get(pid, "#888"), + edgecolor="white", + linewidth=0.5, + ) + # Annotate bars + for bar, h in zip(bars, heights): + if h is None: + continue + ax.text( + bar.get_x() + bar.get_width() / 2, + bar.get_height() * 1.05, + f"${h:.2f}" if h >= 1 else f"${h:.3f}", + ha="center", + va="bottom", + fontsize=7.5, + color="#555", + ) + + # Tier separators + last_tier = None + for i, m in enumerate(models_in_unit): + if last_tier is not None and m.get("tier") != last_tier: + ax.axvline(i - 0.5, color="#ddd", linestyle="--", linewidth=0.8, zorder=0) + last_tier = m.get("tier") + + ax.set_xticks(x) + ax.set_xticklabels( + [m["canonical"] for m in models_in_unit], + rotation=30, + ha="right", + fontsize=9, + ) + ax.set_yscale("log") + ax.set_ylabel(f"USD per {'1M input' if kind == 'input' else '1M output'} tokens (log)", fontsize=10) + ax.set_title( + f"Cost-tier ladder: canonical models, {kind} pricing · snapshot {snapshot_date}", + fontsize=11, + pad=12, + ) + ax.legend(loc="upper left", fontsize=9, frameon=False) + ax.grid(axis="y", linestyle=":", linewidth=0.5, color="#ccc") + ax.set_axisbelow(True) + for side in ("top", "right"): + ax.spines[side].set_visible(False) + plt.tight_layout() + + out = CHARTS_DIR / f"tier-ladder-{kind}.svg" + plt.savefig(out, format="svg", bbox_inches="tight") + plt.close(fig) + return out + + +def chart_spread_heatmap(prices_doc: dict, canonical: list[dict], unit: str, kind: str) -> Path: + """Heatmap: rows=canonical models, cols=providers, color=log price.""" + records = prices_doc["records"] + matrix = _matrix(records, unit) + snapshot_date = prices_doc.get("snapshot_date", "") + + models = [m for m in canonical if any(k[0] == m["canonical"] for k in matrix)] + models.sort(key=lambda m: (m.get("tier", 99), m["canonical"])) + providers = [p for p in PROVIDER_COLORS if any(k[1] == p for k in matrix)] + if not models or not providers: + return CHARTS_DIR / f"spread-heatmap-{kind}.svg" + + grid = np.full((len(models), len(providers)), np.nan) + for i, m in enumerate(models): + for j, p in enumerate(providers): + v = matrix.get((m["canonical"], p)) + if v is not None: + grid[i, j] = v + + fig, ax = plt.subplots(figsize=(6.5, max(3, 0.45 * len(models) + 1.5)), dpi=110) + masked = np.ma.masked_invalid(grid) + cmap = plt.cm.viridis_r + cmap.set_bad(color="#f3f4f6") + + vmin = max(np.nanmin(grid), 1e-3) + vmax = np.nanmax(grid) + im = ax.imshow( + masked, + aspect="auto", + cmap=cmap, + norm=LogNorm(vmin=vmin, vmax=vmax), + ) + + for i in range(len(models)): + for j in range(len(providers)): + v = grid[i, j] + if not np.isnan(v): + color = "white" if v > vmin * 30 else "#222" + ax.text( + j, i, f"${v:.2f}" if v >= 1 else f"${v:.3f}", + ha="center", va="center", fontsize=8.5, color=color, + ) + else: + ax.text(j, i, "—", ha="center", va="center", fontsize=10, color="#9ca3af") + + ax.set_xticks(np.arange(len(providers))) + ax.set_xticklabels([PROVIDER_LABELS.get(p, p) for p in providers], fontsize=9) + ax.set_yticks(np.arange(len(models))) + ax.set_yticklabels( + [f"T{m.get('tier', '?')} {m['canonical']}" for m in models], + fontsize=9, + ) + ax.set_title( + f"Cost spread heatmap, {kind} pricing · snapshot {snapshot_date}", + fontsize=10.5, + pad=10, + ) + + cbar = plt.colorbar(im, ax=ax, shrink=0.6, pad=0.02) + cbar.set_label(f"USD per 1M {kind} tokens (log)", fontsize=8.5) + cbar.ax.tick_params(labelsize=7.5) + + for side in ("top", "right", "bottom", "left"): + ax.spines[side].set_visible(False) + ax.tick_params(length=0) + plt.tight_layout() + + out = CHARTS_DIR / f"spread-heatmap-{kind}.svg" + plt.savefig(out, format="svg", bbox_inches="tight") + plt.close(fig) + return out + + +def main() -> int: + prices_doc, canonical = _load() + written: list[Path] = [] + for unit, kind in ( + ("per_1m_input_tokens", "input"), + ("per_1m_output_tokens", "output"), + ): + ladder = chart_tier_ladder(prices_doc, canonical, unit, kind) + heatmap = chart_spread_heatmap(prices_doc, canonical, unit, kind) + written += [ladder, heatmap] + console.rule("[bold green]Charts built") + for p in written: + console.print(f" {p.relative_to(REPO_ROOT)}") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/build_prices.py b/scripts/build_prices.py index e22f3cf..50b02ec 100644 --- a/scripts/build_prices.py +++ b/scripts/build_prices.py @@ -105,6 +105,28 @@ def _write_prices_latest(records: list[dict], snapshot_date: str) -> None: ) +def _write_tabular_exports(records: list[dict], snapshot_date: str) -> tuple[Path, Path] | None: + """Write CSV + Parquet alongside the JSON for analyst-friendly access. + + Skipped silently when pandas isn't installed (the [charts] extra). + """ + try: + import pandas as pd + except ImportError: + console.print("[yellow]pandas not installed — skipping CSV/Parquet export. " + "Install with `pip install -e .[charts]`[/yellow]") + return None + + df = pd.DataFrame(records) + # Add snapshot_date as a column so the CSV is self-describing. + df.insert(0, "snapshot_date", snapshot_date) + csv_path = PRICES_LATEST.with_suffix(".csv") + parquet_path = PRICES_LATEST.with_suffix(".parquet") + df.to_csv(csv_path, index=False) + df.to_parquet(parquet_path, index=False, compression="snappy") + return csv_path, parquet_path + + def _append_history(records: list[dict], snapshot_date: str) -> None: provider_counts: dict[str, int] = defaultdict(int) canonical_seen: set[str] = set() @@ -265,6 +287,10 @@ def render_tier_table(tier: int, unit: str, header_suffix: str) -> str: f"{len(providers_in_use)} fetched providers. **Reference column** is OpenRouter " f"(officially-authorized, ~5% markup). ⚠ = relay quotes <50% of OpenRouter — " f"verify with [canary prompts](docs/canary-prompts.md) before trusting._\n\n" + f"![Tier-ladder input pricing](assets/charts/tier-ladder-input.svg)\n\n" + f"_More charts (output pricing, cost-spread heatmaps): " + f"[`assets/charts/`](assets/charts/). " + f"Interactive dashboard: ._\n\n" ) outro = ( "\n_Full per-model breakdown (including non-canonical models): " @@ -348,6 +374,12 @@ def main() -> int: _write_prices_latest(records, snapshot_date) console.print(f"[green]wrote[/green] {PRICES_LATEST.relative_to(SNAPSHOTS_DIR.parent.parent)}") + tabular = _write_tabular_exports(records, snapshot_date) + if tabular: + csv_path, parquet_path = tabular + console.print(f"[green]wrote[/green] {csv_path.relative_to(SNAPSHOTS_DIR.parent.parent)}") + console.print(f"[green]wrote[/green] {parquet_path.relative_to(SNAPSHOTS_DIR.parent.parent)}") + _append_history(records, snapshot_date) console.print(f"[green]appended[/green] {PRICES_HISTORY.relative_to(SNAPSHOTS_DIR.parent.parent)}") From 5e7936bc070ac112d392d2e787d04b35e846b766 Mon Sep 17 00:00:00 2001 From: "ton.gggg" Date: Sun, 7 Jun 2026 14:47:18 +0800 Subject: [PATCH 2/3] data: refresh 2026-06-07 snapshot + first generated charts/exports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Re-ran scrape → build_prices → build_charts to produce: - Refreshed data/snapshots/2026-06-07/ (new captured_at, same prices) - data/prices.latest.{json,csv,parquet} (tabular exports added) - assets/charts/tier-ladder-{input,output}.svg - assets/charts/spread-heatmap-{input,output}.svg The CSV/Parquet are committed (not gitignored) so the agent-integration.md examples work via raw URL without running the pipeline locally. Co-Authored-By: Claude Opus 4.7 (1M context) --- assets/charts/spread-heatmap-input.svg | 1812 ++++++++++++++++ assets/charts/spread-heatmap-output.svg | 1866 +++++++++++++++++ assets/charts/tier-ladder-input.svg | 1940 ++++++++++++++++++ assets/charts/tier-ladder-output.svg | 2013 ++++++++++++++++++ data/prices.history.jsonl | 3 + data/prices.latest.csv | 1025 ++++++++++ data/prices.latest.json | 2276 ++++++++++----------- data/prices.latest.parquet | Bin 0 -> 24567 bytes data/snapshots/2026-06-07/atlascloud.json | 702 +++---- data/snapshots/2026-06-07/openrouter.json | 1274 ++++++------ data/snapshots/2026-06-07/relaydance.json | 262 +-- 11 files changed, 10916 insertions(+), 2257 deletions(-) create mode 100644 assets/charts/spread-heatmap-input.svg create mode 100644 assets/charts/spread-heatmap-output.svg create mode 100644 assets/charts/tier-ladder-input.svg create mode 100644 assets/charts/tier-ladder-output.svg create mode 100644 data/prices.latest.csv create mode 100644 data/prices.latest.parquet diff --git a/assets/charts/spread-heatmap-input.svg b/assets/charts/spread-heatmap-input.svg new file mode 100644 index 0000000..b1bcdad --- /dev/null +++ b/assets/charts/spread-heatmap-input.svg @@ -0,0 +1,1812 @@ + + + + + + + + 2026-06-07T14:46:40.975636 + image/svg+xml + + + Matplotlib v3.10.9, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/charts/spread-heatmap-output.svg b/assets/charts/spread-heatmap-output.svg new file mode 100644 index 0000000..ec219a1 --- /dev/null +++ b/assets/charts/spread-heatmap-output.svg @@ -0,0 +1,1866 @@ + + + + + + + + 2026-06-07T14:46:42.205335 + image/svg+xml + + + Matplotlib v3.10.9, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/charts/tier-ladder-input.svg b/assets/charts/tier-ladder-input.svg new file mode 100644 index 0000000..f84fadb --- /dev/null +++ b/assets/charts/tier-ladder-input.svg @@ -0,0 +1,1940 @@ + + + + + + + + 2026-06-07T14:46:40.423481 + image/svg+xml + + + Matplotlib v3.10.9, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/charts/tier-ladder-output.svg b/assets/charts/tier-ladder-output.svg new file mode 100644 index 0000000..de3a771 --- /dev/null +++ b/assets/charts/tier-ladder-output.svg @@ -0,0 +1,2013 @@ + + + + + + + + 2026-06-07T14:46:41.703219 + image/svg+xml + + + Matplotlib v3.10.9, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/prices.history.jsonl b/data/prices.history.jsonl index 4221ae4..012eeb5 100644 --- a/data/prices.history.jsonl +++ b/data/prices.history.jsonl @@ -1,3 +1,6 @@ {"snapshot_date": "2026-06-07", "generated_at": "2026-06-07T04:54:32.503080+00:00", "record_count": 1024, "providers": {"atlascloud": 350, "openrouter": 636, "relaydance": 38}, "canonical_models_seen": ["claude-opus-4.8", "claude-sonnet-4.6", "deepseek-r1", "deepseek-v3", "gemini-3-flash", "gpt-5.4", "gpt-5.5-pro", "grok-4.3", "grok-imagine-video-1.5"]} {"snapshot_date": "2026-06-07", "generated_at": "2026-06-07T04:56:45.065387+00:00", "record_count": 1024, "providers": {"atlascloud": 350, "openrouter": 636, "relaydance": 38}, "canonical_models_seen": ["claude-opus-4.8", "claude-sonnet-4.6", "deepseek-r1", "deepseek-v3", "gemini-3-flash", "gpt-5.4", "gpt-5.5-pro", "grok-4.3", "grok-imagine-video-1.5"]} {"snapshot_date": "2026-06-07", "generated_at": "2026-06-07T04:59:07.349469+00:00", "record_count": 1024, "providers": {"atlascloud": 350, "openrouter": 636, "relaydance": 38}, "canonical_models_seen": ["claude-opus-4.8", "claude-sonnet-4.6", "deepseek-r1", "deepseek-v3", "gemini-3-flash", "gpt-5.4", "gpt-5.5-pro", "grok-4.3", "grok-imagine-video-1.5"]} +{"snapshot_date": "2026-06-07", "generated_at": "2026-06-07T06:43:29.057156+00:00", "record_count": 1024, "providers": {"atlascloud": 350, "openrouter": 636, "relaydance": 38}, "canonical_models_seen": ["claude-opus-4.8", "claude-sonnet-4.6", "deepseek-r1", "deepseek-v3", "gemini-3-flash", "gpt-5.4", "gpt-5.5-pro", "grok-4.3", "grok-imagine-video-1.5"]} +{"snapshot_date": "2026-06-07", "generated_at": "2026-06-07T06:44:55.977592+00:00", "record_count": 1024, "providers": {"atlascloud": 350, "openrouter": 636, "relaydance": 38}, "canonical_models_seen": ["claude-opus-4.8", "claude-sonnet-4.6", "deepseek-r1", "deepseek-v3", "gemini-3-flash", "gpt-5.4", "gpt-5.5-pro", "grok-4.3", "grok-imagine-video-1.5"]} +{"snapshot_date": "2026-06-07", "generated_at": "2026-06-07T06:46:36.772174+00:00", "record_count": 1024, "providers": {"atlascloud": 350, "openrouter": 636, "relaydance": 38}, "canonical_models_seen": ["claude-opus-4.8", "claude-sonnet-4.6", "deepseek-r1", "deepseek-v3", "gemini-3-flash", "gpt-5.4", "gpt-5.5-pro", "grok-4.3", "grok-imagine-video-1.5"]} diff --git a/data/prices.latest.csv b/data/prices.latest.csv new file mode 100644 index 0000000..396b6d0 --- /dev/null +++ b/data/prices.latest.csv @@ -0,0 +1,1025 @@ +snapshot_date,provider_id,provider_name,raw_model_name,canonical_model,model_family,tier,channel_type,unit,price_usd,source_url,captured_at,confidence,method,notes +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3-0324,deepseek-v3,deepseek,1.0,aggregator,per_1m_input_tokens,0.216,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622821+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3-0324,deepseek-v3,deepseek,1.0,aggregator,per_1m_output_tokens,0.88,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622856+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3-0324,deepseek-v3,deepseek,1.0,aggregator,per_1m_input_cache_read_tokens,0.18,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622865+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-32b,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622877+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-32b,,,,aggregator,per_1m_output_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622883+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-32b,,,,aggregator,per_1m_input_cache_read_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622889+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-r1-0528,deepseek-r1,deepseek,1.0,aggregator,per_1m_input_tokens,0.55,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622896+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-r1-0528,deepseek-r1,deepseek,1.0,aggregator,per_1m_output_tokens,2.1500000000000004,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622904+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-r1-0528,deepseek-r1,deepseek,1.0,aggregator,per_1m_input_cache_read_tokens,0.35,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622910+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Instruct,,,,aggregator,per_1m_input_tokens,0.7,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622919+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Instruct,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622924+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Instruct,,,,aggregator,per_1m_input_cache_read_tokens,0.7,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622929+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Coder,,,,aggregator,per_1m_input_tokens,0.78,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622938+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Coder,,,,aggregator,per_1m_output_tokens,3.8,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622943+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Coder,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622948+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-235B-A22B-Instruct-2507,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622955+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-235B-A22B-Instruct-2507,,,,aggregator,per_1m_output_tokens,0.88,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622961+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-235B-A22B-Instruct-2507,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622966+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.1,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622973+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.1,,,,aggregator,per_1m_output_tokens,0.95,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622977+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.1,,,,aggregator,per_1m_input_cache_read_tokens,0.13,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622982+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Instruct-0905,,,,aggregator,per_1m_input_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622989+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Instruct-0905,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622994+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Instruct-0905,,,,aggregator,per_1m_input_cache_read_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.622999+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Next-80B-A3B-Instruct,,,,aggregator,per_1m_input_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623005+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Next-80B-A3B-Instruct,,,,aggregator,per_1m_output_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623010+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Next-80B-A3B-Instruct,,,,aggregator,per_1m_input_cache_read_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623015+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Next-80B-A3B-Thinking,,,,aggregator,per_1m_input_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623021+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Next-80B-A3B-Thinking,,,,aggregator,per_1m_output_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623026+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-Next-80B-A3B-Thinking,,,,aggregator,per_1m_input_cache_read_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623033+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-30B-A3B-Instruct-2507,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623040+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-30B-A3B-Instruct-2507,,,,aggregator,per_1m_output_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623045+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-30B-A3B-Instruct-2507,,,,aggregator,per_1m_input_cache_read_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623050+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.1-Terminus,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623056+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.1-Terminus,,,,aggregator,per_1m_output_tokens,0.95,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623060+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.1-Terminus,,,,aggregator,per_1m_input_cache_read_tokens,0.13,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623065+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.2-Exp,,,,aggregator,per_1m_input_tokens,0.27,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623071+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.2-Exp,,,,aggregator,per_1m_output_tokens,0.41,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623076+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/DeepSeek-V3.2-Exp,,,,aggregator,per_1m_input_cache_read_tokens,0.27,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623081+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/GLM-4.6,,,,aggregator,per_1m_input_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623087+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/GLM-4.6,,,,aggregator,per_1m_output_tokens,2.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623094+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/GLM-4.6,,,,aggregator,per_1m_input_cache_read_tokens,0.11,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623099+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,MiniMaxAI/MiniMax-M2,,,,aggregator,per_1m_input_tokens,0.255,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623105+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,MiniMaxAI/MiniMax-M2,,,,aggregator,per_1m_output_tokens,1.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623110+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,MiniMaxAI/MiniMax-M2,,,,aggregator,per_1m_input_cache_read_tokens,0.03,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623114+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-VL-235B-A22B-Instruct,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623121+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-VL-235B-A22B-Instruct,,,,aggregator,per_1m_output_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623126+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,Qwen/Qwen3-VL-235B-A22B-Instruct,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623130+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Thinking,,,,aggregator,per_1m_input_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623138+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Thinking,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623143+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/Kimi-K2-Thinking,,,,aggregator,per_1m_input_cache_read_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623148+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623154+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623159+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash,,,,aggregator,per_1m_input_cache_read_tokens,0.03,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623164+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-preview-202509,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623170+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-preview-202509,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623175+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-preview-202509,,,,aggregator,per_1m_input_cache_read_tokens,0.03,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623179+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-lite,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623185+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-lite,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623190+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-lite,,,,aggregator,per_1m_input_cache_read_tokens,0.01,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623195+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-lite-preview-202509,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623200+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-lite-preview-202509,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623205+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-lite-preview-202509,,,,aggregator,per_1m_input_cache_read_tokens,0.01,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623210+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623216+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623221+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623226+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-chat,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623232+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-chat,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623237+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-chat,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623242+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623250+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623255+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623261+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex-mini,,,,aggregator,per_1m_input_tokens,0.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623267+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex-mini,,,,aggregator,per_1m_output_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623272+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex-mini,,,,aggregator,per_1m_input_cache_read_tokens,0.024999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623277+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4o,,,,aggregator,per_1m_input_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623283+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4o,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623287+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4o,,,,aggregator,per_1m_input_cache_read_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623293+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4o-mini,,,,aggregator,per_1m_input_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623299+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4o-mini,,,,aggregator,per_1m_output_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623304+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4o-mini,,,,aggregator,per_1m_input_cache_read_tokens,0.075,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623309+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1,,,,aggregator,per_1m_input_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623315+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1,,,,aggregator,per_1m_output_tokens,8.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623320+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623324+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1-mini,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623330+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1-mini,,,,aggregator,per_1m_output_tokens,1.5999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623335+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1-mini,,,,aggregator,per_1m_input_cache_read_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623340+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1-nano,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623346+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1-nano,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623350+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-4.1-nano,,,,aggregator,per_1m_input_cache_read_tokens,0.024999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623355+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o1,,,,aggregator,per_1m_input_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623361+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o1,,,,aggregator,per_1m_output_tokens,60.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623366+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o1,,,,aggregator,per_1m_input_cache_read_tokens,7.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623371+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3,,,,aggregator,per_1m_input_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623377+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3,,,,aggregator,per_1m_output_tokens,8.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623382+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623387+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3-mini,,,,aggregator,per_1m_input_tokens,1.1,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623393+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3-mini,,,,aggregator,per_1m_output_tokens,4.4,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623397+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3-mini,,,,aggregator,per_1m_input_cache_read_tokens,0.55,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623402+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o4-mini,,,,aggregator,per_1m_input_tokens,1.1,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623408+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o4-mini,,,,aggregator,per_1m_output_tokens,4.4,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623413+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o4-mini,,,,aggregator,per_1m_input_cache_read_tokens,0.55,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623418+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3-pro,,,,aggregator,per_1m_input_tokens,20.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623426+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3-pro,,,,aggregator,per_1m_output_tokens,80.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623431+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/o3-pro,,,,aggregator,per_1m_input_cache_read_tokens,20.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623435+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4-20250514,,,,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623442+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4-20250514,,,,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623447+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4-20250514,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623452+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-haiku-4.5-20251001,,,,aggregator,per_1m_input_tokens,1.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623458+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-haiku-4.5-20251001,,,,aggregator,per_1m_output_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623465+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-haiku-4.5-20251001,,,,aggregator,per_1m_input_cache_read_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623470+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.5-20250929,,,,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623476+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.5-20250929,,,,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623481+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.5-20250929,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623486+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.1-20250805,,,,aggregator,per_1m_input_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623492+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.1-20250805,,,,aggregator,per_1m_output_tokens,75.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623497+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.1-20250805,,,,aggregator,per_1m_input_cache_read_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623501+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4-20250514,,,,aggregator,per_1m_input_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623507+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4-20250514,,,,aggregator,per_1m_output_tokens,75.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623512+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4-20250514,,,,aggregator,per_1m_input_cache_read_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623517+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v3.2,,,,aggregator,per_1m_input_tokens,0.26,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623525+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v3.2,,,,aggregator,per_1m_output_tokens,0.38,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623530+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v3.2,,,,aggregator,per_1m_input_cache_read_tokens,0.13,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623536+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623542+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623547+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623552+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-chat,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623558+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-chat,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623563+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-chat,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623568+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-codex,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623574+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-codex,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623579+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-codex,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623584+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-mini,,,,aggregator,per_1m_input_tokens,0.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623590+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-mini,,,,aggregator,per_1m_output_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623597+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-mini,,,,aggregator,per_1m_input_cache_read_tokens,0.024999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623601+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-nano,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623609+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-nano,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623614+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-nano,,,,aggregator,per_1m_input_cache_read_tokens,0.005,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623619+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-pro,,,,aggregator,per_1m_input_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623625+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-pro,,,,aggregator,per_1m_output_tokens,120.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623630+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5-pro,,,,aggregator,per_1m_input_cache_read_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623634+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex-max,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623640+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex-max,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623647+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.1-codex-max,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623652+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2,,,,aggregator,per_1m_input_tokens,1.75,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623658+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2,,,,aggregator,per_1m_output_tokens,14.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623662+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2,,,,aggregator,per_1m_input_cache_read_tokens,0.175,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623667+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2-chat,,,,aggregator,per_1m_input_tokens,1.75,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623673+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2-chat,,,,aggregator,per_1m_output_tokens,14.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623677+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2-chat,,,,aggregator,per_1m_input_cache_read_tokens,0.175,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623684+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-pro,,,,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623691+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-pro,,,,aggregator,per_1m_output_tokens,10.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623695+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-pro,,,,aggregator,per_1m_input_cache_read_tokens,0.125,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623700+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.5-20251101,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623706+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.5-20251101,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623710+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.5-20251101,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623715+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3-flash-preview,,,,aggregator,per_1m_input_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623721+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3-flash-preview,,,,aggregator,per_1m_output_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623726+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3-flash-preview,,,,aggregator,per_1m_input_cache_read_tokens,0.049999999999999996,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623731+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-4.7,,,,aggregator,per_1m_input_tokens,0.52,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623737+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-4.7,,,,aggregator,per_1m_output_tokens,1.85,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623741+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-4.7,,,,aggregator,per_1m_input_cache_read_tokens,0.12,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623746+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.1,,,,aggregator,per_1m_input_tokens,0.29,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623752+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.1,,,,aggregator,per_1m_output_tokens,0.95,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623757+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.1,,,,aggregator,per_1m_input_cache_read_tokens,0.03,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623763+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.0-flash,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623769+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.0-flash,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623774+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.0-flash,,,,aggregator,per_1m_input_cache_read_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623779+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.0-flash-lite,,,,aggregator,per_1m_input_tokens,0.075,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623785+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.0-flash-lite,,,,aggregator,per_1m_output_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623790+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.0-flash-lite,,,,aggregator,per_1m_input_cache_read_tokens,0.075,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623795+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-8b,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623801+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-8b,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623805+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-8b,,,,aggregator,per_1m_input_cache_read_tokens,0.049999999999999996,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623811+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-235b-a22b-thinking-2507,,,,aggregator,per_1m_input_tokens,0.28,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623817+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-235b-a22b-thinking-2507,,,,aggregator,per_1m_output_tokens,2.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623821+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-235b-a22b-thinking-2507,,,,aggregator,per_1m_input_cache_read_tokens,0.28,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623826+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-235b-a22b-thinking,,,,aggregator,per_1m_input_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623832+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-235b-a22b-thinking,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623836+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-235b-a22b-thinking,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623841+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-30b-a3b,,,,aggregator,per_1m_input_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623847+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-30b-a3b,,,,aggregator,per_1m_output_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623851+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-30b-a3b,,,,aggregator,per_1m_input_cache_read_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623856+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-30b-a3b-thinking-2507,,,,aggregator,per_1m_input_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623862+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-30b-a3b-thinking-2507,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623867+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-30b-a3b-thinking-2507,,,,aggregator,per_1m_input_cache_read_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623871+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-ocr,,,,aggregator,per_1m_input_tokens,0.04,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623877+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-ocr,,,,aggregator,per_1m_output_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623882+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-ocr,,,,aggregator,per_1m_input_cache_read_tokens,0.04,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623887+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-image,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623895+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-image,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623899+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-2.5-flash-image,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623904+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3-pro-image-preview,,,,aggregator,per_1m_input_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623912+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3-pro-image-preview,,,,aggregator,per_1m_output_tokens,12.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623917+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3-pro-image-preview,,,,aggregator,per_1m_input_cache_read_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623921+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-0709,,,,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623930+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-0709,,,,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623934+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-0709,,,,aggregator,per_1m_input_cache_read_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623939+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-fast-reasoning,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623945+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-fast-reasoning,,,,aggregator,per_1m_output_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623950+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-fast-reasoning,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623954+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-fast-non-reasoning,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623961+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-fast-non-reasoning,,,,aggregator,per_1m_output_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623966+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4-fast-non-reasoning,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623971+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.1-fast-reasoning,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623977+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.1-fast-reasoning,,,,aggregator,per_1m_output_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623981+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.1-fast-reasoning,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623986+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.1-fast-non-reasoning,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623992+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.1-fast-non-reasoning,,,,aggregator,per_1m_output_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.623996+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.1-fast-non-reasoning,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624001+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-max-2026-01-23,,,,aggregator,per_1m_input_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624007+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-max-2026-01-23,,,,aggregator,per_1m_output_tokens,6.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624012+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-max-2026-01-23,,,,aggregator,per_1m_input_cache_read_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624016+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/kimi-k2.5,,,,aggregator,per_1m_input_tokens,0.49,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624022+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/kimi-k2.5,,,,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624027+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/kimi-k2.5,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624032+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.6,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624038+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.6,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624042+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.6,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624047+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5,,,,aggregator,per_1m_input_tokens,0.95,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624053+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5,,,,aggregator,per_1m_output_tokens,3.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624057+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5,,,,aggregator,per_1m_input_cache_read_tokens,0.19,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624062+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.5,,,,aggregator,per_1m_input_tokens,0.295,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624068+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.5,,,,aggregator,per_1m_output_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624073+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.5,,,,aggregator,per_1m_input_cache_read_tokens,0.06,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624077+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-397b-a17b,,,,aggregator,per_1m_input_tokens,0.55,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624083+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-397b-a17b,,,,aggregator,per_1m_output_tokens,3.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624090+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-397b-a17b,,,,aggregator,per_1m_input_cache_read_tokens,0.55,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624095+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-pro-preview,,,,aggregator,per_1m_input_tokens,2.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624101+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-pro-preview,,,,aggregator,per_1m_output_tokens,12.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624108+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-pro-preview,,,,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624113+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.6,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624119+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.6,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624124+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.6,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624129+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-coder-next,,,,aggregator,per_1m_input_tokens,0.18,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624135+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-coder-next,,,,aggregator,per_1m_output_tokens,1.35,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624140+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-coder-next,,,,aggregator,per_1m_input_cache_read_tokens,0.18,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624144+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-122b-a10b,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624150+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-122b-a10b,,,,aggregator,per_1m_output_tokens,2.4,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624155+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-122b-a10b,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624160+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-35b-a3b,,,,aggregator,per_1m_input_tokens,0.22499999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624166+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-35b-a3b,,,,aggregator,per_1m_output_tokens,1.7999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624170+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-35b-a3b,,,,aggregator,per_1m_input_cache_read_tokens,0.22499999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624175+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-27b,,,,aggregator,per_1m_input_tokens,0.27,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624181+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-27b,,,,aggregator,per_1m_output_tokens,2.16,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624186+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.5-27b,,,,aggregator,per_1m_input_cache_read_tokens,0.27,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624190+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2-codex,,,,aggregator,per_1m_input_tokens,1.75,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624197+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2-codex,,,,aggregator,per_1m_output_tokens,14.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624202+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.2-codex,,,,aggregator,per_1m_input_cache_read_tokens,0.175,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624206+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.3-codex,,,,aggregator,per_1m_input_tokens,1.75,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624212+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.3-codex,,,,aggregator,per_1m_output_tokens,14.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624217+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.3-codex,,,,aggregator,per_1m_input_cache_read_tokens,0.175,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624221+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v4-flash,,,,aggregator,per_1m_input_tokens,0.14,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624227+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v4-flash,,,,aggregator,per_1m_output_tokens,0.28,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624232+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v4-flash,,,,aggregator,per_1m_input_cache_read_tokens,0.028,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624237+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.7,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624243+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.7,,,,aggregator,per_1m_output_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624248+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m2.7,,,,aggregator,per_1m_input_cache_read_tokens,0.06,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624254+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.4,gpt-5.4,openai,2.0,aggregator,per_1m_input_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624260+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.4,gpt-5.4,openai,2.0,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624264+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.4,gpt-5.4,openai,2.0,aggregator,per_1m_input_cache_read_tokens,0.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624269+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5-turbo,,,,aggregator,per_1m_input_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624275+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5-turbo,,,,aggregator,per_1m_output_tokens,4.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624280+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5-turbo,,,,aggregator,per_1m_input_cache_read_tokens,0.24,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624284+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-flash-image-preview,,,,aggregator,per_1m_input_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624293+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-flash-image-preview,,,,aggregator,per_1m_output_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624297+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-flash-image-preview,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624302+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-8b-instruct,,,,aggregator,per_1m_input_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624308+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-8b-instruct,,,,aggregator,per_1m_output_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624313+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-8b-instruct,,,,aggregator,per_1m_input_cache_read_tokens,0.08,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624320+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-30b-a3b-thinking,,,,aggregator,per_1m_input_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624326+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-30b-a3b-thinking,,,,aggregator,per_1m_output_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624330+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-30b-a3b-thinking,,,,aggregator,per_1m_input_cache_read_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624335+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-30b-a3b-instruct,,,,aggregator,per_1m_input_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624341+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-30b-a3b-instruct,,,,aggregator,per_1m_output_tokens,0.6,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624346+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3-vl-30b-a3b-instruct,,,,aggregator,per_1m_input_cache_read_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624350+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,kwaipilot/kat-coder-pro-v2,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624356+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,kwaipilot/kat-coder-pro-v2,,,,aggregator,per_1m_output_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624361+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,kwaipilot/kat-coder-pro-v2,,,,aggregator,per_1m_input_cache_read_tokens,0.06,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624365+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5.1,,,,aggregator,per_1m_input_tokens,1.26,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624371+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5.1,,,,aggregator,per_1m_output_tokens,3.9600000000000004,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624376+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5.1,,,,aggregator,per_1m_input_cache_read_tokens,0.234,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624383+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.6-plus,,,,aggregator,per_1m_input_tokens,0.325,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624389+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.6-plus,,,,aggregator,per_1m_output_tokens,1.95,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624394+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.6-plus,,,,aggregator,per_1m_input_cache_read_tokens,0.0325,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624398+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5v-turbo,,,,aggregator,per_1m_input_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624404+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5v-turbo,,,,aggregator,per_1m_output_tokens,4.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624409+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,zai-org/glm-5v-turbo,,,,aggregator,per_1m_input_cache_read_tokens,0.24,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624413+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.7,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624421+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.7,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624426+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.7,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624431+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/kimi-k2.6,,,,aggregator,per_1m_input_tokens,0.95,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624437+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/kimi-k2.6,,,,aggregator,per_1m_output_tokens,4.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624445+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,moonshotai/kimi-k2.6,,,,aggregator,per_1m_input_cache_read_tokens,0.16,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624450+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.6-35b-a3b,,,,aggregator,per_1m_input_tokens,0.16119999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624456+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.6-35b-a3b,,,,aggregator,per_1m_output_tokens,0.9652499999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624461+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,qwen/qwen3.6-35b-a3b,,,,aggregator,per_1m_input_cache_read_tokens,0.16119999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624465+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v4-pro,,,,aggregator,per_1m_input_tokens,1.68,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624473+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v4-pro,,,,aggregator,per_1m_output_tokens,3.38,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624478+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,deepseek-ai/deepseek-v4-pro,,,,aggregator,per_1m_input_cache_read_tokens,0.13,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624483+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-image-2,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624489+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-image-2,,,,aggregator,per_1m_input_cache_read_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624494+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.5-flash,gemini-3-flash,gemini,2.0,aggregator,per_1m_input_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624500+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.5-flash,gemini-3-flash,gemini,2.0,aggregator,per_1m_output_tokens,9.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624505+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.5-flash,gemini-3-flash,gemini,2.0,aggregator,per_1m_input_cache_read_tokens,0.15,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624509+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-flash-lite,,,,aggregator,per_1m_input_tokens,0.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624515+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-flash-lite,,,,aggregator,per_1m_output_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624520+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,google/gemini-3.1-flash-lite,,,,aggregator,per_1m_input_cache_read_tokens,0.024999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624525+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.8,claude-opus-4.8,claude,3.0,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624531+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.8,claude-opus-4.8,claude,3.0,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624538+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.8,claude-opus-4.8,claude,3.0,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624543+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4-20250514-coding,,,,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624551+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4-20250514-coding,,,,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624556+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4-20250514-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624561+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-haiku-4.5-20251001-coding,,,,aggregator,per_1m_input_tokens,1.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624566+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-haiku-4.5-20251001-coding,,,,aggregator,per_1m_output_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624571+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-haiku-4.5-20251001-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.09999999999999999,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624576+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.5-20250929-coding,,,,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624582+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.5-20250929-coding,,,,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624586+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.5-20250929-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624593+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.1-20250805-coding,,,,aggregator,per_1m_input_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624599+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.1-20250805-coding,,,,aggregator,per_1m_output_tokens,75.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624603+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.1-20250805-coding,,,,aggregator,per_1m_input_cache_read_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624608+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4-20250514-coding,,,,aggregator,per_1m_input_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624614+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4-20250514-coding,,,,aggregator,per_1m_output_tokens,75.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624619+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4-20250514-coding,,,,aggregator,per_1m_input_cache_read_tokens,1.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624623+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.5-20251101-coding,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624629+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.5-20251101-coding,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624634+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.5-20251101-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624639+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.6-coding,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624644+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.6-coding,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624649+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.6-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624654+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.6-coding,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_input_tokens,3.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624660+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.6-coding,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_output_tokens,15.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624664+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-sonnet-4.6-coding,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_input_cache_read_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624669+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.7-coding,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624675+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.7-coding,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624682+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.7-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624686+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.8-coding,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624692+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.8-coding,,,,aggregator,per_1m_output_tokens,25.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624699+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,anthropic/claude-opus-4.8-coding,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624703+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.3,grok-4.3,grok,3.0,aggregator,per_1m_input_tokens,1.25,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624710+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.3,grok-4.3,grok,3.0,aggregator,per_1m_output_tokens,2.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624715+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,xai/grok-4.3,grok-4.3,grok,3.0,aggregator,per_1m_input_cache_read_tokens,0.19999999999999998,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624719+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.5,,,,aggregator,per_1m_input_tokens,5.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624725+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.5,,,,aggregator,per_1m_output_tokens,30.0,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624730+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,openai/gpt-5.5,,,,aggregator,per_1m_input_cache_read_tokens,0.5,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624734+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m3,,,,aggregator,per_1m_input_tokens,0.3,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624741+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m3,,,,aggregator,per_1m_output_tokens,1.2,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624746+00:00,high,json-api, +2026-06-07,atlascloud,Atlas Cloud,minimaxai/minimax-m3,,,,aggregator,per_1m_input_cache_read_tokens,0.06,https://www.atlascloud.ai/models,2026-06-07T06:46:33.624752+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-3-ultra-550b-a55b,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784244+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-3-ultra-550b-a55b,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784267+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.7-plus,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784278+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.7-plus,,,,aggregator,per_1m_output_tokens,1.5999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784283+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m3,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784289+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m3,,,,aggregator,per_1m_output_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784296+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,stepfun/step-3.7-flash,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784300+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,stepfun/step-3.7-flash,,,,aggregator,per_1m_output_tokens,1.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784305+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.8-fast,,,,aggregator,per_1m_input_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784310+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.8-fast,,,,aggregator,per_1m_output_tokens,50.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784314+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.8,claude-opus-4.8,claude,3.0,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784319+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.8,claude-opus-4.8,claude,3.0,aggregator,per_1m_output_tokens,25.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784323+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.7-max,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784328+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.7-max,,,,aggregator,per_1m_output_tokens,3.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784332+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-build-0.1,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784336+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-build-0.1,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784341+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.5-flash,gemini-3-flash,gemini,2.0,aggregator,per_1m_input_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784345+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.5-flash,gemini-3-flash,gemini,2.0,aggregator,per_1m_output_tokens,9.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784350+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.5-flash,gemini-3-flash,gemini,2.0,aggregator,per_image,1.5e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784354+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.7-fast,,,,aggregator,per_1m_input_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784359+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.7-fast,,,,aggregator,per_1m_output_tokens,150.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784364+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perceptron/perceptron-mk1,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784369+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perceptron/perceptron-mk1,,,,aggregator,per_1m_output_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784374+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inclusionai/ring-2.6-1t,,,,aggregator,per_1m_input_tokens,0.075,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784378+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inclusionai/ring-2.6-1t,,,,aggregator,per_1m_output_tokens,0.625,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784382+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-lite,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784387+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-lite,,,,aggregator,per_1m_output_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784391+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-lite,,,,aggregator,per_image,2.5e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784396+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-chat-latest,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784401+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-chat-latest,,,,aggregator,per_1m_output_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784405+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-4.3,grok-4.3,grok,3.0,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784410+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-4.3,grok-4.3,grok,3.0,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784414+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,ibm-granite/granite-4.1-8b,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784419+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,ibm-granite/granite-4.1-8b,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784425+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-medium-3-5,,,,aggregator,per_1m_input_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784430+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-medium-3-5,,,,aggregator,per_1m_output_tokens,7.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784434+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~anthropic/claude-haiku-latest,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784441+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~anthropic/claude-haiku-latest,,,,aggregator,per_1m_output_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784445+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~openai/gpt-mini-latest,,,,aggregator,per_1m_input_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784449+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~openai/gpt-mini-latest,,,,aggregator,per_1m_output_tokens,4.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784454+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~google/gemini-pro-latest,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784458+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~google/gemini-pro-latest,,,,aggregator,per_1m_output_tokens,12.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784463+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~google/gemini-pro-latest,,,,aggregator,per_image,2e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784467+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~moonshotai/kimi-latest,,,,aggregator,per_1m_input_tokens,0.684,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784471+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~moonshotai/kimi-latest,,,,aggregator,per_1m_output_tokens,3.42,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784477+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~google/gemini-flash-latest,,,,aggregator,per_1m_input_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784484+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~google/gemini-flash-latest,,,,aggregator,per_1m_output_tokens,9.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784488+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~google/gemini-flash-latest,,,,aggregator,per_image,1.5e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784492+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~anthropic/claude-sonnet-latest,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784496+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~anthropic/claude-sonnet-latest,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784501+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~openai/gpt-latest,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784505+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~openai/gpt-latest,,,,aggregator,per_1m_output_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784509+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-plus-20260420,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784513+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-plus-20260420,,,,aggregator,per_1m_output_tokens,1.7999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784518+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-flash,,,,aggregator,per_1m_input_tokens,0.1875,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784522+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-flash,,,,aggregator,per_1m_output_tokens,1.125,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784526+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-35b-a3b,,,,aggregator,per_1m_input_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784531+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-35b-a3b,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784535+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-max-preview,,,,aggregator,per_1m_input_tokens,1.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784539+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-max-preview,,,,aggregator,per_1m_output_tokens,6.24,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784543+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-27b,,,,aggregator,per_1m_input_tokens,0.28900000000000003,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784548+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-27b,,,,aggregator,per_1m_output_tokens,2.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784552+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.5-pro,gpt-5.5-pro,openai,3.0,aggregator,per_1m_input_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784556+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.5-pro,gpt-5.5-pro,openai,3.0,aggregator,per_1m_output_tokens,180.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784562+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.5,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784567+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.5,,,,aggregator,per_1m_output_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784571+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v4-pro,,,,aggregator,per_1m_input_tokens,0.435,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784576+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v4-pro,,,,aggregator,per_1m_output_tokens,0.87,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784580+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v4-flash,,,,aggregator,per_1m_input_tokens,0.0983,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784585+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v4-flash,,,,aggregator,per_1m_output_tokens,0.1966,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784589+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inclusionai/ling-2.6-1t,,,,aggregator,per_1m_input_tokens,0.075,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784593+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inclusionai/ling-2.6-1t,,,,aggregator,per_1m_output_tokens,0.625,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784598+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,tencent/hy3-preview,,,,aggregator,per_1m_input_tokens,0.063,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784602+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,tencent/hy3-preview,,,,aggregator,per_1m_output_tokens,0.21,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784606+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,xiaomi/mimo-v2.5-pro,,,,aggregator,per_1m_input_tokens,0.435,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784610+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,xiaomi/mimo-v2.5-pro,,,,aggregator,per_1m_output_tokens,0.87,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784614+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,xiaomi/mimo-v2.5,,,,aggregator,per_1m_input_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784619+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,xiaomi/mimo-v2.5,,,,aggregator,per_1m_output_tokens,0.28,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784624+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-image-2,,,,aggregator,per_1m_input_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784628+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-image-2,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784633+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inclusionai/ling-2.6-flash,,,,aggregator,per_1m_input_tokens,0.01,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784637+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inclusionai/ling-2.6-flash,,,,aggregator,per_1m_output_tokens,0.03,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784641+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~anthropic/claude-opus-latest,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784646+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,~anthropic/claude-opus-latest,,,,aggregator,per_1m_output_tokens,25.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784650+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2.6,,,,aggregator,per_1m_input_tokens,0.684,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784655+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2.6,,,,aggregator,per_1m_output_tokens,3.42,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784661+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.7,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784666+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.7,,,,aggregator,per_1m_output_tokens,25.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784670+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.6-fast,,,,aggregator,per_1m_input_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784675+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.6-fast,,,,aggregator,per_1m_output_tokens,150.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784679+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5.1,,,,aggregator,per_1m_input_tokens,0.98,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784683+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5.1,,,,aggregator,per_1m_output_tokens,3.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784687+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-4-26b-a4b-it,,,,aggregator,per_1m_input_tokens,0.06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784692+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-4-26b-a4b-it,,,,aggregator,per_1m_output_tokens,0.33,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784697+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-4-31b-it,,,,aggregator,per_1m_input_tokens,0.12,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784702+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-4-31b-it,,,,aggregator,per_1m_output_tokens,0.36,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784707+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-plus,,,,aggregator,per_1m_input_tokens,0.325,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784712+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.6-plus,,,,aggregator,per_1m_output_tokens,1.95,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784716+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5v-turbo,,,,aggregator,per_1m_input_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784720+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5v-turbo,,,,aggregator,per_1m_output_tokens,4.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784725+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/trinity-large-thinking,,,,aggregator,per_1m_input_tokens,0.22,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784729+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/trinity-large-thinking,,,,aggregator,per_1m_output_tokens,0.85,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784733+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-4.20-multi-agent,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784737+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-4.20-multi-agent,,,,aggregator,per_1m_output_tokens,6.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784743+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-4.20,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784748+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,x-ai/grok-4.20,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784752+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,kwaipilot/kat-coder-pro-v2,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784757+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,kwaipilot/kat-coder-pro-v2,,,,aggregator,per_1m_output_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784761+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,rekaai/reka-edge,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784766+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,rekaai/reka-edge,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784770+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2.7,,,,aggregator,per_1m_input_tokens,0.27899999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784775+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2.7,,,,aggregator,per_1m_output_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784779+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-nano,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784783+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-nano,,,,aggregator,per_1m_output_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784788+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-mini,,,,aggregator,per_1m_input_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784792+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-mini,,,,aggregator,per_1m_output_tokens,4.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784796+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-2603,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784800+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-2603,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784805+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5-turbo,,,,aggregator,per_1m_input_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784809+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5-turbo,,,,aggregator,per_1m_output_tokens,4.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784813+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-3-super-120b-a12b,,,,aggregator,per_1m_input_tokens,0.09,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784818+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-3-super-120b-a12b,,,,aggregator,per_1m_output_tokens,0.44999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784822+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-2.0-lite,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784828+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-2.0-lite,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784832+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-9b,,,,aggregator,per_1m_input_tokens,0.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784837+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-9b,,,,aggregator,per_1m_output_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784842+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-pro,,,,aggregator,per_1m_input_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784848+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4-pro,,,,aggregator,per_1m_output_tokens,180.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784853+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4,gpt-5.4,openai,2.0,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784859+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.4,gpt-5.4,openai,2.0,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784864+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inception/mercury-2,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784868+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inception/mercury-2,,,,aggregator,per_1m_output_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784873+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.3-chat,,,,aggregator,per_1m_input_tokens,1.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784877+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.3-chat,,,,aggregator,per_1m_output_tokens,14.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784881+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-lite-preview,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784885+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-lite-preview,,,,aggregator,per_1m_output_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784889+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-lite-preview,,,,aggregator,per_image,2.5e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784894+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-2.0-mini,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784898+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-2.0-mini,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784902+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-image-preview,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784907+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-flash-image-preview,,,,aggregator,per_1m_output_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784911+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-35b-a3b,,,,aggregator,per_1m_input_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784915+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-35b-a3b,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784919+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-27b,,,,aggregator,per_1m_input_tokens,0.195,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784924+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-27b,,,,aggregator,per_1m_output_tokens,1.56,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784928+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-122b-a10b,,,,aggregator,per_1m_input_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784933+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-122b-a10b,,,,aggregator,per_1m_output_tokens,2.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784937+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-flash-02-23,,,,aggregator,per_1m_input_tokens,0.065,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784941+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-flash-02-23,,,,aggregator,per_1m_output_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784945+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,liquid/lfm-2-24b-a2b,,,,aggregator,per_1m_input_tokens,0.03,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784950+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,liquid/lfm-2-24b-a2b,,,,aggregator,per_1m_output_tokens,0.12,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784954+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-pro-preview-customtools,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784959+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-pro-preview-customtools,,,,aggregator,per_1m_output_tokens,12.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784963+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-pro-preview-customtools,,,,aggregator,per_image,2e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784967+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.3-codex,,,,aggregator,per_1m_input_tokens,1.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784972+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.3-codex,,,,aggregator,per_1m_output_tokens,14.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784976+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-2.0,,,,aggregator,per_1m_input_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784980+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-2.0,,,,aggregator,per_1m_output_tokens,1.5999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784986+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-pro-preview,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784991+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-pro-preview,,,,aggregator,per_1m_output_tokens,12.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784995+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3.1-pro-preview,,,,aggregator,per_image,2e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.784999+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-sonnet-4.6,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785003+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-sonnet-4.6,claude-sonnet-4.6,claude,2.0,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785007+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-plus-02-15,,,,aggregator,per_1m_input_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785012+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-plus-02-15,,,,aggregator,per_1m_output_tokens,1.56,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785018+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-397b-a17b,,,,aggregator,per_1m_input_tokens,0.39,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785024+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3.5-397b-a17b,,,,aggregator,per_1m_output_tokens,2.34,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785028+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2.5,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785032+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2.5,,,,aggregator,per_1m_output_tokens,1.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785037+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785041+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-5,,,,aggregator,per_1m_output_tokens,1.92,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785045+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-max-thinking,,,,aggregator,per_1m_input_tokens,0.78,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785050+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-max-thinking,,,,aggregator,per_1m_output_tokens,3.9,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785054+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.6,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785059+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.6,,,,aggregator,per_1m_output_tokens,25.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785063+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-next,,,,aggregator,per_1m_input_tokens,0.11,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785069+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-next,,,,aggregator,per_1m_output_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785073+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,stepfun/step-3.5-flash,,,,aggregator,per_1m_input_tokens,0.09,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785078+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,stepfun/step-3.5-flash,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785082+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2.5,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785087+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2.5,,,,aggregator,per_1m_output_tokens,1.9,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785091+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,upstage/solar-pro-3,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785095+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,upstage/solar-pro-3,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785099+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2-her,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785104+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2-her,,,,aggregator,per_1m_output_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785108+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,writer/palmyra-x5,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785112+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,writer/palmyra-x5,,,,aggregator,per_1m_output_tokens,6.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785117+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-audio,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785122+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-audio,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785128+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-audio-mini,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785132+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-audio-mini,,,,aggregator,per_1m_output_tokens,2.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785137+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.7-flash,,,,aggregator,per_1m_input_tokens,0.06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785141+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.7-flash,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785145+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2-codex,,,,aggregator,per_1m_input_tokens,1.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785150+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2-codex,,,,aggregator,per_1m_output_tokens,14.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785154+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-1.6-flash,,,,aggregator,per_1m_input_tokens,0.075,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785158+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-1.6-flash,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785162+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-1.6,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785167+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance-seed/seed-1.6,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785171+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2.1,,,,aggregator,per_1m_input_tokens,0.29,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785175+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2.1,,,,aggregator,per_1m_output_tokens,0.95,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785180+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.7,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785184+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.7,,,,aggregator,per_1m_output_tokens,1.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785188+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3-flash-preview,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785192+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3-flash-preview,,,,aggregator,per_1m_output_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785197+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3-flash-preview,,,,aggregator,per_image,5e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785203+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,xiaomi/mimo-v2-flash,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785208+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,xiaomi/mimo-v2-flash,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785212+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-3-nano-30b-a3b,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785217+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-3-nano-30b-a3b,,,,aggregator,per_1m_output_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785221+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2-chat,,,,aggregator,per_1m_input_tokens,1.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785226+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2-chat,,,,aggregator,per_1m_output_tokens,14.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785230+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2-pro,,,,aggregator,per_1m_input_tokens,21.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785235+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2-pro,,,,aggregator,per_1m_output_tokens,168.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785240+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2,,,,aggregator,per_1m_input_tokens,1.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785244+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.2,,,,aggregator,per_1m_output_tokens,14.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785248+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/devstral-2512,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785253+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/devstral-2512,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785257+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,relace/relace-search,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785261+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,relace/relace-search,,,,aggregator,per_1m_output_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785267+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.6v,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785272+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.6v,,,,aggregator,per_1m_output_tokens,0.8999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785276+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nex-agi/deepseek-v3.1-nex-n1,,,,aggregator,per_1m_input_tokens,0.135,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785281+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nex-agi/deepseek-v3.1-nex-n1,,,,aggregator,per_1m_output_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785285+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,essentialai/rnj-1-instruct,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785289+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,essentialai/rnj-1-instruct,,,,aggregator,per_1m_output_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785293+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-codex-max,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785298+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-codex-max,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785303+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-2-lite-v1,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785307+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-2-lite-v1,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785311+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/ministral-14b-2512,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785315+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/ministral-14b-2512,,,,aggregator,per_1m_output_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785320+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/ministral-8b-2512,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785324+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/ministral-8b-2512,,,,aggregator,per_1m_output_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785328+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/ministral-3b-2512,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785333+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/ministral-3b-2512,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785337+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-large-2512,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785341+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-large-2512,,,,aggregator,per_1m_output_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785346+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/trinity-mini,,,,aggregator,per_1m_input_tokens,0.045,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785350+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/trinity-mini,,,,aggregator,per_1m_output_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785354+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v3.2,,,,aggregator,per_1m_input_tokens,0.2288,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785359+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v3.2,,,,aggregator,per_1m_output_tokens,0.3432,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785363+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,prime-intellect/intellect-3,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785367+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,prime-intellect/intellect-3,,,,aggregator,per_1m_output_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785372+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.5,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785376+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.5,,,,aggregator,per_1m_output_tokens,25.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785382+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,allenai/olmo-3-32b-think,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785387+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,allenai/olmo-3-32b-think,,,,aggregator,per_1m_output_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785392+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3-pro-image-preview,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785398+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3-pro-image-preview,,,,aggregator,per_1m_output_tokens,12.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785403+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-3-pro-image-preview,,,,aggregator,per_image,2e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785409+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepcogito/cogito-v2.1-671b,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785415+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepcogito/cogito-v2.1-671b,,,,aggregator,per_1m_output_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785419+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785424+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785428+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-chat,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785432+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-chat,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785437+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-codex,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785441+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-codex,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785445+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-codex-mini,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785449+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5.1-codex-mini,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785454+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2-thinking,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785458+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2-thinking,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785462+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-premier-v1,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785467+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-premier-v1,,,,aggregator,per_1m_output_tokens,12.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785471+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-pro-search,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785476+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-pro-search,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785480+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/voxtral-small-24b-2507,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785485+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/voxtral-small-24b-2507,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785489+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-oss-safeguard-20b,,,,aggregator,per_1m_input_tokens,0.075,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785493+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-oss-safeguard-20b,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785497+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2,,,,aggregator,per_1m_input_tokens,0.255,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785502+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m2,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785506+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-32b-instruct,,,,aggregator,per_1m_input_tokens,0.10400000000000001,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785511+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-32b-instruct,,,,aggregator,per_1m_output_tokens,0.41600000000000004,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785515+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,ibm-granite/granite-4.0-h-micro,,,,aggregator,per_1m_input_tokens,0.017,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785520+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,ibm-granite/granite-4.0-h-micro,,,,aggregator,per_1m_output_tokens,0.112,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785524+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,microsoft/phi-4-mini-instruct,,,,aggregator,per_1m_input_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785529+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,microsoft/phi-4-mini-instruct,,,,aggregator,per_1m_output_tokens,0.35,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785533+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-image-mini,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785537+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-image-mini,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785542+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-haiku-4.5,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785548+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-haiku-4.5,,,,aggregator,per_1m_output_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785552+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-8b-thinking,,,,aggregator,per_1m_input_tokens,0.117,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785556+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-8b-thinking,,,,aggregator,per_1m_output_tokens,1.365,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785561+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-8b-instruct,,,,aggregator,per_1m_input_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785567+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-8b-instruct,,,,aggregator,per_1m_output_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785571+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-image,,,,aggregator,per_1m_input_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785575+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-image,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785580+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-deep-research,,,,aggregator,per_1m_input_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785584+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-deep-research,,,,aggregator,per_1m_output_tokens,40.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785588+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o4-mini-deep-research,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785593+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o4-mini-deep-research,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785597+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/llama-3.3-nemotron-super-49b-v1.5,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785601+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/llama-3.3-nemotron-super-49b-v1.5,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785606+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-image,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785610+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-image,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785614+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-image,,,,aggregator,per_image,3e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785618+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-30b-a3b-thinking,,,,aggregator,per_1m_input_tokens,0.13,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785623+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-30b-a3b-thinking,,,,aggregator,per_1m_output_tokens,1.56,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785627+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-30b-a3b-instruct,,,,aggregator,per_1m_input_tokens,0.13,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785631+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-30b-a3b-instruct,,,,aggregator,per_1m_output_tokens,0.52,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785635+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-pro,,,,aggregator,per_1m_input_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785640+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-pro,,,,aggregator,per_1m_output_tokens,120.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785644+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.6,,,,aggregator,per_1m_input_tokens,0.43,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785648+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.6,,,,aggregator,per_1m_output_tokens,1.74,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785653+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-sonnet-4.5,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785657+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-sonnet-4.5,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785661+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v3.2-exp,,,,aggregator,per_1m_input_tokens,0.27,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785665+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v3.2-exp,,,,aggregator,per_1m_output_tokens,0.41,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785670+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/cydonia-24b-v4.1,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785674+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/cydonia-24b-v4.1,,,,aggregator,per_1m_output_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785678+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,relace/relace-apply-3,,,,aggregator,per_1m_input_tokens,0.85,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785684+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,relace/relace-apply-3,,,,aggregator,per_1m_output_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785689+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-lite-preview-09-2025,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785693+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-lite-preview-09-2025,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785697+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-lite-preview-09-2025,,,,aggregator,per_image,1e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785701+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-235b-a22b-thinking,,,,aggregator,per_1m_input_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785706+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-235b-a22b-thinking,,,,aggregator,per_1m_output_tokens,2.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785710+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-235b-a22b-instruct,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785716+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-vl-235b-a22b-instruct,,,,aggregator,per_1m_output_tokens,0.88,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785720+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-max,,,,aggregator,per_1m_input_tokens,0.78,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785725+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-max,,,,aggregator,per_1m_output_tokens,3.9,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785729+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-plus,,,,aggregator,per_1m_input_tokens,0.65,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785733+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-plus,,,,aggregator,per_1m_output_tokens,3.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785738+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-codex,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785743+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-codex,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785748+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v3.1-terminus,,,,aggregator,per_1m_input_tokens,0.27,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785752+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-v3.1-terminus,,,,aggregator,per_1m_output_tokens,0.95,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785756+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-flash,,,,aggregator,per_1m_input_tokens,0.195,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785761+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-flash,,,,aggregator,per_1m_output_tokens,0.975,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785765+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-next-80b-a3b-thinking,,,,aggregator,per_1m_input_tokens,0.0975,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785769+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-next-80b-a3b-thinking,,,,aggregator,per_1m_output_tokens,0.78,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785773+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-next-80b-a3b-instruct,,,,aggregator,per_1m_input_tokens,0.09,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785779+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-next-80b-a3b-instruct,,,,aggregator,per_1m_output_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785786+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-plus-2025-07-28:thinking,,,,aggregator,per_1m_input_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785791+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-plus-2025-07-28:thinking,,,,aggregator,per_1m_output_tokens,0.78,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785795+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-plus-2025-07-28,,,,aggregator,per_1m_input_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785800+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-plus-2025-07-28,,,,aggregator,per_1m_output_tokens,0.78,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785804+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-nano-9b-v2,,,,aggregator,per_1m_input_tokens,0.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785809+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nvidia/nemotron-nano-9b-v2,,,,aggregator,per_1m_output_tokens,0.16,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785813+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2-0905,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785817+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2-0905,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785821+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-30b-a3b-thinking-2507,,,,aggregator,per_1m_input_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785828+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-30b-a3b-thinking-2507,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785832+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-4-70b,,,,aggregator,per_1m_input_tokens,0.13,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785836+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-4-70b,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785841+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-4-405b,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785845+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-4-405b,,,,aggregator,per_1m_output_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785849+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-chat-v3.1,,,,aggregator,per_1m_input_tokens,0.21,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785853+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-chat-v3.1,,,,aggregator,per_1m_output_tokens,0.7899999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785858+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-medium-3.1,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785862+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-medium-3.1,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785866+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.5v,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785871+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.5v,,,,aggregator,per_1m_output_tokens,1.7999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785875+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,ai21/jamba-large-1.7,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785879+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,ai21/jamba-large-1.7,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785883+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-chat,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785887+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-chat,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785892+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785896+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785900+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-mini,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785904+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-mini,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785908+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-nano,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785913+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-5-nano,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785917+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-oss-120b,,,,aggregator,per_1m_input_tokens,0.039,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785923+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-oss-120b,,,,aggregator,per_1m_output_tokens,0.18,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785927+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-oss-20b,,,,aggregator,per_1m_input_tokens,0.029,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785933+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-oss-20b,,,,aggregator,per_1m_output_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785937+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.1,,,,aggregator,per_1m_input_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785941+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4.1,,,,aggregator,per_1m_output_tokens,75.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785945+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/codestral-2508,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785949+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/codestral-2508,,,,aggregator,per_1m_output_tokens,0.8999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785953+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-30b-a3b-instruct,,,,aggregator,per_1m_input_tokens,0.07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785958+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder-30b-a3b-instruct,,,,aggregator,per_1m_output_tokens,0.27,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785963+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-30b-a3b-instruct-2507,,,,aggregator,per_1m_input_tokens,0.04815,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785968+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-30b-a3b-instruct-2507,,,,aggregator,per_1m_output_tokens,0.19305,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785972+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.5,,,,aggregator,per_1m_input_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785977+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.5,,,,aggregator,per_1m_output_tokens,2.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785981+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.5-air,,,,aggregator,per_1m_input_tokens,0.125,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785986+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4.5-air,,,,aggregator,per_1m_output_tokens,0.85,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785990+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-235b-a22b-thinking-2507,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785994+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-235b-a22b-thinking-2507,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.785998+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4-32b,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786002+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,z-ai/glm-4-32b,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786006+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder,,,,aggregator,per_1m_input_tokens,0.22,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786011+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-coder,,,,aggregator,per_1m_output_tokens,1.7999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786015+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance/ui-tars-1.5-7b,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786020+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,bytedance/ui-tars-1.5-7b,,,,aggregator,per_1m_output_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786023+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-lite,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786028+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-lite,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786032+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash-lite,,,,aggregator,per_image,1e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786037+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-235b-a22b-2507,,,,aggregator,per_1m_input_tokens,0.071,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786042+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-235b-a22b-2507,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786046+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,switchpoint/router,,,,aggregator,per_1m_input_tokens,0.85,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786050+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,switchpoint/router,,,,aggregator,per_1m_output_tokens,3.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786054+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2,,,,aggregator,per_1m_input_tokens,0.5700000000000001,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786059+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,moonshotai/kimi-k2,,,,aggregator,per_1m_output_tokens,2.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786063+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,tencent/hunyuan-a13b-instruct,,,,aggregator,per_1m_input_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786067+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,tencent/hunyuan-a13b-instruct,,,,aggregator,per_1m_output_tokens,0.5700000000000001,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786071+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,morph/morph-v3-large,,,,aggregator,per_1m_input_tokens,0.8999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786076+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,morph/morph-v3-large,,,,aggregator,per_1m_output_tokens,1.9,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786081+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,morph/morph-v3-fast,,,,aggregator,per_1m_input_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786085+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,morph/morph-v3-fast,,,,aggregator,per_1m_output_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786089+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,baidu/ernie-4.5-vl-424b-a47b,,,,aggregator,per_1m_input_tokens,0.42,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786093+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,baidu/ernie-4.5-vl-424b-a47b,,,,aggregator,per_1m_output_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786100+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-3.2-24b-instruct,,,,aggregator,per_1m_input_tokens,0.075,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786104+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-3.2-24b-instruct,,,,aggregator,per_1m_output_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786108+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m1,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786113+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-m1,,,,aggregator,per_1m_output_tokens,2.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786117+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786121+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash,,,,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786125+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-flash,,,,aggregator,per_image,3e-07,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786129+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786134+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786138+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro,,,,aggregator,per_image,1.25e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786142+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-pro,,,,aggregator,per_1m_input_tokens,20.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786146+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-pro,,,,aggregator,per_1m_output_tokens,80.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786150+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro-preview,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786155+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro-preview,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786159+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro-preview,,,,aggregator,per_image,1.25e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786163+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1-0528,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786167+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1-0528,,,,aggregator,per_1m_output_tokens,2.1500000000000004,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786171+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4,,,,aggregator,per_1m_input_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786175+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-opus-4,,,,aggregator,per_1m_output_tokens,75.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786180+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-sonnet-4,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786184+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-sonnet-4,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786188+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3n-e4b-it,,,,aggregator,per_1m_input_tokens,0.06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786192+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3n-e4b-it,,,,aggregator,per_1m_output_tokens,0.12,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786196+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-medium-3,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786201+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-medium-3,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786205+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro-preview-05-06,,,,aggregator,per_1m_input_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786209+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro-preview-05-06,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786213+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemini-2.5-pro-preview-05-06,,,,aggregator,per_image,1.25e-06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786217+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/maestro-reasoning,,,,aggregator,per_1m_input_tokens,0.8999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786222+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/maestro-reasoning,,,,aggregator,per_1m_output_tokens,3.3000000000000003,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786226+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/virtuoso-large,,,,aggregator,per_1m_input_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786231+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/virtuoso-large,,,,aggregator,per_1m_output_tokens,1.2,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786236+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/coder-large,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786240+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,arcee-ai/coder-large,,,,aggregator,per_1m_output_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786244+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-guard-4-12b,,,,aggregator,per_1m_input_tokens,0.18,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786248+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-guard-4-12b,,,,aggregator,per_1m_output_tokens,0.18,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786252+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-30b-a3b,,,,aggregator,per_1m_input_tokens,0.09,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786257+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-30b-a3b,,,,aggregator,per_1m_output_tokens,0.44999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786261+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-8b,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786265+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-8b,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786271+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-14b,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786275+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-14b,,,,aggregator,per_1m_output_tokens,0.24,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786279+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-32b,,,,aggregator,per_1m_input_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786284+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-32b,,,,aggregator,per_1m_output_tokens,0.28,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786288+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-235b-a22b,,,,aggregator,per_1m_input_tokens,0.45499999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786292+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen3-235b-a22b,,,,aggregator,per_1m_output_tokens,1.8199999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786297+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o4-mini-high,,,,aggregator,per_1m_input_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786303+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o4-mini-high,,,,aggregator,per_1m_output_tokens,4.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786307+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786311+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786315+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o4-mini,,,,aggregator,per_1m_input_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786320+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o4-mini,,,,aggregator,per_1m_output_tokens,4.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786324+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4.1,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786329+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4.1,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786333+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4.1-mini,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786337+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4.1-mini,,,,aggregator,per_1m_output_tokens,1.5999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786341+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4.1-nano,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786346+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4.1-nano,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786351+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-4-maverick,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786356+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-4-maverick,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786360+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-4-scout,,,,aggregator,per_1m_input_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786364+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-4-scout,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786370+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-chat-v3-0324,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786374+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-chat-v3-0324,,,,aggregator,per_1m_output_tokens,0.77,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786378+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o1-pro,,,,aggregator,per_1m_input_tokens,150.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786383+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o1-pro,,,,aggregator,per_1m_output_tokens,600.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786387+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-3.1-24b-instruct,,,,aggregator,per_1m_input_tokens,0.351,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786391+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-3.1-24b-instruct,,,,aggregator,per_1m_output_tokens,0.5549999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786395+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3-4b-it,,,,aggregator,per_1m_input_tokens,0.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786399+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3-4b-it,,,,aggregator,per_1m_output_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786404+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3-12b-it,,,,aggregator,per_1m_input_tokens,0.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786408+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3-12b-it,,,,aggregator,per_1m_output_tokens,0.13,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786412+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-a,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786416+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-a,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786420+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-mini-search-preview,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786425+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-mini-search-preview,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786430+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-search-preview,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786435+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-search-preview,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786439+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,rekaai/reka-flash-3,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786444+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,rekaai/reka-flash-3,,,,aggregator,per_1m_output_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786450+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3-27b-it,,,,aggregator,per_1m_input_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786455+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-3-27b-it,,,,aggregator,per_1m_output_tokens,0.16,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786459+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/skyfall-36b-v2,,,,aggregator,per_1m_input_tokens,0.55,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786464+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/skyfall-36b-v2,,,,aggregator,per_1m_output_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786468+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-reasoning-pro,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786473+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-reasoning-pro,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786477+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-pro,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786481+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-pro,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786485+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-deep-research,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786490+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar-deep-research,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786494+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-saba,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786498+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-saba,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786502+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-guard-3-8b,,,,aggregator,per_1m_input_tokens,0.48400000000000004,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786508+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-guard-3-8b,,,,aggregator,per_1m_output_tokens,0.03,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786513+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-mini-high,,,,aggregator,per_1m_input_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786517+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-mini-high,,,,aggregator,per_1m_output_tokens,4.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786521+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-1.0,,,,aggregator,per_1m_input_tokens,4.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786525+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-1.0,,,,aggregator,per_1m_output_tokens,8.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786529+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-1.0-mini,,,,aggregator,per_1m_input_tokens,0.7,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786535+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-1.0-mini,,,,aggregator,per_1m_output_tokens,1.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786540+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-rp-llama-3.1-8b,,,,aggregator,per_1m_input_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786544+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,aion-labs/aion-rp-llama-3.1-8b,,,,aggregator,per_1m_output_tokens,1.5999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786548+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen2.5-vl-72b-instruct,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786553+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen2.5-vl-72b-instruct,,,,aggregator,per_1m_output_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786557+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-plus,,,,aggregator,per_1m_input_tokens,0.26,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786561+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-plus,,,,aggregator,per_1m_output_tokens,0.78,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786565+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-mini,,,,aggregator,per_1m_input_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786570+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o3-mini,,,,aggregator,per_1m_output_tokens,4.4,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786574+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-24b-instruct-2501,,,,aggregator,per_1m_input_tokens,0.049999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786578+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-small-24b-instruct-2501,,,,aggregator,per_1m_output_tokens,0.08,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786582+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1-distill-qwen-32b,,,,aggregator,per_1m_input_tokens,0.29,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786586+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1-distill-qwen-32b,,,,aggregator,per_1m_output_tokens,0.29,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786591+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786595+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,perplexity/sonar,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786599+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1-distill-llama-70b,,,,aggregator,per_1m_input_tokens,0.7,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786604+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1-distill-llama-70b,,,,aggregator,per_1m_output_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786608+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1,deepseek-r1,deepseek,1.0,aggregator,per_1m_input_tokens,0.7,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786612+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-r1,deepseek-r1,deepseek,1.0,aggregator,per_1m_output_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786616+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-01,,,,aggregator,per_1m_input_tokens,0.19999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786621+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,minimax/minimax-01,,,,aggregator,per_1m_output_tokens,1.1,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786626+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,microsoft/phi-4,,,,aggregator,per_1m_input_tokens,0.065,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786631+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,microsoft/phi-4,,,,aggregator,per_1m_output_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786635+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3.1-70b-hanami-x1,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786639+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3.1-70b-hanami-x1,,,,aggregator,per_1m_output_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786645+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-chat,deepseek-v3,deepseek,1.0,aggregator,per_1m_input_tokens,0.20020000000000002,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786649+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,deepseek/deepseek-chat,deepseek-v3,deepseek,1.0,aggregator,per_1m_output_tokens,0.8000999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786654+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3.3-euryale-70b,,,,aggregator,per_1m_input_tokens,0.65,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786658+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3.3-euryale-70b,,,,aggregator,per_1m_output_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786662+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o1,,,,aggregator,per_1m_input_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786667+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/o1,,,,aggregator,per_1m_output_tokens,60.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786672+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-r7b-12-2024,,,,aggregator,per_1m_input_tokens,0.0375,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786677+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-r7b-12-2024,,,,aggregator,per_1m_output_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786681+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.3-70b-instruct,,,,aggregator,per_1m_input_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786686+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.3-70b-instruct,,,,aggregator,per_1m_output_tokens,0.32,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786690+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-lite-v1,,,,aggregator,per_1m_input_tokens,0.06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786694+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-lite-v1,,,,aggregator,per_1m_output_tokens,0.24,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786698+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-micro-v1,,,,aggregator,per_1m_input_tokens,0.035,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786703+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-micro-v1,,,,aggregator,per_1m_output_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786707+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-pro-v1,,,,aggregator,per_1m_input_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786711+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,amazon/nova-pro-v1,,,,aggregator,per_1m_output_tokens,3.1999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786715+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-2024-11-20,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786720+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-2024-11-20,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786724+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-large-2407,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786728+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-large-2407,,,,aggregator,per_1m_output_tokens,6.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786732+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-2.5-coder-32b-instruct,,,,aggregator,per_1m_input_tokens,0.66,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786737+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-2.5-coder-32b-instruct,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786741+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/unslopnemo-12b,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786745+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/unslopnemo-12b,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786750+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-3.5-haiku,,,,aggregator,per_1m_input_tokens,0.7999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786754+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-3.5-haiku,,,,aggregator,per_1m_output_tokens,4.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786758+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthracite-org/magnum-v4-72b,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786763+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthracite-org/magnum-v4-72b,,,,aggregator,per_1m_output_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786767+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-2.5-7b-instruct,,,,aggregator,per_1m_input_tokens,0.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786771+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-2.5-7b-instruct,,,,aggregator,per_1m_output_tokens,0.09999999999999999,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786776+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inflection/inflection-3-productivity,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786786+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inflection/inflection-3-productivity,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786791+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inflection/inflection-3-pi,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786795+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,inflection/inflection-3-pi,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786800+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/rocinante-12b,,,,aggregator,per_1m_input_tokens,0.16999999999999998,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786804+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,thedrummer/rocinante-12b,,,,aggregator,per_1m_output_tokens,0.43,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786810+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.2-3b-instruct,,,,aggregator,per_1m_input_tokens,0.0509,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786815+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.2-3b-instruct,,,,aggregator,per_1m_output_tokens,0.335,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786819+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.2-1b-instruct,,,,aggregator,per_1m_input_tokens,0.027,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786824+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.2-1b-instruct,,,,aggregator,per_1m_output_tokens,0.201,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786828+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.2-11b-vision-instruct,,,,aggregator,per_1m_input_tokens,0.245,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786832+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.2-11b-vision-instruct,,,,aggregator,per_1m_output_tokens,0.245,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786837+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-2.5-72b-instruct,,,,aggregator,per_1m_input_tokens,0.36,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786841+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,qwen/qwen-2.5-72b-instruct,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786845+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-r-plus-08-2024,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786850+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-r-plus-08-2024,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786854+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-r-08-2024,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786858+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,cohere/command-r-08-2024,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786862+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3.1-euryale-70b,,,,aggregator,per_1m_input_tokens,0.85,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786867+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3.1-euryale-70b,,,,aggregator,per_1m_output_tokens,0.85,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786871+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-3-llama-3.1-70b,,,,aggregator,per_1m_input_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786875+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-3-llama-3.1-70b,,,,aggregator,per_1m_output_tokens,0.3,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786880+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-3-llama-3.1-405b,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786884+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,nousresearch/hermes-3-llama-3.1-405b,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786889+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3-lunaris-8b,,,,aggregator,per_1m_input_tokens,0.04,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786893+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,sao10k/l3-lunaris-8b,,,,aggregator,per_1m_output_tokens,0.049999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786897+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-2024-08-06,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786901+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-2024-08-06,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786906+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.1-8b-instruct,,,,aggregator,per_1m_input_tokens,0.02,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786910+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.1-8b-instruct,,,,aggregator,per_1m_output_tokens,0.03,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786914+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.1-70b-instruct,,,,aggregator,per_1m_input_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786919+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3.1-70b-instruct,,,,aggregator,per_1m_output_tokens,0.39999999999999997,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786925+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-nemo,,,,aggregator,per_1m_input_tokens,0.02,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786929+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-nemo,,,,aggregator,per_1m_output_tokens,0.03,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786934+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-mini-2024-07-18,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786938+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-mini-2024-07-18,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786942+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-mini,,,,aggregator,per_1m_input_tokens,0.15,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786947+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-mini,,,,aggregator,per_1m_output_tokens,0.6,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786951+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-2-27b-it,,,,aggregator,per_1m_input_tokens,0.65,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786956+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,google/gemma-2-27b-it,,,,aggregator,per_1m_output_tokens,0.65,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786960+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-2024-05-13,,,,aggregator,per_1m_input_tokens,5.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786964+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o-2024-05-13,,,,aggregator,per_1m_output_tokens,15.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786968+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o,,,,aggregator,per_1m_input_tokens,2.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786972+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4o,,,,aggregator,per_1m_output_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786976+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3-8b-instruct,,,,aggregator,per_1m_input_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786981+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3-8b-instruct,,,,aggregator,per_1m_output_tokens,0.14,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786986+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3-70b-instruct,,,,aggregator,per_1m_input_tokens,0.51,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786991+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,meta-llama/llama-3-70b-instruct,,,,aggregator,per_1m_output_tokens,0.74,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.786996+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mixtral-8x22b-instruct,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787001+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mixtral-8x22b-instruct,,,,aggregator,per_1m_output_tokens,6.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787005+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,microsoft/wizardlm-2-8x22b,,,,aggregator,per_1m_input_tokens,0.62,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787009+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,microsoft/wizardlm-2-8x22b,,,,aggregator,per_1m_output_tokens,0.62,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787013+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4-turbo,,,,aggregator,per_1m_input_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787018+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4-turbo,,,,aggregator,per_1m_output_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787022+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-3-haiku,,,,aggregator,per_1m_input_tokens,0.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787026+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,anthropic/claude-3-haiku,,,,aggregator,per_1m_output_tokens,1.25,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787030+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-large,,,,aggregator,per_1m_input_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787035+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mistralai/mistral-large,,,,aggregator,per_1m_output_tokens,6.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787039+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4-turbo-preview,,,,aggregator,per_1m_input_tokens,10.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787043+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4-turbo-preview,,,,aggregator,per_1m_output_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787047+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo-0613,,,,aggregator,per_1m_input_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787051+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo-0613,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787055+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo-instruct,,,,aggregator,per_1m_input_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787062+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo-instruct,,,,aggregator,per_1m_output_tokens,2.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787066+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo-16k,,,,aggregator,per_1m_input_tokens,3.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787070+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo-16k,,,,aggregator,per_1m_output_tokens,4.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787074+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mancer/weaver,,,,aggregator,per_1m_input_tokens,0.75,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787078+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,mancer/weaver,,,,aggregator,per_1m_output_tokens,1.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787083+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,undi95/remm-slerp-l2-13b,,,,aggregator,per_1m_input_tokens,0.44999999999999996,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787087+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,undi95/remm-slerp-l2-13b,,,,aggregator,per_1m_output_tokens,0.65,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787091+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,gryphe/mythomax-l2-13b,,,,aggregator,per_1m_input_tokens,0.06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787095+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,gryphe/mythomax-l2-13b,,,,aggregator,per_1m_output_tokens,0.06,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787100+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4,,,,aggregator,per_1m_input_tokens,30.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787104+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-4,,,,aggregator,per_1m_output_tokens,60.0,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787108+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo,,,,aggregator,per_1m_input_tokens,0.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787112+00:00,high,json-api, +2026-06-07,openrouter,OpenRouter,openai/gpt-3.5-turbo,,,,aggregator,per_1m_output_tokens,1.5,https://openrouter.ai/api/v1/models,2026-06-07T06:46:33.787117+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,doubao-seedance-2-0-fast-260128,,,,mixed,per_1m_input_tokens,7.0,https://relaydance.com/pricing,2026-06-07T06:46:33.955663+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,doubao-seedance-2-0-fast-260128,,,,mixed,per_1m_output_tokens,7.0,https://relaydance.com/pricing,2026-06-07T06:46:33.955682+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-1-5-pro-no-audio,,,,mixed,per_1m_input_tokens,1.5,https://relaydance.com/pricing,2026-06-07T06:46:33.955691+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-1-5-pro-no-audio,,,,mixed,per_1m_output_tokens,1.5,https://relaydance.com/pricing,2026-06-07T06:46:33.955697+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-fast-nsfw,,,,mixed,per_1m_input_tokens,7.0,https://relaydance.com/pricing,2026-06-07T06:46:33.955702+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-fast-nsfw,,,,mixed,per_1m_output_tokens,7.0,https://relaydance.com/pricing,2026-06-07T06:46:33.955707+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-nsfw,,,,mixed,per_1m_input_tokens,8.75,https://relaydance.com/pricing,2026-06-07T06:46:33.955711+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-nsfw,,,,mixed,per_1m_output_tokens,8.75,https://relaydance.com/pricing,2026-06-07T06:46:33.955716+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-imagine-video-1.5-preview,grok-imagine-video-1.5,grok,4.0,mixed,per_1m_input_tokens,2.0834,https://relaydance.com/pricing,2026-06-07T06:46:33.955720+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-imagine-video-1.5-preview,grok-imagine-video-1.5,grok,4.0,mixed,per_1m_output_tokens,2.0834,https://relaydance.com/pricing,2026-06-07T06:46:33.955726+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.20-multi-agent-0309,,,,mixed,per_1m_input_tokens,1.125,https://relaydance.com/pricing,2026-06-07T06:46:33.955730+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.20-multi-agent-0309,,,,mixed,per_1m_output_tokens,2.25,https://relaydance.com/pricing,2026-06-07T06:46:33.955735+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,happyhorse-1.0-r2v,,,,mixed,per_second,0.1391,https://relaydance.com/pricing,2026-06-07T06:46:33.955744+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-1-5-pro-with-audio,,,,mixed,per_1m_input_tokens,3.0,https://relaydance.com/pricing,2026-06-07T06:46:33.955749+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-1-5-pro-with-audio,,,,mixed,per_1m_output_tokens,3.0,https://relaydance.com/pricing,2026-06-07T06:46:33.955753+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,doubao-seedance-2-0-720p,,,,mixed,per_1m_input_tokens,8.75,https://relaydance.com/pricing,2026-06-07T06:46:33.955758+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,doubao-seedance-2-0-720p,,,,mixed,per_1m_output_tokens,8.75,https://relaydance.com/pricing,2026-06-07T06:46:33.955762+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,doubao-seedance-2-0-1080p,,,,mixed,per_1m_input_tokens,9.625,https://relaydance.com/pricing,2026-06-07T06:46:33.955766+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,doubao-seedance-2-0-1080p,,,,mixed,per_1m_output_tokens,9.625,https://relaydance.com/pricing,2026-06-07T06:46:33.955770+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-nsfw-720p,,,,mixed,per_1m_input_tokens,8.75,https://relaydance.com/pricing,2026-06-07T06:46:33.955775+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-nsfw-720p,,,,mixed,per_1m_output_tokens,8.75,https://relaydance.com/pricing,2026-06-07T06:46:33.955779+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,happyhorse-1.0-video-edit,,,,mixed,per_second,0.1391,https://relaydance.com/pricing,2026-06-07T06:46:33.955785+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.20-0309-reasoning,,,,mixed,per_1m_input_tokens,1.125,https://relaydance.com/pricing,2026-06-07T06:46:33.955790+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.20-0309-reasoning,,,,mixed,per_1m_output_tokens,2.25,https://relaydance.com/pricing,2026-06-07T06:46:33.955794+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-imagine-image-quality,,,,mixed,per_image,0.045,https://relaydance.com/pricing,2026-06-07T06:46:33.955800+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-imagine-image,,,,mixed,per_image,0.018,https://relaydance.com/pricing,2026-06-07T06:46:33.955807+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.3,grok-4.3,grok,3.0,mixed,per_1m_input_tokens,1.125,https://relaydance.com/pricing,2026-06-07T06:46:33.955812+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.3,grok-4.3,grok,3.0,mixed,per_1m_output_tokens,2.25,https://relaydance.com/pricing,2026-06-07T06:46:33.955817+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-build-0.1,,,,mixed,per_1m_input_tokens,0.9,https://relaydance.com/pricing,2026-06-07T06:46:33.955821+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-build-0.1,,,,mixed,per_1m_output_tokens,1.8,https://relaydance.com/pricing,2026-06-07T06:46:33.955825+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-nsfw-1080p,,,,mixed,per_1m_input_tokens,9.625,https://relaydance.com/pricing,2026-06-07T06:46:33.955830+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,seedance-nsfw-1080p,,,,mixed,per_1m_output_tokens,9.625,https://relaydance.com/pricing,2026-06-07T06:46:33.955834+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-imagine-video,grok-imagine-video-1.5,grok,4.0,mixed,per_1m_input_tokens,2.0834,https://relaydance.com/pricing,2026-06-07T06:46:33.955838+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-imagine-video,grok-imagine-video-1.5,grok,4.0,mixed,per_1m_output_tokens,2.0834,https://relaydance.com/pricing,2026-06-07T06:46:33.955842+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,happyhorse-1.0-t2v,,,,mixed,per_second,0.1391,https://relaydance.com/pricing,2026-06-07T06:46:33.955849+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,happyhorse-1.0-i2v,,,,mixed,per_second,0.1391,https://relaydance.com/pricing,2026-06-07T06:46:33.955854+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.20-0309-non-reasoning,,,,mixed,per_1m_input_tokens,1.125,https://relaydance.com/pricing,2026-06-07T06:46:33.955859+00:00,high,json-api, +2026-06-07,relaydance,Relaydance,grok-4.20-0309-non-reasoning,,,,mixed,per_1m_output_tokens,2.25,https://relaydance.com/pricing,2026-06-07T06:46:33.955863+00:00,high,json-api, diff --git a/data/prices.latest.json b/data/prices.latest.json index 55e9120..70acf39 100644 --- a/data/prices.latest.json +++ b/data/prices.latest.json @@ -1,7 +1,7 @@ { "schema_version": 1, "snapshot_date": "2026-06-07", - "generated_at": "2026-06-07T04:59:07.344912+00:00", + "generated_at": "2026-06-07T06:46:34.086636+00:00", "record_count": 1024, "records": [ { @@ -15,7 +15,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.216, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857672+00:00", + "captured_at": "2026-06-07T06:46:33.622821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -31,7 +31,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.88, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857718+00:00", + "captured_at": "2026-06-07T06:46:33.622856+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -47,7 +47,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.18, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857727+00:00", + "captured_at": "2026-06-07T06:46:33.622865+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -63,7 +63,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857740+00:00", + "captured_at": "2026-06-07T06:46:33.622877+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -79,7 +79,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857746+00:00", + "captured_at": "2026-06-07T06:46:33.622883+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -95,7 +95,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857752+00:00", + "captured_at": "2026-06-07T06:46:33.622889+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -111,7 +111,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857763+00:00", + "captured_at": "2026-06-07T06:46:33.622896+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -127,7 +127,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.1500000000000004, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857769+00:00", + "captured_at": "2026-06-07T06:46:33.622904+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -143,7 +143,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.35, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857774+00:00", + "captured_at": "2026-06-07T06:46:33.622910+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -159,7 +159,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857780+00:00", + "captured_at": "2026-06-07T06:46:33.622919+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -175,7 +175,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857788+00:00", + "captured_at": "2026-06-07T06:46:33.622924+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -191,7 +191,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.7, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857794+00:00", + "captured_at": "2026-06-07T06:46:33.622929+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -207,7 +207,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.78, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857802+00:00", + "captured_at": "2026-06-07T06:46:33.622938+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -223,7 +223,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.8, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857807+00:00", + "captured_at": "2026-06-07T06:46:33.622943+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -239,7 +239,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857812+00:00", + "captured_at": "2026-06-07T06:46:33.622948+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -255,7 +255,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857819+00:00", + "captured_at": "2026-06-07T06:46:33.622955+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -271,7 +271,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.88, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857824+00:00", + "captured_at": "2026-06-07T06:46:33.622961+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -287,7 +287,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857829+00:00", + "captured_at": "2026-06-07T06:46:33.622966+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -303,7 +303,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857836+00:00", + "captured_at": "2026-06-07T06:46:33.622973+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -319,7 +319,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857840+00:00", + "captured_at": "2026-06-07T06:46:33.622977+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -335,7 +335,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857845+00:00", + "captured_at": "2026-06-07T06:46:33.622982+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -351,7 +351,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857852+00:00", + "captured_at": "2026-06-07T06:46:33.622989+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -367,7 +367,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857858+00:00", + "captured_at": "2026-06-07T06:46:33.622994+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -383,7 +383,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857863+00:00", + "captured_at": "2026-06-07T06:46:33.622999+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -399,7 +399,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857869+00:00", + "captured_at": "2026-06-07T06:46:33.623005+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -415,7 +415,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857875+00:00", + "captured_at": "2026-06-07T06:46:33.623010+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -431,7 +431,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857880+00:00", + "captured_at": "2026-06-07T06:46:33.623015+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -447,7 +447,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857887+00:00", + "captured_at": "2026-06-07T06:46:33.623021+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -463,7 +463,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857892+00:00", + "captured_at": "2026-06-07T06:46:33.623026+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -479,7 +479,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857897+00:00", + "captured_at": "2026-06-07T06:46:33.623033+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -495,7 +495,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857904+00:00", + "captured_at": "2026-06-07T06:46:33.623040+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -511,7 +511,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857909+00:00", + "captured_at": "2026-06-07T06:46:33.623045+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -527,7 +527,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857914+00:00", + "captured_at": "2026-06-07T06:46:33.623050+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -543,7 +543,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857920+00:00", + "captured_at": "2026-06-07T06:46:33.623056+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -559,7 +559,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857925+00:00", + "captured_at": "2026-06-07T06:46:33.623060+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -575,7 +575,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857930+00:00", + "captured_at": "2026-06-07T06:46:33.623065+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -591,7 +591,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857936+00:00", + "captured_at": "2026-06-07T06:46:33.623071+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -607,7 +607,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.41, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857943+00:00", + "captured_at": "2026-06-07T06:46:33.623076+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -623,7 +623,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857948+00:00", + "captured_at": "2026-06-07T06:46:33.623081+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -639,7 +639,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857954+00:00", + "captured_at": "2026-06-07T06:46:33.623087+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -655,7 +655,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857959+00:00", + "captured_at": "2026-06-07T06:46:33.623094+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -671,7 +671,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.11, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857966+00:00", + "captured_at": "2026-06-07T06:46:33.623099+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -687,7 +687,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.255, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857973+00:00", + "captured_at": "2026-06-07T06:46:33.623105+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -703,7 +703,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857978+00:00", + "captured_at": "2026-06-07T06:46:33.623110+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -719,7 +719,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857983+00:00", + "captured_at": "2026-06-07T06:46:33.623114+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -735,7 +735,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857989+00:00", + "captured_at": "2026-06-07T06:46:33.623121+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -751,7 +751,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857996+00:00", + "captured_at": "2026-06-07T06:46:33.623126+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -767,7 +767,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858001+00:00", + "captured_at": "2026-06-07T06:46:33.623130+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -783,7 +783,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858007+00:00", + "captured_at": "2026-06-07T06:46:33.623138+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -799,7 +799,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858012+00:00", + "captured_at": "2026-06-07T06:46:33.623143+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -815,7 +815,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858016+00:00", + "captured_at": "2026-06-07T06:46:33.623148+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -831,7 +831,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858022+00:00", + "captured_at": "2026-06-07T06:46:33.623154+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -847,7 +847,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858028+00:00", + "captured_at": "2026-06-07T06:46:33.623159+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -863,7 +863,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858033+00:00", + "captured_at": "2026-06-07T06:46:33.623164+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -879,7 +879,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858039+00:00", + "captured_at": "2026-06-07T06:46:33.623170+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -895,7 +895,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858044+00:00", + "captured_at": "2026-06-07T06:46:33.623175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -911,7 +911,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858051+00:00", + "captured_at": "2026-06-07T06:46:33.623179+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -927,7 +927,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858058+00:00", + "captured_at": "2026-06-07T06:46:33.623185+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -943,7 +943,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858063+00:00", + "captured_at": "2026-06-07T06:46:33.623190+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -959,7 +959,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.01, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858068+00:00", + "captured_at": "2026-06-07T06:46:33.623195+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -975,7 +975,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858075+00:00", + "captured_at": "2026-06-07T06:46:33.623200+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -991,7 +991,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858083+00:00", + "captured_at": "2026-06-07T06:46:33.623205+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1007,7 +1007,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.01, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858087+00:00", + "captured_at": "2026-06-07T06:46:33.623210+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1023,7 +1023,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858094+00:00", + "captured_at": "2026-06-07T06:46:33.623216+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1039,7 +1039,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858099+00:00", + "captured_at": "2026-06-07T06:46:33.623221+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1055,7 +1055,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858104+00:00", + "captured_at": "2026-06-07T06:46:33.623226+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1071,7 +1071,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858110+00:00", + "captured_at": "2026-06-07T06:46:33.623232+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1087,7 +1087,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858115+00:00", + "captured_at": "2026-06-07T06:46:33.623237+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1103,7 +1103,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858120+00:00", + "captured_at": "2026-06-07T06:46:33.623242+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1119,7 +1119,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858126+00:00", + "captured_at": "2026-06-07T06:46:33.623250+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1135,7 +1135,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858130+00:00", + "captured_at": "2026-06-07T06:46:33.623255+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1151,7 +1151,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858135+00:00", + "captured_at": "2026-06-07T06:46:33.623261+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1167,7 +1167,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858144+00:00", + "captured_at": "2026-06-07T06:46:33.623267+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1183,7 +1183,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858149+00:00", + "captured_at": "2026-06-07T06:46:33.623272+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1199,7 +1199,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858154+00:00", + "captured_at": "2026-06-07T06:46:33.623277+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1215,7 +1215,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858160+00:00", + "captured_at": "2026-06-07T06:46:33.623283+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1231,7 +1231,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858165+00:00", + "captured_at": "2026-06-07T06:46:33.623287+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1247,7 +1247,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858171+00:00", + "captured_at": "2026-06-07T06:46:33.623293+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1263,7 +1263,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858177+00:00", + "captured_at": "2026-06-07T06:46:33.623299+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1279,7 +1279,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858181+00:00", + "captured_at": "2026-06-07T06:46:33.623304+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1295,7 +1295,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.075, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858186+00:00", + "captured_at": "2026-06-07T06:46:33.623309+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1311,7 +1311,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858192+00:00", + "captured_at": "2026-06-07T06:46:33.623315+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1327,7 +1327,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858197+00:00", + "captured_at": "2026-06-07T06:46:33.623320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1343,7 +1343,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858202+00:00", + "captured_at": "2026-06-07T06:46:33.623324+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1359,7 +1359,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858208+00:00", + "captured_at": "2026-06-07T06:46:33.623330+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1375,7 +1375,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858212+00:00", + "captured_at": "2026-06-07T06:46:33.623335+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1391,7 +1391,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858219+00:00", + "captured_at": "2026-06-07T06:46:33.623340+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1407,7 +1407,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858225+00:00", + "captured_at": "2026-06-07T06:46:33.623346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1423,7 +1423,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858230+00:00", + "captured_at": "2026-06-07T06:46:33.623350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1439,7 +1439,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858234+00:00", + "captured_at": "2026-06-07T06:46:33.623355+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1455,7 +1455,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858240+00:00", + "captured_at": "2026-06-07T06:46:33.623361+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1471,7 +1471,7 @@ "unit": "per_1m_output_tokens", "price_usd": 60.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858246+00:00", + "captured_at": "2026-06-07T06:46:33.623366+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1487,7 +1487,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 7.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858250+00:00", + "captured_at": "2026-06-07T06:46:33.623371+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1503,7 +1503,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858257+00:00", + "captured_at": "2026-06-07T06:46:33.623377+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1519,7 +1519,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858262+00:00", + "captured_at": "2026-06-07T06:46:33.623382+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1535,7 +1535,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858267+00:00", + "captured_at": "2026-06-07T06:46:33.623387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1551,7 +1551,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858273+00:00", + "captured_at": "2026-06-07T06:46:33.623393+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1567,7 +1567,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858278+00:00", + "captured_at": "2026-06-07T06:46:33.623397+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1583,7 +1583,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858282+00:00", + "captured_at": "2026-06-07T06:46:33.623402+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1599,7 +1599,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858289+00:00", + "captured_at": "2026-06-07T06:46:33.623408+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1615,7 +1615,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858293+00:00", + "captured_at": "2026-06-07T06:46:33.623413+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1631,7 +1631,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858298+00:00", + "captured_at": "2026-06-07T06:46:33.623418+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1647,7 +1647,7 @@ "unit": "per_1m_input_tokens", "price_usd": 20.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858304+00:00", + "captured_at": "2026-06-07T06:46:33.623426+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1663,7 +1663,7 @@ "unit": "per_1m_output_tokens", "price_usd": 80.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858311+00:00", + "captured_at": "2026-06-07T06:46:33.623431+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1679,7 +1679,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 20.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858316+00:00", + "captured_at": "2026-06-07T06:46:33.623435+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1695,7 +1695,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858323+00:00", + "captured_at": "2026-06-07T06:46:33.623442+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1711,7 +1711,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858328+00:00", + "captured_at": "2026-06-07T06:46:33.623447+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1727,7 +1727,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858333+00:00", + "captured_at": "2026-06-07T06:46:33.623452+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1743,7 +1743,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858339+00:00", + "captured_at": "2026-06-07T06:46:33.623458+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1759,7 +1759,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858347+00:00", + "captured_at": "2026-06-07T06:46:33.623465+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1775,7 +1775,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858352+00:00", + "captured_at": "2026-06-07T06:46:33.623470+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1791,7 +1791,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858358+00:00", + "captured_at": "2026-06-07T06:46:33.623476+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1807,7 +1807,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858363+00:00", + "captured_at": "2026-06-07T06:46:33.623481+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1823,7 +1823,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858368+00:00", + "captured_at": "2026-06-07T06:46:33.623486+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1839,7 +1839,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858374+00:00", + "captured_at": "2026-06-07T06:46:33.623492+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1855,7 +1855,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858379+00:00", + "captured_at": "2026-06-07T06:46:33.623497+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1871,7 +1871,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858383+00:00", + "captured_at": "2026-06-07T06:46:33.623501+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1887,7 +1887,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858390+00:00", + "captured_at": "2026-06-07T06:46:33.623507+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1903,7 +1903,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858395+00:00", + "captured_at": "2026-06-07T06:46:33.623512+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1919,7 +1919,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858399+00:00", + "captured_at": "2026-06-07T06:46:33.623517+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1935,7 +1935,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858406+00:00", + "captured_at": "2026-06-07T06:46:33.623525+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1951,7 +1951,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.38, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858410+00:00", + "captured_at": "2026-06-07T06:46:33.623530+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1967,7 +1967,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858415+00:00", + "captured_at": "2026-06-07T06:46:33.623536+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1983,7 +1983,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858422+00:00", + "captured_at": "2026-06-07T06:46:33.623542+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1999,7 +1999,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858426+00:00", + "captured_at": "2026-06-07T06:46:33.623547+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2015,7 +2015,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858431+00:00", + "captured_at": "2026-06-07T06:46:33.623552+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2031,7 +2031,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858440+00:00", + "captured_at": "2026-06-07T06:46:33.623558+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2047,7 +2047,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858447+00:00", + "captured_at": "2026-06-07T06:46:33.623563+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2063,7 +2063,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858452+00:00", + "captured_at": "2026-06-07T06:46:33.623568+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2079,7 +2079,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858459+00:00", + "captured_at": "2026-06-07T06:46:33.623574+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2095,7 +2095,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858464+00:00", + "captured_at": "2026-06-07T06:46:33.623579+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2111,7 +2111,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858469+00:00", + "captured_at": "2026-06-07T06:46:33.623584+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2127,7 +2127,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858475+00:00", + "captured_at": "2026-06-07T06:46:33.623590+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2143,7 +2143,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858480+00:00", + "captured_at": "2026-06-07T06:46:33.623597+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2159,7 +2159,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858487+00:00", + "captured_at": "2026-06-07T06:46:33.623601+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2175,7 +2175,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858493+00:00", + "captured_at": "2026-06-07T06:46:33.623609+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2191,7 +2191,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858498+00:00", + "captured_at": "2026-06-07T06:46:33.623614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2207,7 +2207,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.005, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858502+00:00", + "captured_at": "2026-06-07T06:46:33.623619+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2223,7 +2223,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858509+00:00", + "captured_at": "2026-06-07T06:46:33.623625+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2239,7 +2239,7 @@ "unit": "per_1m_output_tokens", "price_usd": 120.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858513+00:00", + "captured_at": "2026-06-07T06:46:33.623630+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2255,7 +2255,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858518+00:00", + "captured_at": "2026-06-07T06:46:33.623634+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2271,7 +2271,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858525+00:00", + "captured_at": "2026-06-07T06:46:33.623640+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2287,7 +2287,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858529+00:00", + "captured_at": "2026-06-07T06:46:33.623647+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2303,7 +2303,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858534+00:00", + "captured_at": "2026-06-07T06:46:33.623652+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2319,7 +2319,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858540+00:00", + "captured_at": "2026-06-07T06:46:33.623658+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2335,7 +2335,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858545+00:00", + "captured_at": "2026-06-07T06:46:33.623662+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2351,7 +2351,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858549+00:00", + "captured_at": "2026-06-07T06:46:33.623667+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2367,7 +2367,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858555+00:00", + "captured_at": "2026-06-07T06:46:33.623673+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2383,7 +2383,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858560+00:00", + "captured_at": "2026-06-07T06:46:33.623677+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2399,7 +2399,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858565+00:00", + "captured_at": "2026-06-07T06:46:33.623684+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2415,7 +2415,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858572+00:00", + "captured_at": "2026-06-07T06:46:33.623691+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2431,7 +2431,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858577+00:00", + "captured_at": "2026-06-07T06:46:33.623695+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2447,7 +2447,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858582+00:00", + "captured_at": "2026-06-07T06:46:33.623700+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2463,7 +2463,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858588+00:00", + "captured_at": "2026-06-07T06:46:33.623706+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2479,7 +2479,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858592+00:00", + "captured_at": "2026-06-07T06:46:33.623710+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2495,7 +2495,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858597+00:00", + "captured_at": "2026-06-07T06:46:33.623715+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2511,7 +2511,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858603+00:00", + "captured_at": "2026-06-07T06:46:33.623721+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2527,7 +2527,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858608+00:00", + "captured_at": "2026-06-07T06:46:33.623726+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2543,7 +2543,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858613+00:00", + "captured_at": "2026-06-07T06:46:33.623731+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2559,7 +2559,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.52, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858619+00:00", + "captured_at": "2026-06-07T06:46:33.623737+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2575,7 +2575,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.85, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858624+00:00", + "captured_at": "2026-06-07T06:46:33.623741+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2591,7 +2591,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.12, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858629+00:00", + "captured_at": "2026-06-07T06:46:33.623746+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2607,7 +2607,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.29, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858635+00:00", + "captured_at": "2026-06-07T06:46:33.623752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2623,7 +2623,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858641+00:00", + "captured_at": "2026-06-07T06:46:33.623757+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2639,7 +2639,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858645+00:00", + "captured_at": "2026-06-07T06:46:33.623763+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2655,7 +2655,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858656+00:00", + "captured_at": "2026-06-07T06:46:33.623769+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2671,7 +2671,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858663+00:00", + "captured_at": "2026-06-07T06:46:33.623774+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2687,7 +2687,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858668+00:00", + "captured_at": "2026-06-07T06:46:33.623779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2703,7 +2703,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858675+00:00", + "captured_at": "2026-06-07T06:46:33.623785+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2719,7 +2719,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858680+00:00", + "captured_at": "2026-06-07T06:46:33.623790+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2735,7 +2735,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.075, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858684+00:00", + "captured_at": "2026-06-07T06:46:33.623795+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2751,7 +2751,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858691+00:00", + "captured_at": "2026-06-07T06:46:33.623801+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2767,7 +2767,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858695+00:00", + "captured_at": "2026-06-07T06:46:33.623805+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2783,7 +2783,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858701+00:00", + "captured_at": "2026-06-07T06:46:33.623811+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2799,7 +2799,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.28, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858707+00:00", + "captured_at": "2026-06-07T06:46:33.623817+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2815,7 +2815,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858713+00:00", + "captured_at": "2026-06-07T06:46:33.623821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2831,7 +2831,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.28, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858717+00:00", + "captured_at": "2026-06-07T06:46:33.623826+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2847,7 +2847,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858723+00:00", + "captured_at": "2026-06-07T06:46:33.623832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2863,7 +2863,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858728+00:00", + "captured_at": "2026-06-07T06:46:33.623836+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2879,7 +2879,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858732+00:00", + "captured_at": "2026-06-07T06:46:33.623841+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2895,7 +2895,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858739+00:00", + "captured_at": "2026-06-07T06:46:33.623847+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2911,7 +2911,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858745+00:00", + "captured_at": "2026-06-07T06:46:33.623851+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2927,7 +2927,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858751+00:00", + "captured_at": "2026-06-07T06:46:33.623856+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2943,7 +2943,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858757+00:00", + "captured_at": "2026-06-07T06:46:33.623862+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2959,7 +2959,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858761+00:00", + "captured_at": "2026-06-07T06:46:33.623867+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2975,7 +2975,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858766+00:00", + "captured_at": "2026-06-07T06:46:33.623871+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2991,7 +2991,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858773+00:00", + "captured_at": "2026-06-07T06:46:33.623877+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3007,7 +3007,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858778+00:00", + "captured_at": "2026-06-07T06:46:33.623882+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3023,7 +3023,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.04, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858783+00:00", + "captured_at": "2026-06-07T06:46:33.623887+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3039,7 +3039,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858789+00:00", + "captured_at": "2026-06-07T06:46:33.623895+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3055,7 +3055,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858793+00:00", + "captured_at": "2026-06-07T06:46:33.623899+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3071,7 +3071,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858798+00:00", + "captured_at": "2026-06-07T06:46:33.623904+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3087,7 +3087,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858805+00:00", + "captured_at": "2026-06-07T06:46:33.623912+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3103,7 +3103,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858809+00:00", + "captured_at": "2026-06-07T06:46:33.623917+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3119,7 +3119,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858814+00:00", + "captured_at": "2026-06-07T06:46:33.623921+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3135,7 +3135,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858820+00:00", + "captured_at": "2026-06-07T06:46:33.623930+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3151,7 +3151,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858827+00:00", + "captured_at": "2026-06-07T06:46:33.623934+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3167,7 +3167,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858834+00:00", + "captured_at": "2026-06-07T06:46:33.623939+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3183,7 +3183,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858840+00:00", + "captured_at": "2026-06-07T06:46:33.623945+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3199,7 +3199,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858845+00:00", + "captured_at": "2026-06-07T06:46:33.623950+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3215,7 +3215,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858849+00:00", + "captured_at": "2026-06-07T06:46:33.623954+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3231,7 +3231,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858855+00:00", + "captured_at": "2026-06-07T06:46:33.623961+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3247,7 +3247,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858860+00:00", + "captured_at": "2026-06-07T06:46:33.623966+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3263,7 +3263,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858864+00:00", + "captured_at": "2026-06-07T06:46:33.623971+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3279,7 +3279,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858873+00:00", + "captured_at": "2026-06-07T06:46:33.623977+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3295,7 +3295,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858878+00:00", + "captured_at": "2026-06-07T06:46:33.623981+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3311,7 +3311,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858898+00:00", + "captured_at": "2026-06-07T06:46:33.623986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3327,7 +3327,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858905+00:00", + "captured_at": "2026-06-07T06:46:33.623992+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3343,7 +3343,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858910+00:00", + "captured_at": "2026-06-07T06:46:33.623996+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3359,7 +3359,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858914+00:00", + "captured_at": "2026-06-07T06:46:33.624001+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3375,7 +3375,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858921+00:00", + "captured_at": "2026-06-07T06:46:33.624007+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3391,7 +3391,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858926+00:00", + "captured_at": "2026-06-07T06:46:33.624012+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3407,7 +3407,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858931+00:00", + "captured_at": "2026-06-07T06:46:33.624016+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3423,7 +3423,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.49, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858937+00:00", + "captured_at": "2026-06-07T06:46:33.624022+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3439,7 +3439,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858942+00:00", + "captured_at": "2026-06-07T06:46:33.624027+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3455,7 +3455,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858947+00:00", + "captured_at": "2026-06-07T06:46:33.624032+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3471,7 +3471,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858953+00:00", + "captured_at": "2026-06-07T06:46:33.624038+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3487,7 +3487,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858958+00:00", + "captured_at": "2026-06-07T06:46:33.624042+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3503,7 +3503,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858963+00:00", + "captured_at": "2026-06-07T06:46:33.624047+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3519,7 +3519,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858969+00:00", + "captured_at": "2026-06-07T06:46:33.624053+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3535,7 +3535,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858973+00:00", + "captured_at": "2026-06-07T06:46:33.624057+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3551,7 +3551,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858978+00:00", + "captured_at": "2026-06-07T06:46:33.624062+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3567,7 +3567,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.295, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858984+00:00", + "captured_at": "2026-06-07T06:46:33.624068+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3583,7 +3583,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858989+00:00", + "captured_at": "2026-06-07T06:46:33.624073+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3599,7 +3599,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858993+00:00", + "captured_at": "2026-06-07T06:46:33.624077+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3615,7 +3615,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858999+00:00", + "captured_at": "2026-06-07T06:46:33.624083+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3631,7 +3631,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859004+00:00", + "captured_at": "2026-06-07T06:46:33.624090+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3647,7 +3647,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859011+00:00", + "captured_at": "2026-06-07T06:46:33.624095+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3663,7 +3663,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859017+00:00", + "captured_at": "2026-06-07T06:46:33.624101+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3679,7 +3679,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859022+00:00", + "captured_at": "2026-06-07T06:46:33.624108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3695,7 +3695,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859027+00:00", + "captured_at": "2026-06-07T06:46:33.624113+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3711,7 +3711,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859033+00:00", + "captured_at": "2026-06-07T06:46:33.624119+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3727,7 +3727,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859038+00:00", + "captured_at": "2026-06-07T06:46:33.624124+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3743,7 +3743,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859043+00:00", + "captured_at": "2026-06-07T06:46:33.624129+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3759,7 +3759,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.18, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859050+00:00", + "captured_at": "2026-06-07T06:46:33.624135+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3775,7 +3775,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.35, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859054+00:00", + "captured_at": "2026-06-07T06:46:33.624140+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3791,7 +3791,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.18, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859059+00:00", + "captured_at": "2026-06-07T06:46:33.624144+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3807,7 +3807,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859065+00:00", + "captured_at": "2026-06-07T06:46:33.624150+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3823,7 +3823,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.4, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859070+00:00", + "captured_at": "2026-06-07T06:46:33.624155+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3839,7 +3839,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859074+00:00", + "captured_at": "2026-06-07T06:46:33.624160+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3855,7 +3855,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.22499999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859081+00:00", + "captured_at": "2026-06-07T06:46:33.624166+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3871,7 +3871,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859086+00:00", + "captured_at": "2026-06-07T06:46:33.624170+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3887,7 +3887,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.22499999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859090+00:00", + "captured_at": "2026-06-07T06:46:33.624175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3903,7 +3903,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859096+00:00", + "captured_at": "2026-06-07T06:46:33.624181+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3919,7 +3919,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.16, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859101+00:00", + "captured_at": "2026-06-07T06:46:33.624186+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3935,7 +3935,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859106+00:00", + "captured_at": "2026-06-07T06:46:33.624190+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3951,7 +3951,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859114+00:00", + "captured_at": "2026-06-07T06:46:33.624197+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3967,7 +3967,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859119+00:00", + "captured_at": "2026-06-07T06:46:33.624202+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3983,7 +3983,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859124+00:00", + "captured_at": "2026-06-07T06:46:33.624206+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3999,7 +3999,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859130+00:00", + "captured_at": "2026-06-07T06:46:33.624212+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4015,7 +4015,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859134+00:00", + "captured_at": "2026-06-07T06:46:33.624217+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4031,7 +4031,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859139+00:00", + "captured_at": "2026-06-07T06:46:33.624221+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4047,7 +4047,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859145+00:00", + "captured_at": "2026-06-07T06:46:33.624227+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4063,7 +4063,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.28, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859152+00:00", + "captured_at": "2026-06-07T06:46:33.624232+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4079,7 +4079,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.028, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859157+00:00", + "captured_at": "2026-06-07T06:46:33.624237+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4095,7 +4095,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859163+00:00", + "captured_at": "2026-06-07T06:46:33.624243+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4111,7 +4111,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859168+00:00", + "captured_at": "2026-06-07T06:46:33.624248+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4127,7 +4127,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859173+00:00", + "captured_at": "2026-06-07T06:46:33.624254+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4143,7 +4143,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859198+00:00", + "captured_at": "2026-06-07T06:46:33.624260+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4159,7 +4159,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859203+00:00", + "captured_at": "2026-06-07T06:46:33.624264+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4175,7 +4175,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859209+00:00", + "captured_at": "2026-06-07T06:46:33.624269+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4191,7 +4191,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859217+00:00", + "captured_at": "2026-06-07T06:46:33.624275+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4207,7 +4207,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859222+00:00", + "captured_at": "2026-06-07T06:46:33.624280+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4223,7 +4223,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.24, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859227+00:00", + "captured_at": "2026-06-07T06:46:33.624284+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4239,7 +4239,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859233+00:00", + "captured_at": "2026-06-07T06:46:33.624293+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4255,7 +4255,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859238+00:00", + "captured_at": "2026-06-07T06:46:33.624297+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4271,7 +4271,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859243+00:00", + "captured_at": "2026-06-07T06:46:33.624302+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4287,7 +4287,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859249+00:00", + "captured_at": "2026-06-07T06:46:33.624308+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4303,7 +4303,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859254+00:00", + "captured_at": "2026-06-07T06:46:33.624313+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4319,7 +4319,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859258+00:00", + "captured_at": "2026-06-07T06:46:33.624320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4335,7 +4335,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859264+00:00", + "captured_at": "2026-06-07T06:46:33.624326+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4351,7 +4351,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859269+00:00", + "captured_at": "2026-06-07T06:46:33.624330+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4367,7 +4367,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859274+00:00", + "captured_at": "2026-06-07T06:46:33.624335+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4383,7 +4383,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859280+00:00", + "captured_at": "2026-06-07T06:46:33.624341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4399,7 +4399,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859286+00:00", + "captured_at": "2026-06-07T06:46:33.624346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4415,7 +4415,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859290+00:00", + "captured_at": "2026-06-07T06:46:33.624350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4431,7 +4431,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859296+00:00", + "captured_at": "2026-06-07T06:46:33.624356+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4447,7 +4447,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859301+00:00", + "captured_at": "2026-06-07T06:46:33.624361+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4463,7 +4463,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859306+00:00", + "captured_at": "2026-06-07T06:46:33.624365+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4479,7 +4479,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.26, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859312+00:00", + "captured_at": "2026-06-07T06:46:33.624371+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4495,7 +4495,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.9600000000000004, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859316+00:00", + "captured_at": "2026-06-07T06:46:33.624376+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4511,7 +4511,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.234, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859321+00:00", + "captured_at": "2026-06-07T06:46:33.624383+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4527,7 +4527,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.325, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859328+00:00", + "captured_at": "2026-06-07T06:46:33.624389+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4543,7 +4543,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859332+00:00", + "captured_at": "2026-06-07T06:46:33.624394+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4559,7 +4559,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.0325, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859337+00:00", + "captured_at": "2026-06-07T06:46:33.624398+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4575,7 +4575,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859343+00:00", + "captured_at": "2026-06-07T06:46:33.624404+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4591,7 +4591,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859350+00:00", + "captured_at": "2026-06-07T06:46:33.624409+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4607,7 +4607,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.24, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859355+00:00", + "captured_at": "2026-06-07T06:46:33.624413+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4623,7 +4623,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859361+00:00", + "captured_at": "2026-06-07T06:46:33.624421+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4639,7 +4639,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859368+00:00", + "captured_at": "2026-06-07T06:46:33.624426+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4655,7 +4655,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859372+00:00", + "captured_at": "2026-06-07T06:46:33.624431+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4671,7 +4671,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859379+00:00", + "captured_at": "2026-06-07T06:46:33.624437+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4687,7 +4687,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859383+00:00", + "captured_at": "2026-06-07T06:46:33.624445+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4703,7 +4703,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.16, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859388+00:00", + "captured_at": "2026-06-07T06:46:33.624450+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4719,7 +4719,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.16119999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859395+00:00", + "captured_at": "2026-06-07T06:46:33.624456+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4735,7 +4735,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.9652499999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859400+00:00", + "captured_at": "2026-06-07T06:46:33.624461+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4751,7 +4751,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.16119999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859405+00:00", + "captured_at": "2026-06-07T06:46:33.624465+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4767,7 +4767,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.68, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859518+00:00", + "captured_at": "2026-06-07T06:46:33.624473+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4783,7 +4783,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.38, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859540+00:00", + "captured_at": "2026-06-07T06:46:33.624478+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4799,7 +4799,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859547+00:00", + "captured_at": "2026-06-07T06:46:33.624483+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4815,7 +4815,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859559+00:00", + "captured_at": "2026-06-07T06:46:33.624489+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4831,7 +4831,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859564+00:00", + "captured_at": "2026-06-07T06:46:33.624494+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4847,7 +4847,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859572+00:00", + "captured_at": "2026-06-07T06:46:33.624500+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4863,7 +4863,7 @@ "unit": "per_1m_output_tokens", "price_usd": 9.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859577+00:00", + "captured_at": "2026-06-07T06:46:33.624505+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4879,7 +4879,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859581+00:00", + "captured_at": "2026-06-07T06:46:33.624509+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4895,7 +4895,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859589+00:00", + "captured_at": "2026-06-07T06:46:33.624515+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4911,7 +4911,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859593+00:00", + "captured_at": "2026-06-07T06:46:33.624520+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4927,7 +4927,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859598+00:00", + "captured_at": "2026-06-07T06:46:33.624525+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4943,7 +4943,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859604+00:00", + "captured_at": "2026-06-07T06:46:33.624531+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4959,7 +4959,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859610+00:00", + "captured_at": "2026-06-07T06:46:33.624538+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4975,7 +4975,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859614+00:00", + "captured_at": "2026-06-07T06:46:33.624543+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4991,7 +4991,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859621+00:00", + "captured_at": "2026-06-07T06:46:33.624551+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5007,7 +5007,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859626+00:00", + "captured_at": "2026-06-07T06:46:33.624556+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5023,7 +5023,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859631+00:00", + "captured_at": "2026-06-07T06:46:33.624561+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5039,7 +5039,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859637+00:00", + "captured_at": "2026-06-07T06:46:33.624566+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5055,7 +5055,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859642+00:00", + "captured_at": "2026-06-07T06:46:33.624571+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5071,7 +5071,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859647+00:00", + "captured_at": "2026-06-07T06:46:33.624576+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5087,7 +5087,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859653+00:00", + "captured_at": "2026-06-07T06:46:33.624582+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5103,7 +5103,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859658+00:00", + "captured_at": "2026-06-07T06:46:33.624586+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5119,7 +5119,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859663+00:00", + "captured_at": "2026-06-07T06:46:33.624593+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5135,7 +5135,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859673+00:00", + "captured_at": "2026-06-07T06:46:33.624599+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5151,7 +5151,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859678+00:00", + "captured_at": "2026-06-07T06:46:33.624603+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5167,7 +5167,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859683+00:00", + "captured_at": "2026-06-07T06:46:33.624608+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5183,7 +5183,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859689+00:00", + "captured_at": "2026-06-07T06:46:33.624614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5199,7 +5199,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859694+00:00", + "captured_at": "2026-06-07T06:46:33.624619+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5215,7 +5215,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859704+00:00", + "captured_at": "2026-06-07T06:46:33.624623+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5231,7 +5231,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859716+00:00", + "captured_at": "2026-06-07T06:46:33.624629+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5247,7 +5247,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859721+00:00", + "captured_at": "2026-06-07T06:46:33.624634+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5263,7 +5263,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859726+00:00", + "captured_at": "2026-06-07T06:46:33.624639+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5279,7 +5279,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859732+00:00", + "captured_at": "2026-06-07T06:46:33.624644+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5295,7 +5295,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859737+00:00", + "captured_at": "2026-06-07T06:46:33.624649+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5311,7 +5311,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859741+00:00", + "captured_at": "2026-06-07T06:46:33.624654+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5327,7 +5327,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859747+00:00", + "captured_at": "2026-06-07T06:46:33.624660+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5343,7 +5343,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859752+00:00", + "captured_at": "2026-06-07T06:46:33.624664+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5359,7 +5359,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859756+00:00", + "captured_at": "2026-06-07T06:46:33.624669+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5375,7 +5375,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859763+00:00", + "captured_at": "2026-06-07T06:46:33.624675+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5391,7 +5391,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859767+00:00", + "captured_at": "2026-06-07T06:46:33.624682+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5407,7 +5407,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859772+00:00", + "captured_at": "2026-06-07T06:46:33.624686+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5423,7 +5423,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859778+00:00", + "captured_at": "2026-06-07T06:46:33.624692+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5439,7 +5439,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859783+00:00", + "captured_at": "2026-06-07T06:46:33.624699+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5455,7 +5455,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859787+00:00", + "captured_at": "2026-06-07T06:46:33.624703+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5471,7 +5471,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859794+00:00", + "captured_at": "2026-06-07T06:46:33.624710+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5487,7 +5487,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859798+00:00", + "captured_at": "2026-06-07T06:46:33.624715+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5503,7 +5503,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859803+00:00", + "captured_at": "2026-06-07T06:46:33.624719+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5519,7 +5519,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859809+00:00", + "captured_at": "2026-06-07T06:46:33.624725+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5535,7 +5535,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859813+00:00", + "captured_at": "2026-06-07T06:46:33.624730+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5551,7 +5551,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859818+00:00", + "captured_at": "2026-06-07T06:46:33.624734+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5567,7 +5567,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859824+00:00", + "captured_at": "2026-06-07T06:46:33.624741+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5583,7 +5583,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859828+00:00", + "captured_at": "2026-06-07T06:46:33.624746+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5599,7 +5599,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859833+00:00", + "captured_at": "2026-06-07T06:46:33.624752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5615,7 +5615,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010888+00:00", + "captured_at": "2026-06-07T06:46:33.784244+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5631,7 +5631,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010912+00:00", + "captured_at": "2026-06-07T06:46:33.784267+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5647,7 +5647,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010920+00:00", + "captured_at": "2026-06-07T06:46:33.784278+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5663,7 +5663,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010928+00:00", + "captured_at": "2026-06-07T06:46:33.784283+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5679,7 +5679,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010933+00:00", + "captured_at": "2026-06-07T06:46:33.784289+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5695,7 +5695,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010938+00:00", + "captured_at": "2026-06-07T06:46:33.784296+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5711,7 +5711,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010943+00:00", + "captured_at": "2026-06-07T06:46:33.784300+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5727,7 +5727,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010947+00:00", + "captured_at": "2026-06-07T06:46:33.784305+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5743,7 +5743,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010952+00:00", + "captured_at": "2026-06-07T06:46:33.784310+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5759,7 +5759,7 @@ "unit": "per_1m_output_tokens", "price_usd": 50.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010956+00:00", + "captured_at": "2026-06-07T06:46:33.784314+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5775,7 +5775,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010960+00:00", + "captured_at": "2026-06-07T06:46:33.784319+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5791,7 +5791,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010965+00:00", + "captured_at": "2026-06-07T06:46:33.784323+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5807,7 +5807,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010969+00:00", + "captured_at": "2026-06-07T06:46:33.784328+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5823,7 +5823,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010974+00:00", + "captured_at": "2026-06-07T06:46:33.784332+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5839,7 +5839,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010978+00:00", + "captured_at": "2026-06-07T06:46:33.784336+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5855,7 +5855,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010982+00:00", + "captured_at": "2026-06-07T06:46:33.784341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5871,7 +5871,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010987+00:00", + "captured_at": "2026-06-07T06:46:33.784345+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5887,7 +5887,7 @@ "unit": "per_1m_output_tokens", "price_usd": 9.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010991+00:00", + "captured_at": "2026-06-07T06:46:33.784350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5903,7 +5903,7 @@ "unit": "per_image", "price_usd": 1.5e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010996+00:00", + "captured_at": "2026-06-07T06:46:33.784354+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5919,7 +5919,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011001+00:00", + "captured_at": "2026-06-07T06:46:33.784359+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5935,7 +5935,7 @@ "unit": "per_1m_output_tokens", "price_usd": 150.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011005+00:00", + "captured_at": "2026-06-07T06:46:33.784364+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5951,7 +5951,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011011+00:00", + "captured_at": "2026-06-07T06:46:33.784369+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5967,7 +5967,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011017+00:00", + "captured_at": "2026-06-07T06:46:33.784374+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5983,7 +5983,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011023+00:00", + "captured_at": "2026-06-07T06:46:33.784378+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5999,7 +5999,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.625, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011028+00:00", + "captured_at": "2026-06-07T06:46:33.784382+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6015,7 +6015,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011032+00:00", + "captured_at": "2026-06-07T06:46:33.784387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6031,7 +6031,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011038+00:00", + "captured_at": "2026-06-07T06:46:33.784391+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6047,7 +6047,7 @@ "unit": "per_image", "price_usd": 2.5e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011043+00:00", + "captured_at": "2026-06-07T06:46:33.784396+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6063,7 +6063,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011048+00:00", + "captured_at": "2026-06-07T06:46:33.784401+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6079,7 +6079,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011052+00:00", + "captured_at": "2026-06-07T06:46:33.784405+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6095,7 +6095,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011057+00:00", + "captured_at": "2026-06-07T06:46:33.784410+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6111,7 +6111,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011061+00:00", + "captured_at": "2026-06-07T06:46:33.784414+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6127,7 +6127,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011065+00:00", + "captured_at": "2026-06-07T06:46:33.784419+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6143,7 +6143,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011069+00:00", + "captured_at": "2026-06-07T06:46:33.784425+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6159,7 +6159,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011076+00:00", + "captured_at": "2026-06-07T06:46:33.784430+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6175,7 +6175,7 @@ "unit": "per_1m_output_tokens", "price_usd": 7.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011080+00:00", + "captured_at": "2026-06-07T06:46:33.784434+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6191,7 +6191,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011087+00:00", + "captured_at": "2026-06-07T06:46:33.784441+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6207,7 +6207,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011091+00:00", + "captured_at": "2026-06-07T06:46:33.784445+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6223,7 +6223,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011095+00:00", + "captured_at": "2026-06-07T06:46:33.784449+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6239,7 +6239,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011099+00:00", + "captured_at": "2026-06-07T06:46:33.784454+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6255,7 +6255,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011104+00:00", + "captured_at": "2026-06-07T06:46:33.784458+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6271,7 +6271,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011108+00:00", + "captured_at": "2026-06-07T06:46:33.784463+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6287,7 +6287,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011113+00:00", + "captured_at": "2026-06-07T06:46:33.784467+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6303,7 +6303,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.684, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011117+00:00", + "captured_at": "2026-06-07T06:46:33.784471+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6319,7 +6319,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.42, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011121+00:00", + "captured_at": "2026-06-07T06:46:33.784477+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6335,7 +6335,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011126+00:00", + "captured_at": "2026-06-07T06:46:33.784484+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6351,7 +6351,7 @@ "unit": "per_1m_output_tokens", "price_usd": 9.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011130+00:00", + "captured_at": "2026-06-07T06:46:33.784488+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6367,7 +6367,7 @@ "unit": "per_image", "price_usd": 1.5e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011134+00:00", + "captured_at": "2026-06-07T06:46:33.784492+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6383,7 +6383,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011139+00:00", + "captured_at": "2026-06-07T06:46:33.784496+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6399,7 +6399,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011143+00:00", + "captured_at": "2026-06-07T06:46:33.784501+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6415,7 +6415,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011147+00:00", + "captured_at": "2026-06-07T06:46:33.784505+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6431,7 +6431,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011151+00:00", + "captured_at": "2026-06-07T06:46:33.784509+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6447,7 +6447,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011155+00:00", + "captured_at": "2026-06-07T06:46:33.784513+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6463,7 +6463,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011160+00:00", + "captured_at": "2026-06-07T06:46:33.784518+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6479,7 +6479,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.1875, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011164+00:00", + "captured_at": "2026-06-07T06:46:33.784522+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6495,7 +6495,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.125, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011168+00:00", + "captured_at": "2026-06-07T06:46:33.784526+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6511,7 +6511,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011173+00:00", + "captured_at": "2026-06-07T06:46:33.784531+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6527,7 +6527,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011177+00:00", + "captured_at": "2026-06-07T06:46:33.784535+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6543,7 +6543,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011182+00:00", + "captured_at": "2026-06-07T06:46:33.784539+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6559,7 +6559,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.24, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011186+00:00", + "captured_at": "2026-06-07T06:46:33.784543+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6575,7 +6575,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.28900000000000003, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011190+00:00", + "captured_at": "2026-06-07T06:46:33.784548+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6591,7 +6591,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011194+00:00", + "captured_at": "2026-06-07T06:46:33.784552+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6607,7 +6607,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011200+00:00", + "captured_at": "2026-06-07T06:46:33.784556+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6623,7 +6623,7 @@ "unit": "per_1m_output_tokens", "price_usd": 180.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011205+00:00", + "captured_at": "2026-06-07T06:46:33.784562+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6639,7 +6639,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011211+00:00", + "captured_at": "2026-06-07T06:46:33.784567+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6655,7 +6655,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011215+00:00", + "captured_at": "2026-06-07T06:46:33.784571+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6671,7 +6671,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.435, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011220+00:00", + "captured_at": "2026-06-07T06:46:33.784576+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6687,7 +6687,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.87, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011224+00:00", + "captured_at": "2026-06-07T06:46:33.784580+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6703,7 +6703,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0983, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011229+00:00", + "captured_at": "2026-06-07T06:46:33.784585+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6719,7 +6719,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.1966, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011233+00:00", + "captured_at": "2026-06-07T06:46:33.784589+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6735,7 +6735,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011237+00:00", + "captured_at": "2026-06-07T06:46:33.784593+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6751,7 +6751,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.625, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011241+00:00", + "captured_at": "2026-06-07T06:46:33.784598+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6767,7 +6767,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.063, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011246+00:00", + "captured_at": "2026-06-07T06:46:33.784602+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6783,7 +6783,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.21, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011250+00:00", + "captured_at": "2026-06-07T06:46:33.784606+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6799,7 +6799,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.435, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011254+00:00", + "captured_at": "2026-06-07T06:46:33.784610+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6815,7 +6815,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.87, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011258+00:00", + "captured_at": "2026-06-07T06:46:33.784614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6831,7 +6831,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011262+00:00", + "captured_at": "2026-06-07T06:46:33.784619+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6847,7 +6847,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.28, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011267+00:00", + "captured_at": "2026-06-07T06:46:33.784624+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6863,7 +6863,7 @@ "unit": "per_1m_input_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011272+00:00", + "captured_at": "2026-06-07T06:46:33.784628+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6879,7 +6879,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011276+00:00", + "captured_at": "2026-06-07T06:46:33.784633+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6895,7 +6895,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.01, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011280+00:00", + "captured_at": "2026-06-07T06:46:33.784637+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6911,7 +6911,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011284+00:00", + "captured_at": "2026-06-07T06:46:33.784641+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6927,7 +6927,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011289+00:00", + "captured_at": "2026-06-07T06:46:33.784646+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6943,7 +6943,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011293+00:00", + "captured_at": "2026-06-07T06:46:33.784650+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6959,7 +6959,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.684, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011298+00:00", + "captured_at": "2026-06-07T06:46:33.784655+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6975,7 +6975,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.42, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011302+00:00", + "captured_at": "2026-06-07T06:46:33.784661+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6991,7 +6991,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011307+00:00", + "captured_at": "2026-06-07T06:46:33.784666+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7007,7 +7007,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011311+00:00", + "captured_at": "2026-06-07T06:46:33.784670+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7023,7 +7023,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011315+00:00", + "captured_at": "2026-06-07T06:46:33.784675+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7039,7 +7039,7 @@ "unit": "per_1m_output_tokens", "price_usd": 150.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011320+00:00", + "captured_at": "2026-06-07T06:46:33.784679+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7055,7 +7055,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.98, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011324+00:00", + "captured_at": "2026-06-07T06:46:33.784683+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7071,7 +7071,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011328+00:00", + "captured_at": "2026-06-07T06:46:33.784687+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7087,7 +7087,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011335+00:00", + "captured_at": "2026-06-07T06:46:33.784692+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7103,7 +7103,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.33, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011340+00:00", + "captured_at": "2026-06-07T06:46:33.784697+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7119,7 +7119,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.12, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011345+00:00", + "captured_at": "2026-06-07T06:46:33.784702+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7135,7 +7135,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.36, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011349+00:00", + "captured_at": "2026-06-07T06:46:33.784707+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7151,7 +7151,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.325, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011355+00:00", + "captured_at": "2026-06-07T06:46:33.784712+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7167,7 +7167,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.95, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011359+00:00", + "captured_at": "2026-06-07T06:46:33.784716+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7183,7 +7183,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011364+00:00", + "captured_at": "2026-06-07T06:46:33.784720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7199,7 +7199,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011368+00:00", + "captured_at": "2026-06-07T06:46:33.784725+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7215,7 +7215,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.22, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011372+00:00", + "captured_at": "2026-06-07T06:46:33.784729+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7231,7 +7231,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011377+00:00", + "captured_at": "2026-06-07T06:46:33.784733+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7247,7 +7247,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011447+00:00", + "captured_at": "2026-06-07T06:46:33.784737+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7263,7 +7263,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011451+00:00", + "captured_at": "2026-06-07T06:46:33.784743+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7279,7 +7279,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011456+00:00", + "captured_at": "2026-06-07T06:46:33.784748+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7295,7 +7295,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011461+00:00", + "captured_at": "2026-06-07T06:46:33.784752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7311,7 +7311,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011466+00:00", + "captured_at": "2026-06-07T06:46:33.784757+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7327,7 +7327,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011470+00:00", + "captured_at": "2026-06-07T06:46:33.784761+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7343,7 +7343,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011474+00:00", + "captured_at": "2026-06-07T06:46:33.784766+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7359,7 +7359,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011479+00:00", + "captured_at": "2026-06-07T06:46:33.784770+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7375,7 +7375,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27899999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011483+00:00", + "captured_at": "2026-06-07T06:46:33.784775+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7391,7 +7391,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011488+00:00", + "captured_at": "2026-06-07T06:46:33.784779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7407,7 +7407,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011492+00:00", + "captured_at": "2026-06-07T06:46:33.784783+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7423,7 +7423,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011497+00:00", + "captured_at": "2026-06-07T06:46:33.784788+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7439,7 +7439,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011501+00:00", + "captured_at": "2026-06-07T06:46:33.784792+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7455,7 +7455,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011505+00:00", + "captured_at": "2026-06-07T06:46:33.784796+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7471,7 +7471,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011509+00:00", + "captured_at": "2026-06-07T06:46:33.784800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7487,7 +7487,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011514+00:00", + "captured_at": "2026-06-07T06:46:33.784805+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7503,7 +7503,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011518+00:00", + "captured_at": "2026-06-07T06:46:33.784809+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7519,7 +7519,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011522+00:00", + "captured_at": "2026-06-07T06:46:33.784813+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7535,7 +7535,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011527+00:00", + "captured_at": "2026-06-07T06:46:33.784818+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7551,7 +7551,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.44999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011531+00:00", + "captured_at": "2026-06-07T06:46:33.784822+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7567,7 +7567,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011536+00:00", + "captured_at": "2026-06-07T06:46:33.784828+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7583,7 +7583,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011540+00:00", + "captured_at": "2026-06-07T06:46:33.784832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7599,7 +7599,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011544+00:00", + "captured_at": "2026-06-07T06:46:33.784837+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7615,7 +7615,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011548+00:00", + "captured_at": "2026-06-07T06:46:33.784842+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7631,7 +7631,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011553+00:00", + "captured_at": "2026-06-07T06:46:33.784848+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7647,7 +7647,7 @@ "unit": "per_1m_output_tokens", "price_usd": 180.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011559+00:00", + "captured_at": "2026-06-07T06:46:33.784853+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7663,7 +7663,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011564+00:00", + "captured_at": "2026-06-07T06:46:33.784859+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7679,7 +7679,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011568+00:00", + "captured_at": "2026-06-07T06:46:33.784864+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7695,7 +7695,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011573+00:00", + "captured_at": "2026-06-07T06:46:33.784868+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7711,7 +7711,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011577+00:00", + "captured_at": "2026-06-07T06:46:33.784873+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7727,7 +7727,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011582+00:00", + "captured_at": "2026-06-07T06:46:33.784877+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7743,7 +7743,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011586+00:00", + "captured_at": "2026-06-07T06:46:33.784881+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7759,7 +7759,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011591+00:00", + "captured_at": "2026-06-07T06:46:33.784885+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7775,7 +7775,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011595+00:00", + "captured_at": "2026-06-07T06:46:33.784889+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7791,7 +7791,7 @@ "unit": "per_image", "price_usd": 2.5e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011599+00:00", + "captured_at": "2026-06-07T06:46:33.784894+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7807,7 +7807,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011604+00:00", + "captured_at": "2026-06-07T06:46:33.784898+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7823,7 +7823,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011608+00:00", + "captured_at": "2026-06-07T06:46:33.784902+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7839,7 +7839,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011612+00:00", + "captured_at": "2026-06-07T06:46:33.784907+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7855,7 +7855,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011617+00:00", + "captured_at": "2026-06-07T06:46:33.784911+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7871,7 +7871,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011621+00:00", + "captured_at": "2026-06-07T06:46:33.784915+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7887,7 +7887,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011627+00:00", + "captured_at": "2026-06-07T06:46:33.784919+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7903,7 +7903,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.195, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011631+00:00", + "captured_at": "2026-06-07T06:46:33.784924+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7919,7 +7919,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.56, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011636+00:00", + "captured_at": "2026-06-07T06:46:33.784928+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7935,7 +7935,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011640+00:00", + "captured_at": "2026-06-07T06:46:33.784933+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7951,7 +7951,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011645+00:00", + "captured_at": "2026-06-07T06:46:33.784937+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7967,7 +7967,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.065, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011649+00:00", + "captured_at": "2026-06-07T06:46:33.784941+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7983,7 +7983,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011653+00:00", + "captured_at": "2026-06-07T06:46:33.784945+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7999,7 +7999,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011658+00:00", + "captured_at": "2026-06-07T06:46:33.784950+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8015,7 +8015,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.12, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011662+00:00", + "captured_at": "2026-06-07T06:46:33.784954+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8031,7 +8031,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011667+00:00", + "captured_at": "2026-06-07T06:46:33.784959+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8047,7 +8047,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011672+00:00", + "captured_at": "2026-06-07T06:46:33.784963+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8063,7 +8063,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011676+00:00", + "captured_at": "2026-06-07T06:46:33.784967+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8079,7 +8079,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011680+00:00", + "captured_at": "2026-06-07T06:46:33.784972+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8095,7 +8095,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011685+00:00", + "captured_at": "2026-06-07T06:46:33.784976+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8111,7 +8111,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011689+00:00", + "captured_at": "2026-06-07T06:46:33.784980+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8127,7 +8127,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011693+00:00", + "captured_at": "2026-06-07T06:46:33.784986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8143,7 +8143,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011700+00:00", + "captured_at": "2026-06-07T06:46:33.784991+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8159,7 +8159,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011704+00:00", + "captured_at": "2026-06-07T06:46:33.784995+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8175,7 +8175,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011708+00:00", + "captured_at": "2026-06-07T06:46:33.784999+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8191,7 +8191,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011713+00:00", + "captured_at": "2026-06-07T06:46:33.785003+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8207,7 +8207,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011717+00:00", + "captured_at": "2026-06-07T06:46:33.785007+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8223,7 +8223,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011722+00:00", + "captured_at": "2026-06-07T06:46:33.785012+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8239,7 +8239,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.56, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011735+00:00", + "captured_at": "2026-06-07T06:46:33.785018+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8255,7 +8255,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011741+00:00", + "captured_at": "2026-06-07T06:46:33.785024+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8271,7 +8271,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.34, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011745+00:00", + "captured_at": "2026-06-07T06:46:33.785028+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8287,7 +8287,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011749+00:00", + "captured_at": "2026-06-07T06:46:33.785032+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8303,7 +8303,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011754+00:00", + "captured_at": "2026-06-07T06:46:33.785037+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8319,7 +8319,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011760+00:00", + "captured_at": "2026-06-07T06:46:33.785041+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8335,7 +8335,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.92, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011766+00:00", + "captured_at": "2026-06-07T06:46:33.785045+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8351,7 +8351,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011771+00:00", + "captured_at": "2026-06-07T06:46:33.785050+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8367,7 +8367,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011775+00:00", + "captured_at": "2026-06-07T06:46:33.785054+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8383,7 +8383,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011780+00:00", + "captured_at": "2026-06-07T06:46:33.785059+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8399,7 +8399,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011784+00:00", + "captured_at": "2026-06-07T06:46:33.785063+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8415,7 +8415,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.11, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011788+00:00", + "captured_at": "2026-06-07T06:46:33.785069+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8431,7 +8431,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011793+00:00", + "captured_at": "2026-06-07T06:46:33.785073+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8447,7 +8447,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011798+00:00", + "captured_at": "2026-06-07T06:46:33.785078+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8463,7 +8463,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011802+00:00", + "captured_at": "2026-06-07T06:46:33.785082+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8479,7 +8479,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011806+00:00", + "captured_at": "2026-06-07T06:46:33.785087+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8495,7 +8495,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011810+00:00", + "captured_at": "2026-06-07T06:46:33.785091+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8511,7 +8511,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011815+00:00", + "captured_at": "2026-06-07T06:46:33.785095+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8527,7 +8527,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011821+00:00", + "captured_at": "2026-06-07T06:46:33.785099+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8543,7 +8543,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011825+00:00", + "captured_at": "2026-06-07T06:46:33.785104+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8559,7 +8559,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011829+00:00", + "captured_at": "2026-06-07T06:46:33.785108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8575,7 +8575,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011834+00:00", + "captured_at": "2026-06-07T06:46:33.785112+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8591,7 +8591,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011838+00:00", + "captured_at": "2026-06-07T06:46:33.785117+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8607,7 +8607,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011844+00:00", + "captured_at": "2026-06-07T06:46:33.785122+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8623,7 +8623,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011848+00:00", + "captured_at": "2026-06-07T06:46:33.785128+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8639,7 +8639,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011854+00:00", + "captured_at": "2026-06-07T06:46:33.785132+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8655,7 +8655,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011859+00:00", + "captured_at": "2026-06-07T06:46:33.785137+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8671,7 +8671,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011863+00:00", + "captured_at": "2026-06-07T06:46:33.785141+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8687,7 +8687,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011867+00:00", + "captured_at": "2026-06-07T06:46:33.785145+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8703,7 +8703,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011872+00:00", + "captured_at": "2026-06-07T06:46:33.785150+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8719,7 +8719,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011876+00:00", + "captured_at": "2026-06-07T06:46:33.785154+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8735,7 +8735,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011880+00:00", + "captured_at": "2026-06-07T06:46:33.785158+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8751,7 +8751,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011884+00:00", + "captured_at": "2026-06-07T06:46:33.785162+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8767,7 +8767,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011889+00:00", + "captured_at": "2026-06-07T06:46:33.785167+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8783,7 +8783,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011893+00:00", + "captured_at": "2026-06-07T06:46:33.785171+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8799,7 +8799,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.29, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011903+00:00", + "captured_at": "2026-06-07T06:46:33.785175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8815,7 +8815,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011907+00:00", + "captured_at": "2026-06-07T06:46:33.785180+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8831,7 +8831,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011911+00:00", + "captured_at": "2026-06-07T06:46:33.785184+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8847,7 +8847,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011916+00:00", + "captured_at": "2026-06-07T06:46:33.785188+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8863,7 +8863,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011920+00:00", + "captured_at": "2026-06-07T06:46:33.785192+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8879,7 +8879,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011924+00:00", + "captured_at": "2026-06-07T06:46:33.785197+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8895,7 +8895,7 @@ "unit": "per_image", "price_usd": 5e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011928+00:00", + "captured_at": "2026-06-07T06:46:33.785203+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8911,7 +8911,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011933+00:00", + "captured_at": "2026-06-07T06:46:33.785208+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8927,7 +8927,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011937+00:00", + "captured_at": "2026-06-07T06:46:33.785212+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8943,7 +8943,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011942+00:00", + "captured_at": "2026-06-07T06:46:33.785217+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8959,7 +8959,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011954+00:00", + "captured_at": "2026-06-07T06:46:33.785221+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8975,7 +8975,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011959+00:00", + "captured_at": "2026-06-07T06:46:33.785226+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8991,7 +8991,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011972+00:00", + "captured_at": "2026-06-07T06:46:33.785230+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9007,7 +9007,7 @@ "unit": "per_1m_input_tokens", "price_usd": 21.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011978+00:00", + "captured_at": "2026-06-07T06:46:33.785235+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9023,7 +9023,7 @@ "unit": "per_1m_output_tokens", "price_usd": 168.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011983+00:00", + "captured_at": "2026-06-07T06:46:33.785240+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9039,7 +9039,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011987+00:00", + "captured_at": "2026-06-07T06:46:33.785244+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9055,7 +9055,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011991+00:00", + "captured_at": "2026-06-07T06:46:33.785248+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9071,7 +9071,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011996+00:00", + "captured_at": "2026-06-07T06:46:33.785253+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9087,7 +9087,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012000+00:00", + "captured_at": "2026-06-07T06:46:33.785257+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9103,7 +9103,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012005+00:00", + "captured_at": "2026-06-07T06:46:33.785261+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9119,7 +9119,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012009+00:00", + "captured_at": "2026-06-07T06:46:33.785267+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9135,7 +9135,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012016+00:00", + "captured_at": "2026-06-07T06:46:33.785272+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9151,7 +9151,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012020+00:00", + "captured_at": "2026-06-07T06:46:33.785276+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9167,7 +9167,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.135, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012027+00:00", + "captured_at": "2026-06-07T06:46:33.785281+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9183,7 +9183,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012031+00:00", + "captured_at": "2026-06-07T06:46:33.785285+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9199,7 +9199,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012036+00:00", + "captured_at": "2026-06-07T06:46:33.785289+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9215,7 +9215,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012040+00:00", + "captured_at": "2026-06-07T06:46:33.785293+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9231,7 +9231,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012045+00:00", + "captured_at": "2026-06-07T06:46:33.785298+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9247,7 +9247,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012050+00:00", + "captured_at": "2026-06-07T06:46:33.785303+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9263,7 +9263,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012054+00:00", + "captured_at": "2026-06-07T06:46:33.785307+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9279,7 +9279,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012060+00:00", + "captured_at": "2026-06-07T06:46:33.785311+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9295,7 +9295,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012066+00:00", + "captured_at": "2026-06-07T06:46:33.785315+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9311,7 +9311,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012070+00:00", + "captured_at": "2026-06-07T06:46:33.785320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9327,7 +9327,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012075+00:00", + "captured_at": "2026-06-07T06:46:33.785324+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9343,7 +9343,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012079+00:00", + "captured_at": "2026-06-07T06:46:33.785328+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9359,7 +9359,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012083+00:00", + "captured_at": "2026-06-07T06:46:33.785333+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9375,7 +9375,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012088+00:00", + "captured_at": "2026-06-07T06:46:33.785337+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9391,7 +9391,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012094+00:00", + "captured_at": "2026-06-07T06:46:33.785341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9407,7 +9407,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012099+00:00", + "captured_at": "2026-06-07T06:46:33.785346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9423,7 +9423,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.045, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012104+00:00", + "captured_at": "2026-06-07T06:46:33.785350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9439,7 +9439,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012108+00:00", + "captured_at": "2026-06-07T06:46:33.785354+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9455,7 +9455,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.2288, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012113+00:00", + "captured_at": "2026-06-07T06:46:33.785359+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9471,7 +9471,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3432, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012117+00:00", + "captured_at": "2026-06-07T06:46:33.785363+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9487,7 +9487,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012121+00:00", + "captured_at": "2026-06-07T06:46:33.785367+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9503,7 +9503,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012126+00:00", + "captured_at": "2026-06-07T06:46:33.785372+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9519,7 +9519,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012130+00:00", + "captured_at": "2026-06-07T06:46:33.785376+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9535,7 +9535,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012134+00:00", + "captured_at": "2026-06-07T06:46:33.785382+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9551,7 +9551,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012139+00:00", + "captured_at": "2026-06-07T06:46:33.785387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9567,7 +9567,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012143+00:00", + "captured_at": "2026-06-07T06:46:33.785392+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9583,7 +9583,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012148+00:00", + "captured_at": "2026-06-07T06:46:33.785398+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9599,7 +9599,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012153+00:00", + "captured_at": "2026-06-07T06:46:33.785403+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9615,7 +9615,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012157+00:00", + "captured_at": "2026-06-07T06:46:33.785409+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9631,7 +9631,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012163+00:00", + "captured_at": "2026-06-07T06:46:33.785415+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9647,7 +9647,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012168+00:00", + "captured_at": "2026-06-07T06:46:33.785419+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9663,7 +9663,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012173+00:00", + "captured_at": "2026-06-07T06:46:33.785424+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9679,7 +9679,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012177+00:00", + "captured_at": "2026-06-07T06:46:33.785428+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9695,7 +9695,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012182+00:00", + "captured_at": "2026-06-07T06:46:33.785432+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9711,7 +9711,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012186+00:00", + "captured_at": "2026-06-07T06:46:33.785437+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9727,7 +9727,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012191+00:00", + "captured_at": "2026-06-07T06:46:33.785441+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9743,7 +9743,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012195+00:00", + "captured_at": "2026-06-07T06:46:33.785445+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9759,7 +9759,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012200+00:00", + "captured_at": "2026-06-07T06:46:33.785449+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9775,7 +9775,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012205+00:00", + "captured_at": "2026-06-07T06:46:33.785454+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9791,7 +9791,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012209+00:00", + "captured_at": "2026-06-07T06:46:33.785458+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9807,7 +9807,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012215+00:00", + "captured_at": "2026-06-07T06:46:33.785462+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9823,7 +9823,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012221+00:00", + "captured_at": "2026-06-07T06:46:33.785467+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9839,7 +9839,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012225+00:00", + "captured_at": "2026-06-07T06:46:33.785471+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9855,7 +9855,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012230+00:00", + "captured_at": "2026-06-07T06:46:33.785476+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9871,7 +9871,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012235+00:00", + "captured_at": "2026-06-07T06:46:33.785480+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9887,7 +9887,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012239+00:00", + "captured_at": "2026-06-07T06:46:33.785485+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9903,7 +9903,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012243+00:00", + "captured_at": "2026-06-07T06:46:33.785489+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9919,7 +9919,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012248+00:00", + "captured_at": "2026-06-07T06:46:33.785493+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9935,7 +9935,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012253+00:00", + "captured_at": "2026-06-07T06:46:33.785497+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9951,7 +9951,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.255, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012257+00:00", + "captured_at": "2026-06-07T06:46:33.785502+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9967,7 +9967,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012262+00:00", + "captured_at": "2026-06-07T06:46:33.785506+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9983,7 +9983,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.10400000000000001, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012266+00:00", + "captured_at": "2026-06-07T06:46:33.785511+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9999,7 +9999,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.41600000000000004, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012271+00:00", + "captured_at": "2026-06-07T06:46:33.785515+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10015,7 +10015,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.017, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012276+00:00", + "captured_at": "2026-06-07T06:46:33.785520+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10031,7 +10031,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.112, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012280+00:00", + "captured_at": "2026-06-07T06:46:33.785524+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10047,7 +10047,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012285+00:00", + "captured_at": "2026-06-07T06:46:33.785529+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10063,7 +10063,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.35, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012289+00:00", + "captured_at": "2026-06-07T06:46:33.785533+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10079,7 +10079,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012293+00:00", + "captured_at": "2026-06-07T06:46:33.785537+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10095,7 +10095,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012297+00:00", + "captured_at": "2026-06-07T06:46:33.785542+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10111,7 +10111,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012302+00:00", + "captured_at": "2026-06-07T06:46:33.785548+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10127,7 +10127,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012308+00:00", + "captured_at": "2026-06-07T06:46:33.785552+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10143,7 +10143,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.117, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012313+00:00", + "captured_at": "2026-06-07T06:46:33.785556+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10159,7 +10159,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.365, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012317+00:00", + "captured_at": "2026-06-07T06:46:33.785561+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10175,7 +10175,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012322+00:00", + "captured_at": "2026-06-07T06:46:33.785567+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10191,7 +10191,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012326+00:00", + "captured_at": "2026-06-07T06:46:33.785571+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10207,7 +10207,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012331+00:00", + "captured_at": "2026-06-07T06:46:33.785575+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10223,7 +10223,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012335+00:00", + "captured_at": "2026-06-07T06:46:33.785580+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10239,7 +10239,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012340+00:00", + "captured_at": "2026-06-07T06:46:33.785584+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10255,7 +10255,7 @@ "unit": "per_1m_output_tokens", "price_usd": 40.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012345+00:00", + "captured_at": "2026-06-07T06:46:33.785588+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10271,7 +10271,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012349+00:00", + "captured_at": "2026-06-07T06:46:33.785593+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10287,7 +10287,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012353+00:00", + "captured_at": "2026-06-07T06:46:33.785597+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10303,7 +10303,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012358+00:00", + "captured_at": "2026-06-07T06:46:33.785601+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10319,7 +10319,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012362+00:00", + "captured_at": "2026-06-07T06:46:33.785606+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10335,7 +10335,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012367+00:00", + "captured_at": "2026-06-07T06:46:33.785610+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10351,7 +10351,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012371+00:00", + "captured_at": "2026-06-07T06:46:33.785614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10367,7 +10367,7 @@ "unit": "per_image", "price_usd": 3e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012376+00:00", + "captured_at": "2026-06-07T06:46:33.785618+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10383,7 +10383,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012381+00:00", + "captured_at": "2026-06-07T06:46:33.785623+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10399,7 +10399,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.56, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012385+00:00", + "captured_at": "2026-06-07T06:46:33.785627+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10415,7 +10415,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012389+00:00", + "captured_at": "2026-06-07T06:46:33.785631+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10431,7 +10431,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.52, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012394+00:00", + "captured_at": "2026-06-07T06:46:33.785635+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10447,7 +10447,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012400+00:00", + "captured_at": "2026-06-07T06:46:33.785640+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10463,7 +10463,7 @@ "unit": "per_1m_output_tokens", "price_usd": 120.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012405+00:00", + "captured_at": "2026-06-07T06:46:33.785644+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10479,7 +10479,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.43, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012409+00:00", + "captured_at": "2026-06-07T06:46:33.785648+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10495,7 +10495,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.74, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012413+00:00", + "captured_at": "2026-06-07T06:46:33.785653+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10511,7 +10511,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012418+00:00", + "captured_at": "2026-06-07T06:46:33.785657+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10527,7 +10527,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012422+00:00", + "captured_at": "2026-06-07T06:46:33.785661+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10543,7 +10543,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012429+00:00", + "captured_at": "2026-06-07T06:46:33.785665+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10559,7 +10559,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.41, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012434+00:00", + "captured_at": "2026-06-07T06:46:33.785670+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10575,7 +10575,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012438+00:00", + "captured_at": "2026-06-07T06:46:33.785674+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10591,7 +10591,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012442+00:00", + "captured_at": "2026-06-07T06:46:33.785678+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10607,7 +10607,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012447+00:00", + "captured_at": "2026-06-07T06:46:33.785684+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10623,7 +10623,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012453+00:00", + "captured_at": "2026-06-07T06:46:33.785689+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10639,7 +10639,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012458+00:00", + "captured_at": "2026-06-07T06:46:33.785693+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10655,7 +10655,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012463+00:00", + "captured_at": "2026-06-07T06:46:33.785697+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10671,7 +10671,7 @@ "unit": "per_image", "price_usd": 1e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012467+00:00", + "captured_at": "2026-06-07T06:46:33.785701+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10687,7 +10687,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012471+00:00", + "captured_at": "2026-06-07T06:46:33.785706+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10703,7 +10703,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012476+00:00", + "captured_at": "2026-06-07T06:46:33.785710+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10719,7 +10719,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012480+00:00", + "captured_at": "2026-06-07T06:46:33.785716+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10735,7 +10735,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.88, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012484+00:00", + "captured_at": "2026-06-07T06:46:33.785720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10751,7 +10751,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012489+00:00", + "captured_at": "2026-06-07T06:46:33.785725+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10767,7 +10767,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012493+00:00", + "captured_at": "2026-06-07T06:46:33.785729+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10783,7 +10783,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012498+00:00", + "captured_at": "2026-06-07T06:46:33.785733+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10799,7 +10799,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012502+00:00", + "captured_at": "2026-06-07T06:46:33.785738+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10815,7 +10815,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012506+00:00", + "captured_at": "2026-06-07T06:46:33.785743+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10831,7 +10831,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012511+00:00", + "captured_at": "2026-06-07T06:46:33.785748+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10847,7 +10847,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012515+00:00", + "captured_at": "2026-06-07T06:46:33.785752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10863,7 +10863,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012519+00:00", + "captured_at": "2026-06-07T06:46:33.785756+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10879,7 +10879,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.195, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012524+00:00", + "captured_at": "2026-06-07T06:46:33.785761+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10895,7 +10895,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.975, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012528+00:00", + "captured_at": "2026-06-07T06:46:33.785765+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10911,7 +10911,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0975, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012533+00:00", + "captured_at": "2026-06-07T06:46:33.785769+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10927,7 +10927,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012537+00:00", + "captured_at": "2026-06-07T06:46:33.785773+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10943,7 +10943,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012543+00:00", + "captured_at": "2026-06-07T06:46:33.785779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10959,7 +10959,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012548+00:00", + "captured_at": "2026-06-07T06:46:33.785786+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10975,7 +10975,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012552+00:00", + "captured_at": "2026-06-07T06:46:33.785791+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10991,7 +10991,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012556+00:00", + "captured_at": "2026-06-07T06:46:33.785795+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11007,7 +11007,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012561+00:00", + "captured_at": "2026-06-07T06:46:33.785800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11023,7 +11023,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012565+00:00", + "captured_at": "2026-06-07T06:46:33.785804+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11039,7 +11039,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012573+00:00", + "captured_at": "2026-06-07T06:46:33.785809+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11055,7 +11055,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.16, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012577+00:00", + "captured_at": "2026-06-07T06:46:33.785813+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11071,7 +11071,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012581+00:00", + "captured_at": "2026-06-07T06:46:33.785817+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11087,7 +11087,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012587+00:00", + "captured_at": "2026-06-07T06:46:33.785821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11103,7 +11103,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012592+00:00", + "captured_at": "2026-06-07T06:46:33.785828+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11119,7 +11119,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012598+00:00", + "captured_at": "2026-06-07T06:46:33.785832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11135,7 +11135,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012612+00:00", + "captured_at": "2026-06-07T06:46:33.785836+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11151,7 +11151,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012616+00:00", + "captured_at": "2026-06-07T06:46:33.785841+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11167,7 +11167,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012621+00:00", + "captured_at": "2026-06-07T06:46:33.785845+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11183,7 +11183,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012625+00:00", + "captured_at": "2026-06-07T06:46:33.785849+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11199,7 +11199,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.21, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012629+00:00", + "captured_at": "2026-06-07T06:46:33.785853+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11215,7 +11215,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7899999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012634+00:00", + "captured_at": "2026-06-07T06:46:33.785858+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11231,7 +11231,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012638+00:00", + "captured_at": "2026-06-07T06:46:33.785862+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11247,7 +11247,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012643+00:00", + "captured_at": "2026-06-07T06:46:33.785866+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11263,7 +11263,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012648+00:00", + "captured_at": "2026-06-07T06:46:33.785871+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11279,7 +11279,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012652+00:00", + "captured_at": "2026-06-07T06:46:33.785875+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11295,7 +11295,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012656+00:00", + "captured_at": "2026-06-07T06:46:33.785879+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11311,7 +11311,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012660+00:00", + "captured_at": "2026-06-07T06:46:33.785883+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11327,7 +11327,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012665+00:00", + "captured_at": "2026-06-07T06:46:33.785887+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11343,7 +11343,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012671+00:00", + "captured_at": "2026-06-07T06:46:33.785892+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11359,7 +11359,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012675+00:00", + "captured_at": "2026-06-07T06:46:33.785896+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11375,7 +11375,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012680+00:00", + "captured_at": "2026-06-07T06:46:33.785900+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11391,7 +11391,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012684+00:00", + "captured_at": "2026-06-07T06:46:33.785904+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11407,7 +11407,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012688+00:00", + "captured_at": "2026-06-07T06:46:33.785908+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11423,7 +11423,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012693+00:00", + "captured_at": "2026-06-07T06:46:33.785913+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11439,7 +11439,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012697+00:00", + "captured_at": "2026-06-07T06:46:33.785917+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11455,7 +11455,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.039, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012702+00:00", + "captured_at": "2026-06-07T06:46:33.785923+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11471,7 +11471,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.18, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012706+00:00", + "captured_at": "2026-06-07T06:46:33.785927+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11487,7 +11487,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.029, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012711+00:00", + "captured_at": "2026-06-07T06:46:33.785933+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11503,7 +11503,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012715+00:00", + "captured_at": "2026-06-07T06:46:33.785937+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11519,7 +11519,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012720+00:00", + "captured_at": "2026-06-07T06:46:33.785941+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11535,7 +11535,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012724+00:00", + "captured_at": "2026-06-07T06:46:33.785945+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11551,7 +11551,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012729+00:00", + "captured_at": "2026-06-07T06:46:33.785949+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11567,7 +11567,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012733+00:00", + "captured_at": "2026-06-07T06:46:33.785953+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11583,7 +11583,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012738+00:00", + "captured_at": "2026-06-07T06:46:33.785958+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11599,7 +11599,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.27, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012743+00:00", + "captured_at": "2026-06-07T06:46:33.785963+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11615,7 +11615,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04815, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012750+00:00", + "captured_at": "2026-06-07T06:46:33.785968+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11631,7 +11631,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19305, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012754+00:00", + "captured_at": "2026-06-07T06:46:33.785972+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11647,7 +11647,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012759+00:00", + "captured_at": "2026-06-07T06:46:33.785977+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11663,7 +11663,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012763+00:00", + "captured_at": "2026-06-07T06:46:33.785981+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11679,7 +11679,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.125, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012768+00:00", + "captured_at": "2026-06-07T06:46:33.785986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11695,7 +11695,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012774+00:00", + "captured_at": "2026-06-07T06:46:33.785990+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11711,7 +11711,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012778+00:00", + "captured_at": "2026-06-07T06:46:33.785994+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11727,7 +11727,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012783+00:00", + "captured_at": "2026-06-07T06:46:33.785998+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11743,7 +11743,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012788+00:00", + "captured_at": "2026-06-07T06:46:33.786002+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11759,7 +11759,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012793+00:00", + "captured_at": "2026-06-07T06:46:33.786006+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11775,7 +11775,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.22, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012798+00:00", + "captured_at": "2026-06-07T06:46:33.786011+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11791,7 +11791,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012802+00:00", + "captured_at": "2026-06-07T06:46:33.786015+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11807,7 +11807,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012807+00:00", + "captured_at": "2026-06-07T06:46:33.786020+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11823,7 +11823,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012811+00:00", + "captured_at": "2026-06-07T06:46:33.786023+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11839,7 +11839,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012815+00:00", + "captured_at": "2026-06-07T06:46:33.786028+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11855,7 +11855,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012819+00:00", + "captured_at": "2026-06-07T06:46:33.786032+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11871,7 +11871,7 @@ "unit": "per_image", "price_usd": 1e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012823+00:00", + "captured_at": "2026-06-07T06:46:33.786037+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11887,7 +11887,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.071, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012828+00:00", + "captured_at": "2026-06-07T06:46:33.786042+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11903,7 +11903,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012832+00:00", + "captured_at": "2026-06-07T06:46:33.786046+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11919,7 +11919,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012836+00:00", + "captured_at": "2026-06-07T06:46:33.786050+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11935,7 +11935,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012840+00:00", + "captured_at": "2026-06-07T06:46:33.786054+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11951,7 +11951,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5700000000000001, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012844+00:00", + "captured_at": "2026-06-07T06:46:33.786059+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11967,7 +11967,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012848+00:00", + "captured_at": "2026-06-07T06:46:33.786063+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11983,7 +11983,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012858+00:00", + "captured_at": "2026-06-07T06:46:33.786067+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -11999,7 +11999,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5700000000000001, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012862+00:00", + "captured_at": "2026-06-07T06:46:33.786071+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12015,7 +12015,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012867+00:00", + "captured_at": "2026-06-07T06:46:33.786076+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12031,7 +12031,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012872+00:00", + "captured_at": "2026-06-07T06:46:33.786081+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12047,7 +12047,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012876+00:00", + "captured_at": "2026-06-07T06:46:33.786085+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12063,7 +12063,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012880+00:00", + "captured_at": "2026-06-07T06:46:33.786089+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12079,7 +12079,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.42, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012885+00:00", + "captured_at": "2026-06-07T06:46:33.786093+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12095,7 +12095,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012889+00:00", + "captured_at": "2026-06-07T06:46:33.786100+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12111,7 +12111,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012896+00:00", + "captured_at": "2026-06-07T06:46:33.786104+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12127,7 +12127,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012900+00:00", + "captured_at": "2026-06-07T06:46:33.786108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12143,7 +12143,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012904+00:00", + "captured_at": "2026-06-07T06:46:33.786113+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12159,7 +12159,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012908+00:00", + "captured_at": "2026-06-07T06:46:33.786117+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12175,7 +12175,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012913+00:00", + "captured_at": "2026-06-07T06:46:33.786121+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12191,7 +12191,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012917+00:00", + "captured_at": "2026-06-07T06:46:33.786125+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12207,7 +12207,7 @@ "unit": "per_image", "price_usd": 3e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012921+00:00", + "captured_at": "2026-06-07T06:46:33.786129+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12223,7 +12223,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012925+00:00", + "captured_at": "2026-06-07T06:46:33.786134+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12239,7 +12239,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012929+00:00", + "captured_at": "2026-06-07T06:46:33.786138+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12255,7 +12255,7 @@ "unit": "per_image", "price_usd": 1.25e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012934+00:00", + "captured_at": "2026-06-07T06:46:33.786142+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12271,7 +12271,7 @@ "unit": "per_1m_input_tokens", "price_usd": 20.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012938+00:00", + "captured_at": "2026-06-07T06:46:33.786146+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12287,7 +12287,7 @@ "unit": "per_1m_output_tokens", "price_usd": 80.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012942+00:00", + "captured_at": "2026-06-07T06:46:33.786150+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12303,7 +12303,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012946+00:00", + "captured_at": "2026-06-07T06:46:33.786155+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12319,7 +12319,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012951+00:00", + "captured_at": "2026-06-07T06:46:33.786159+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12335,7 +12335,7 @@ "unit": "per_image", "price_usd": 1.25e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012955+00:00", + "captured_at": "2026-06-07T06:46:33.786163+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12351,7 +12351,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012959+00:00", + "captured_at": "2026-06-07T06:46:33.786167+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12367,7 +12367,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.1500000000000004, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012965+00:00", + "captured_at": "2026-06-07T06:46:33.786171+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12383,7 +12383,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012969+00:00", + "captured_at": "2026-06-07T06:46:33.786175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12399,7 +12399,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012973+00:00", + "captured_at": "2026-06-07T06:46:33.786180+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12415,7 +12415,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012977+00:00", + "captured_at": "2026-06-07T06:46:33.786184+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12431,7 +12431,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012981+00:00", + "captured_at": "2026-06-07T06:46:33.786188+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12447,7 +12447,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012986+00:00", + "captured_at": "2026-06-07T06:46:33.786192+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12463,7 +12463,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.12, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012990+00:00", + "captured_at": "2026-06-07T06:46:33.786196+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12479,7 +12479,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012994+00:00", + "captured_at": "2026-06-07T06:46:33.786201+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12495,7 +12495,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012998+00:00", + "captured_at": "2026-06-07T06:46:33.786205+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12511,7 +12511,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013003+00:00", + "captured_at": "2026-06-07T06:46:33.786209+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12527,7 +12527,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013007+00:00", + "captured_at": "2026-06-07T06:46:33.786213+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12543,7 +12543,7 @@ "unit": "per_image", "price_usd": 1.25e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013011+00:00", + "captured_at": "2026-06-07T06:46:33.786217+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12559,7 +12559,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013015+00:00", + "captured_at": "2026-06-07T06:46:33.786222+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12575,7 +12575,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.3000000000000003, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013019+00:00", + "captured_at": "2026-06-07T06:46:33.786226+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12591,7 +12591,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013023+00:00", + "captured_at": "2026-06-07T06:46:33.786231+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12607,7 +12607,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013029+00:00", + "captured_at": "2026-06-07T06:46:33.786236+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12623,7 +12623,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013033+00:00", + "captured_at": "2026-06-07T06:46:33.786240+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12639,7 +12639,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013037+00:00", + "captured_at": "2026-06-07T06:46:33.786244+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12655,7 +12655,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.18, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013042+00:00", + "captured_at": "2026-06-07T06:46:33.786248+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12671,7 +12671,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.18, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013046+00:00", + "captured_at": "2026-06-07T06:46:33.786252+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12687,7 +12687,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013051+00:00", + "captured_at": "2026-06-07T06:46:33.786257+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12703,7 +12703,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.44999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013055+00:00", + "captured_at": "2026-06-07T06:46:33.786261+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12719,7 +12719,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013059+00:00", + "captured_at": "2026-06-07T06:46:33.786265+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12735,7 +12735,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013063+00:00", + "captured_at": "2026-06-07T06:46:33.786271+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12751,7 +12751,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013068+00:00", + "captured_at": "2026-06-07T06:46:33.786275+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12767,7 +12767,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.24, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013072+00:00", + "captured_at": "2026-06-07T06:46:33.786279+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12783,7 +12783,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013076+00:00", + "captured_at": "2026-06-07T06:46:33.786284+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12799,7 +12799,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.28, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013080+00:00", + "captured_at": "2026-06-07T06:46:33.786288+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12815,7 +12815,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.45499999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013084+00:00", + "captured_at": "2026-06-07T06:46:33.786292+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12831,7 +12831,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.8199999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013089+00:00", + "captured_at": "2026-06-07T06:46:33.786297+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12847,7 +12847,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013095+00:00", + "captured_at": "2026-06-07T06:46:33.786303+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12863,7 +12863,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013099+00:00", + "captured_at": "2026-06-07T06:46:33.786307+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12879,7 +12879,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013103+00:00", + "captured_at": "2026-06-07T06:46:33.786311+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12895,7 +12895,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013107+00:00", + "captured_at": "2026-06-07T06:46:33.786315+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12911,7 +12911,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013112+00:00", + "captured_at": "2026-06-07T06:46:33.786320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12927,7 +12927,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013116+00:00", + "captured_at": "2026-06-07T06:46:33.786324+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12943,7 +12943,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013120+00:00", + "captured_at": "2026-06-07T06:46:33.786329+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12959,7 +12959,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013124+00:00", + "captured_at": "2026-06-07T06:46:33.786333+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12975,7 +12975,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013129+00:00", + "captured_at": "2026-06-07T06:46:33.786337+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -12991,7 +12991,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013133+00:00", + "captured_at": "2026-06-07T06:46:33.786341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13007,7 +13007,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013139+00:00", + "captured_at": "2026-06-07T06:46:33.786346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13023,7 +13023,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013143+00:00", + "captured_at": "2026-06-07T06:46:33.786351+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13039,7 +13039,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013147+00:00", + "captured_at": "2026-06-07T06:46:33.786356+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13055,7 +13055,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013151+00:00", + "captured_at": "2026-06-07T06:46:33.786360+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13071,7 +13071,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013156+00:00", + "captured_at": "2026-06-07T06:46:33.786364+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13087,7 +13087,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013160+00:00", + "captured_at": "2026-06-07T06:46:33.786370+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13103,7 +13103,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013165+00:00", + "captured_at": "2026-06-07T06:46:33.786374+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13119,7 +13119,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.77, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013170+00:00", + "captured_at": "2026-06-07T06:46:33.786378+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13135,7 +13135,7 @@ "unit": "per_1m_input_tokens", "price_usd": 150.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013174+00:00", + "captured_at": "2026-06-07T06:46:33.786383+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13151,7 +13151,7 @@ "unit": "per_1m_output_tokens", "price_usd": 600.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013178+00:00", + "captured_at": "2026-06-07T06:46:33.786387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13167,7 +13167,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.351, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013183+00:00", + "captured_at": "2026-06-07T06:46:33.786391+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13183,7 +13183,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5549999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013187+00:00", + "captured_at": "2026-06-07T06:46:33.786395+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13199,7 +13199,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013191+00:00", + "captured_at": "2026-06-07T06:46:33.786399+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13215,7 +13215,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013195+00:00", + "captured_at": "2026-06-07T06:46:33.786404+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13231,7 +13231,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013200+00:00", + "captured_at": "2026-06-07T06:46:33.786408+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13247,7 +13247,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013204+00:00", + "captured_at": "2026-06-07T06:46:33.786412+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13263,7 +13263,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013208+00:00", + "captured_at": "2026-06-07T06:46:33.786416+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13279,7 +13279,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013212+00:00", + "captured_at": "2026-06-07T06:46:33.786420+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13295,7 +13295,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013217+00:00", + "captured_at": "2026-06-07T06:46:33.786425+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13311,7 +13311,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013221+00:00", + "captured_at": "2026-06-07T06:46:33.786430+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13327,7 +13327,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013225+00:00", + "captured_at": "2026-06-07T06:46:33.786435+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13343,7 +13343,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013229+00:00", + "captured_at": "2026-06-07T06:46:33.786439+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13359,7 +13359,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013234+00:00", + "captured_at": "2026-06-07T06:46:33.786444+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13375,7 +13375,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013238+00:00", + "captured_at": "2026-06-07T06:46:33.786450+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13391,7 +13391,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013242+00:00", + "captured_at": "2026-06-07T06:46:33.786455+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13407,7 +13407,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.16, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013246+00:00", + "captured_at": "2026-06-07T06:46:33.786459+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13423,7 +13423,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.55, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013251+00:00", + "captured_at": "2026-06-07T06:46:33.786464+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13439,7 +13439,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013255+00:00", + "captured_at": "2026-06-07T06:46:33.786468+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13455,7 +13455,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013259+00:00", + "captured_at": "2026-06-07T06:46:33.786473+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13471,7 +13471,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013263+00:00", + "captured_at": "2026-06-07T06:46:33.786477+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13487,7 +13487,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013267+00:00", + "captured_at": "2026-06-07T06:46:33.786481+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13503,7 +13503,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013271+00:00", + "captured_at": "2026-06-07T06:46:33.786485+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13519,7 +13519,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013276+00:00", + "captured_at": "2026-06-07T06:46:33.786490+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13535,7 +13535,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013280+00:00", + "captured_at": "2026-06-07T06:46:33.786494+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13551,7 +13551,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013284+00:00", + "captured_at": "2026-06-07T06:46:33.786498+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13567,7 +13567,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013288+00:00", + "captured_at": "2026-06-07T06:46:33.786502+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13583,7 +13583,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.48400000000000004, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013293+00:00", + "captured_at": "2026-06-07T06:46:33.786508+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13599,7 +13599,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013299+00:00", + "captured_at": "2026-06-07T06:46:33.786513+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13615,7 +13615,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013303+00:00", + "captured_at": "2026-06-07T06:46:33.786517+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13631,7 +13631,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013307+00:00", + "captured_at": "2026-06-07T06:46:33.786521+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13647,7 +13647,7 @@ "unit": "per_1m_input_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013313+00:00", + "captured_at": "2026-06-07T06:46:33.786525+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13663,7 +13663,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013317+00:00", + "captured_at": "2026-06-07T06:46:33.786529+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13679,7 +13679,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013322+00:00", + "captured_at": "2026-06-07T06:46:33.786535+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13695,7 +13695,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013326+00:00", + "captured_at": "2026-06-07T06:46:33.786540+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13711,7 +13711,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013330+00:00", + "captured_at": "2026-06-07T06:46:33.786544+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13727,7 +13727,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013334+00:00", + "captured_at": "2026-06-07T06:46:33.786548+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13743,7 +13743,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013339+00:00", + "captured_at": "2026-06-07T06:46:33.786553+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13759,7 +13759,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013344+00:00", + "captured_at": "2026-06-07T06:46:33.786557+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13775,7 +13775,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013349+00:00", + "captured_at": "2026-06-07T06:46:33.786561+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13791,7 +13791,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013353+00:00", + "captured_at": "2026-06-07T06:46:33.786565+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13807,7 +13807,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013357+00:00", + "captured_at": "2026-06-07T06:46:33.786570+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13823,7 +13823,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013362+00:00", + "captured_at": "2026-06-07T06:46:33.786574+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13839,7 +13839,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013366+00:00", + "captured_at": "2026-06-07T06:46:33.786578+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13855,7 +13855,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013370+00:00", + "captured_at": "2026-06-07T06:46:33.786582+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13871,7 +13871,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.29, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013374+00:00", + "captured_at": "2026-06-07T06:46:33.786586+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13887,7 +13887,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.29, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013378+00:00", + "captured_at": "2026-06-07T06:46:33.786591+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13903,7 +13903,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013383+00:00", + "captured_at": "2026-06-07T06:46:33.786595+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13919,7 +13919,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013387+00:00", + "captured_at": "2026-06-07T06:46:33.786599+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13935,7 +13935,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013391+00:00", + "captured_at": "2026-06-07T06:46:33.786604+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13951,7 +13951,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013395+00:00", + "captured_at": "2026-06-07T06:46:33.786608+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13967,7 +13967,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013400+00:00", + "captured_at": "2026-06-07T06:46:33.786612+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13983,7 +13983,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013404+00:00", + "captured_at": "2026-06-07T06:46:33.786616+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -13999,7 +13999,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013410+00:00", + "captured_at": "2026-06-07T06:46:33.786621+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14015,7 +14015,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013415+00:00", + "captured_at": "2026-06-07T06:46:33.786626+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14031,7 +14031,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.065, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013419+00:00", + "captured_at": "2026-06-07T06:46:33.786631+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14047,7 +14047,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013423+00:00", + "captured_at": "2026-06-07T06:46:33.786635+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14063,7 +14063,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013427+00:00", + "captured_at": "2026-06-07T06:46:33.786639+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14079,7 +14079,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013431+00:00", + "captured_at": "2026-06-07T06:46:33.786645+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14095,7 +14095,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.20020000000000002, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013437+00:00", + "captured_at": "2026-06-07T06:46:33.786649+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14111,7 +14111,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.8000999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013442+00:00", + "captured_at": "2026-06-07T06:46:33.786654+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14127,7 +14127,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013446+00:00", + "captured_at": "2026-06-07T06:46:33.786658+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14143,7 +14143,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013451+00:00", + "captured_at": "2026-06-07T06:46:33.786662+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14159,7 +14159,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013456+00:00", + "captured_at": "2026-06-07T06:46:33.786667+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14175,7 +14175,7 @@ "unit": "per_1m_output_tokens", "price_usd": 60.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013460+00:00", + "captured_at": "2026-06-07T06:46:33.786672+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14191,7 +14191,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0375, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013465+00:00", + "captured_at": "2026-06-07T06:46:33.786677+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14207,7 +14207,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013469+00:00", + "captured_at": "2026-06-07T06:46:33.786681+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14223,7 +14223,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013474+00:00", + "captured_at": "2026-06-07T06:46:33.786686+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14239,7 +14239,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.32, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013478+00:00", + "captured_at": "2026-06-07T06:46:33.786690+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14255,7 +14255,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013482+00:00", + "captured_at": "2026-06-07T06:46:33.786694+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14271,7 +14271,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.24, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013486+00:00", + "captured_at": "2026-06-07T06:46:33.786698+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14287,7 +14287,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.035, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013493+00:00", + "captured_at": "2026-06-07T06:46:33.786703+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14303,7 +14303,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013497+00:00", + "captured_at": "2026-06-07T06:46:33.786707+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14319,7 +14319,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013501+00:00", + "captured_at": "2026-06-07T06:46:33.786711+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14335,7 +14335,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.1999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013505+00:00", + "captured_at": "2026-06-07T06:46:33.786715+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14351,7 +14351,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013510+00:00", + "captured_at": "2026-06-07T06:46:33.786720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14367,7 +14367,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013514+00:00", + "captured_at": "2026-06-07T06:46:33.786724+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14383,7 +14383,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013518+00:00", + "captured_at": "2026-06-07T06:46:33.786728+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14399,7 +14399,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013522+00:00", + "captured_at": "2026-06-07T06:46:33.786732+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14415,7 +14415,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.66, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013527+00:00", + "captured_at": "2026-06-07T06:46:33.786737+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14431,7 +14431,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013531+00:00", + "captured_at": "2026-06-07T06:46:33.786741+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14447,7 +14447,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013535+00:00", + "captured_at": "2026-06-07T06:46:33.786745+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14463,7 +14463,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013539+00:00", + "captured_at": "2026-06-07T06:46:33.786750+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14479,7 +14479,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013544+00:00", + "captured_at": "2026-06-07T06:46:33.786754+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14495,7 +14495,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013548+00:00", + "captured_at": "2026-06-07T06:46:33.786758+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14511,7 +14511,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013552+00:00", + "captured_at": "2026-06-07T06:46:33.786763+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14527,7 +14527,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013556+00:00", + "captured_at": "2026-06-07T06:46:33.786767+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14543,7 +14543,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013561+00:00", + "captured_at": "2026-06-07T06:46:33.786771+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14559,7 +14559,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013565+00:00", + "captured_at": "2026-06-07T06:46:33.786776+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14575,7 +14575,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013569+00:00", + "captured_at": "2026-06-07T06:46:33.786786+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14591,7 +14591,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013575+00:00", + "captured_at": "2026-06-07T06:46:33.786791+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14607,7 +14607,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013579+00:00", + "captured_at": "2026-06-07T06:46:33.786795+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14623,7 +14623,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013583+00:00", + "captured_at": "2026-06-07T06:46:33.786800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14639,7 +14639,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.16999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013587+00:00", + "captured_at": "2026-06-07T06:46:33.786804+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14655,7 +14655,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.43, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013591+00:00", + "captured_at": "2026-06-07T06:46:33.786810+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14671,7 +14671,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0509, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013596+00:00", + "captured_at": "2026-06-07T06:46:33.786815+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14687,7 +14687,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.335, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013601+00:00", + "captured_at": "2026-06-07T06:46:33.786819+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14703,7 +14703,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.027, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013605+00:00", + "captured_at": "2026-06-07T06:46:33.786824+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14719,7 +14719,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.201, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013609+00:00", + "captured_at": "2026-06-07T06:46:33.786828+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14735,7 +14735,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.245, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013614+00:00", + "captured_at": "2026-06-07T06:46:33.786832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14751,7 +14751,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.245, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013618+00:00", + "captured_at": "2026-06-07T06:46:33.786837+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14767,7 +14767,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.36, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013622+00:00", + "captured_at": "2026-06-07T06:46:33.786841+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14783,7 +14783,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013626+00:00", + "captured_at": "2026-06-07T06:46:33.786845+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14799,7 +14799,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013631+00:00", + "captured_at": "2026-06-07T06:46:33.786850+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14815,7 +14815,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013635+00:00", + "captured_at": "2026-06-07T06:46:33.786854+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14831,7 +14831,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013639+00:00", + "captured_at": "2026-06-07T06:46:33.786858+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14847,7 +14847,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013643+00:00", + "captured_at": "2026-06-07T06:46:33.786862+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14863,7 +14863,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013649+00:00", + "captured_at": "2026-06-07T06:46:33.786867+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14879,7 +14879,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013653+00:00", + "captured_at": "2026-06-07T06:46:33.786871+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14895,7 +14895,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013658+00:00", + "captured_at": "2026-06-07T06:46:33.786875+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14911,7 +14911,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013662+00:00", + "captured_at": "2026-06-07T06:46:33.786880+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14927,7 +14927,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013669+00:00", + "captured_at": "2026-06-07T06:46:33.786884+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14943,7 +14943,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013673+00:00", + "captured_at": "2026-06-07T06:46:33.786889+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14959,7 +14959,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013677+00:00", + "captured_at": "2026-06-07T06:46:33.786893+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14975,7 +14975,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013681+00:00", + "captured_at": "2026-06-07T06:46:33.786897+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -14991,7 +14991,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013686+00:00", + "captured_at": "2026-06-07T06:46:33.786901+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15007,7 +15007,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013690+00:00", + "captured_at": "2026-06-07T06:46:33.786906+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15023,7 +15023,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.02, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013694+00:00", + "captured_at": "2026-06-07T06:46:33.786910+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15039,7 +15039,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013698+00:00", + "captured_at": "2026-06-07T06:46:33.786914+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15055,7 +15055,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013703+00:00", + "captured_at": "2026-06-07T06:46:33.786919+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15071,7 +15071,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013707+00:00", + "captured_at": "2026-06-07T06:46:33.786925+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15087,7 +15087,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.02, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013713+00:00", + "captured_at": "2026-06-07T06:46:33.786929+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15103,7 +15103,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013717+00:00", + "captured_at": "2026-06-07T06:46:33.786934+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15119,7 +15119,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013721+00:00", + "captured_at": "2026-06-07T06:46:33.786938+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15135,7 +15135,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013725+00:00", + "captured_at": "2026-06-07T06:46:33.786942+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15151,7 +15151,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013731+00:00", + "captured_at": "2026-06-07T06:46:33.786947+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15167,7 +15167,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013735+00:00", + "captured_at": "2026-06-07T06:46:33.786951+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15183,7 +15183,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013740+00:00", + "captured_at": "2026-06-07T06:46:33.786956+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15199,7 +15199,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013744+00:00", + "captured_at": "2026-06-07T06:46:33.786960+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15215,7 +15215,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013748+00:00", + "captured_at": "2026-06-07T06:46:33.786964+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15231,7 +15231,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013752+00:00", + "captured_at": "2026-06-07T06:46:33.786968+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15247,7 +15247,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013758+00:00", + "captured_at": "2026-06-07T06:46:33.786972+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15263,7 +15263,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013762+00:00", + "captured_at": "2026-06-07T06:46:33.786976+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15279,7 +15279,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013766+00:00", + "captured_at": "2026-06-07T06:46:33.786981+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15295,7 +15295,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013771+00:00", + "captured_at": "2026-06-07T06:46:33.786986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15311,7 +15311,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.51, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013775+00:00", + "captured_at": "2026-06-07T06:46:33.786991+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15327,7 +15327,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.74, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013779+00:00", + "captured_at": "2026-06-07T06:46:33.786996+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15343,7 +15343,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013783+00:00", + "captured_at": "2026-06-07T06:46:33.787001+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15359,7 +15359,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013787+00:00", + "captured_at": "2026-06-07T06:46:33.787005+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15375,7 +15375,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.62, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013792+00:00", + "captured_at": "2026-06-07T06:46:33.787009+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15391,7 +15391,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.62, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013796+00:00", + "captured_at": "2026-06-07T06:46:33.787013+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15407,7 +15407,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013800+00:00", + "captured_at": "2026-06-07T06:46:33.787018+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15423,7 +15423,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013804+00:00", + "captured_at": "2026-06-07T06:46:33.787022+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15439,7 +15439,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013809+00:00", + "captured_at": "2026-06-07T06:46:33.787026+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15455,7 +15455,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013813+00:00", + "captured_at": "2026-06-07T06:46:33.787030+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15471,7 +15471,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013817+00:00", + "captured_at": "2026-06-07T06:46:33.787035+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15487,7 +15487,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013821+00:00", + "captured_at": "2026-06-07T06:46:33.787039+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15503,7 +15503,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013826+00:00", + "captured_at": "2026-06-07T06:46:33.787043+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15519,7 +15519,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013833+00:00", + "captured_at": "2026-06-07T06:46:33.787047+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15535,7 +15535,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013838+00:00", + "captured_at": "2026-06-07T06:46:33.787051+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15551,7 +15551,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013842+00:00", + "captured_at": "2026-06-07T06:46:33.787055+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15567,7 +15567,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013849+00:00", + "captured_at": "2026-06-07T06:46:33.787062+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15583,7 +15583,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013855+00:00", + "captured_at": "2026-06-07T06:46:33.787066+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15599,7 +15599,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013859+00:00", + "captured_at": "2026-06-07T06:46:33.787070+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15615,7 +15615,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013863+00:00", + "captured_at": "2026-06-07T06:46:33.787074+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15631,7 +15631,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013867+00:00", + "captured_at": "2026-06-07T06:46:33.787078+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15647,7 +15647,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013871+00:00", + "captured_at": "2026-06-07T06:46:33.787083+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15663,7 +15663,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.44999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013876+00:00", + "captured_at": "2026-06-07T06:46:33.787087+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15679,7 +15679,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013880+00:00", + "captured_at": "2026-06-07T06:46:33.787091+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15695,7 +15695,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013884+00:00", + "captured_at": "2026-06-07T06:46:33.787095+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15711,7 +15711,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013889+00:00", + "captured_at": "2026-06-07T06:46:33.787100+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15727,7 +15727,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013893+00:00", + "captured_at": "2026-06-07T06:46:33.787104+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15743,7 +15743,7 @@ "unit": "per_1m_output_tokens", "price_usd": 60.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013897+00:00", + "captured_at": "2026-06-07T06:46:33.787108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15759,7 +15759,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013902+00:00", + "captured_at": "2026-06-07T06:46:33.787112+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15775,7 +15775,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013906+00:00", + "captured_at": "2026-06-07T06:46:33.787117+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15783,15 +15783,31 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-r2v", + "raw_model_name": "doubao-seedance-2-0-fast-260128", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_input_tokens", + "price_usd": 7.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237535+00:00", + "captured_at": "2026-06-07T06:46:33.955663+00:00", + "confidence": "high", + "method": "json-api", + "notes": null + }, + { + "provider_id": "relaydance", + "provider_name": "Relaydance", + "raw_model_name": "doubao-seedance-2-0-fast-260128", + "canonical_model": null, + "model_family": null, + "tier": null, + "channel_type": "mixed", + "unit": "per_1m_output_tokens", + "price_usd": 7.0, + "source_url": "https://relaydance.com/pricing", + "captured_at": "2026-06-07T06:46:33.955682+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15807,7 +15823,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237555+00:00", + "captured_at": "2026-06-07T06:46:33.955691+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15823,7 +15839,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237562+00:00", + "captured_at": "2026-06-07T06:46:33.955697+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15831,15 +15847,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-720p", + "raw_model_name": "seedance-fast-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 8.75, + "price_usd": 7.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237569+00:00", + "captured_at": "2026-06-07T06:46:33.955702+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15847,15 +15863,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-720p", + "raw_model_name": "seedance-fast-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 8.75, + "price_usd": 7.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237574+00:00", + "captured_at": "2026-06-07T06:46:33.955707+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15863,15 +15879,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-t2v", + "raw_model_name": "seedance-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_input_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237581+00:00", + "captured_at": "2026-06-07T06:46:33.955711+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15879,15 +15895,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-video-edit", + "raw_model_name": "seedance-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_output_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237587+00:00", + "captured_at": "2026-06-07T06:46:33.955716+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15895,15 +15911,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-reasoning", - "canonical_model": null, - "model_family": null, - "tier": null, + "raw_model_name": "grok-imagine-video-1.5-preview", + "canonical_model": "grok-imagine-video-1.5", + "model_family": "grok", + "tier": 4, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 1.125, + "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237592+00:00", + "captured_at": "2026-06-07T06:46:33.955720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15911,15 +15927,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-reasoning", - "canonical_model": null, - "model_family": null, - "tier": null, + "raw_model_name": "grok-imagine-video-1.5-preview", + "canonical_model": "grok-imagine-video-1.5", + "model_family": "grok", + "tier": 4, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 2.25, + "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237597+00:00", + "captured_at": "2026-06-07T06:46:33.955726+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15935,7 +15951,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237601+00:00", + "captured_at": "2026-06-07T06:46:33.955730+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15951,7 +15967,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237607+00:00", + "captured_at": "2026-06-07T06:46:33.955735+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15959,15 +15975,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw", + "raw_model_name": "happyhorse-1.0-r2v", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 8.75, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237611+00:00", + "captured_at": "2026-06-07T06:46:33.955744+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15975,15 +15991,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw", + "raw_model_name": "seedance-1-5-pro-with-audio", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 8.75, + "unit": "per_1m_input_tokens", + "price_usd": 3.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237615+00:00", + "captured_at": "2026-06-07T06:46:33.955749+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -15991,15 +16007,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-720p", + "raw_model_name": "seedance-1-5-pro-with-audio", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 8.75, + "unit": "per_1m_output_tokens", + "price_usd": 3.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237620+00:00", + "captured_at": "2026-06-07T06:46:33.955753+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16007,15 +16023,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-720p", + "raw_model_name": "doubao-seedance-2-0-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", + "unit": "per_1m_input_tokens", "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237624+00:00", + "captured_at": "2026-06-07T06:46:33.955758+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16023,15 +16039,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-1080p", + "raw_model_name": "doubao-seedance-2-0-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 9.625, + "unit": "per_1m_output_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237628+00:00", + "captured_at": "2026-06-07T06:46:33.955762+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16039,15 +16055,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-1080p", + "raw_model_name": "doubao-seedance-2-0-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", + "unit": "per_1m_input_tokens", "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237632+00:00", + "captured_at": "2026-06-07T06:46:33.955766+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16055,15 +16071,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-i2v", + "raw_model_name": "doubao-seedance-2-0-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_output_tokens", + "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237638+00:00", + "captured_at": "2026-06-07T06:46:33.955770+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16071,15 +16087,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-image", + "raw_model_name": "seedance-nsfw-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_image", - "price_usd": 0.018, + "unit": "per_1m_input_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237644+00:00", + "captured_at": "2026-06-07T06:46:33.955775+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16087,15 +16103,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.3", - "canonical_model": "grok-4.3", - "model_family": "grok", - "tier": 3, + "raw_model_name": "seedance-nsfw-720p", + "canonical_model": null, + "model_family": null, + "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 1.125, + "unit": "per_1m_output_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237648+00:00", + "captured_at": "2026-06-07T06:46:33.955779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16103,15 +16119,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.3", - "canonical_model": "grok-4.3", - "model_family": "grok", - "tier": 3, + "raw_model_name": "happyhorse-1.0-video-edit", + "canonical_model": null, + "model_family": null, + "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 2.25, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237653+00:00", + "captured_at": "2026-06-07T06:46:33.955785+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16119,15 +16135,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-build-0.1", + "raw_model_name": "grok-4.20-0309-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 0.9, + "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237657+00:00", + "captured_at": "2026-06-07T06:46:33.955790+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16135,15 +16151,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-build-0.1", + "raw_model_name": "grok-4.20-0309-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 1.8, + "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237661+00:00", + "captured_at": "2026-06-07T06:46:33.955794+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16151,15 +16167,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-fast-260128", + "raw_model_name": "grok-imagine-image-quality", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 7.0, + "unit": "per_image", + "price_usd": 0.045, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237665+00:00", + "captured_at": "2026-06-07T06:46:33.955800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16167,15 +16183,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-fast-260128", + "raw_model_name": "grok-imagine-image", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 7.0, + "unit": "per_image", + "price_usd": 0.018, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237669+00:00", + "captured_at": "2026-06-07T06:46:33.955807+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16183,15 +16199,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-1-5-pro-with-audio", - "canonical_model": null, - "model_family": null, - "tier": null, + "raw_model_name": "grok-4.3", + "canonical_model": "grok-4.3", + "model_family": "grok", + "tier": 3, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 3.0, + "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237674+00:00", + "captured_at": "2026-06-07T06:46:33.955812+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16199,15 +16215,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-1-5-pro-with-audio", - "canonical_model": null, - "model_family": null, - "tier": null, + "raw_model_name": "grok-4.3", + "canonical_model": "grok-4.3", + "model_family": "grok", + "tier": 3, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 3.0, + "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237678+00:00", + "captured_at": "2026-06-07T06:46:33.955817+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16215,15 +16231,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-1080p", + "raw_model_name": "grok-build-0.1", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 9.625, + "price_usd": 0.9, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237682+00:00", + "captured_at": "2026-06-07T06:46:33.955821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16231,15 +16247,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-1080p", + "raw_model_name": "grok-build-0.1", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 9.625, + "price_usd": 1.8, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237686+00:00", + "captured_at": "2026-06-07T06:46:33.955825+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16247,15 +16263,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-fast-nsfw", + "raw_model_name": "seedance-nsfw-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 7.0, + "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237691+00:00", + "captured_at": "2026-06-07T06:46:33.955830+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16263,15 +16279,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-fast-nsfw", + "raw_model_name": "seedance-nsfw-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 7.0, + "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237695+00:00", + "captured_at": "2026-06-07T06:46:33.955834+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16287,7 +16303,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237699+00:00", + "captured_at": "2026-06-07T06:46:33.955838+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16303,7 +16319,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237703+00:00", + "captured_at": "2026-06-07T06:46:33.955842+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16311,15 +16327,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-non-reasoning", + "raw_model_name": "happyhorse-1.0-t2v", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 1.125, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237707+00:00", + "captured_at": "2026-06-07T06:46:33.955849+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16327,15 +16343,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-non-reasoning", + "raw_model_name": "happyhorse-1.0-i2v", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 2.25, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237712+00:00", + "captured_at": "2026-06-07T06:46:33.955854+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16343,31 +16359,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-image-quality", + "raw_model_name": "grok-4.20-0309-non-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_image", - "price_usd": 0.045, - "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237717+00:00", - "confidence": "high", - "method": "json-api", - "notes": null - }, - { - "provider_id": "relaydance", - "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-video-1.5-preview", - "canonical_model": "grok-imagine-video-1.5", - "model_family": "grok", - "tier": 4, - "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 2.0834, + "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237722+00:00", + "captured_at": "2026-06-07T06:46:33.955859+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -16375,15 +16375,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-video-1.5-preview", - "canonical_model": "grok-imagine-video-1.5", - "model_family": "grok", - "tier": 4, + "raw_model_name": "grok-4.20-0309-non-reasoning", + "canonical_model": null, + "model_family": null, + "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 2.0834, + "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237726+00:00", + "captured_at": "2026-06-07T06:46:33.955863+00:00", "confidence": "high", "method": "json-api", "notes": null diff --git a/data/prices.latest.parquet b/data/prices.latest.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d3b01d3bd570b8b607d9bcaad3a267216f846dd2 GIT binary patch literal 24567 zcmch93qVxW*6==X24`Sq7)EBC;pGet11R%;lLCXtOCTgfBp=K$1B}cAVL&iLm~b+( zGV@hgiD^Dkv!b%Dm6i`oEiFqcD=jr&nH83Gt^2Qi1{7c4z2E=$Umkn*UTf{O)?Rz< zwb$9_oGCV!sCXnVh9@fE1@RCUA+|OYA*5ES^)e;=8F+}t=S8LP+BrN9FN7Boqen@h z*U^GO^@s@Q8I}|bWjlu;+BpbVm-5OBpdV&Eay4dc@j5MyRZdTn4Yxe?c6WoP$!l-G ztp>Z((rUA~tLz|F#FN}4_BvV+dYug=mNU9vY|u6uy22m|fF(jsX>Hc6)uJ-CifNI22h> zzlUIsF4M@A8nu=U=$W(ZZUsT(Xk;3-HBF6pY3mwPGNn#!j0UXB<8e3Edc4qgyu;;? zjaSR^+>PFbrYbK7&=ZIWDHDK!MmE-Cvp2-+Bauk0(PhfaYIP=07b#Qglm=n-i-;~) ziJF@cN2W9>b%cayX5E)mWN-1xj7lKZ2xqt@D5kX5;jVMIYf>c$X;Q}`+9u)?U6j6@ zNRg{#rS=Aw!`;*vJL40yTrC^dQXdWq%(ggWo`xDlPC=neD+loi6*}CGLQ9J|Pf^GS zrOOJ{sY?-AR*;`dRIDH(K6efSni`L%#%Wj7*ny=(rk3ku)i6)B(&}hrl+`!bn;rI9 zGVnQ_(qtA@j6;z!r^9O>H6tGpqSU*Qxg!I+5g4VW-Ye6|RYMU<<-+KyYAs%|K%Wd9 zs=y#EWdx3}G4RQOQ{_ z{MZW8qoIwJgBNRQ+}Jgd9t|kwF;A_uxV^Ovo_a@>qRMG$ve{*g9=F@>m1&b7jMS;L zBM{1#B2lfyQP%_}(a{n)Dy32-DM~~Ug{&l|(xf((G$E#^zNwLRI^ilZI&7IwBZibA zp+k4^B6&B9(&@E~LIdAYJmg%uz`EZ6*(i7a~sDM8pJ@1gT(k zd0_@q=CZVmSxj3(%GIf73A#?Mrag&xC0_+idzDBQ$ZSlNN~!AL=wab#9CK&#fWV16r8Hu;WN(34upf%RiRK()zry=pGi7BMTG1*A>R5fI$ z5=;Iekb$%syEyYH!akl6E1yn?vy*BXJasZH#2}dVO|e6@)s{xDtif&p3xit{&1tcS z?)JEa;_jJ3F)3H2W+3`-gz|?YbtWR($0+D{1i1nTV=9?i)6w^*6V;t?GV8#@2wjCg zn3U_q#}1X6vyjf38AOW`-k$=#r!g5oTb02|{E@mL2>6=Ms>Tz4WIlkFOhS4~varIw zJ+eXOhV?=`A`~*Ai^^Qhw5XI;;sMV-Z)5Q`cT-X)vWX*Lq(UDZ8K zxJV$^%j%s?jp73J_XssJ&Jgcr{y{u)9vKK-{wqP;&**9^l6_^)nf4?>);FZRG{k<6 zl&Q0SC(U^YGvLECkKIOhzl}&^vU}7J%QB?f@r}5U2@^50NQScK4q?gJd`6~@Xi}Wr zOu02nQPPEEHl$*7kw)dIVVE|ts0%SEXfXI zrUdbhMo8WH2pL%U5Q&hHC1H=DTUM^$j^y%bjI&#jZd`k|df!x=v?J9Rl{X57}{$Rq}fq(sU?e8ol=V>Lv)Ybf!!rH{|&& z&t-B6nI0K;iBb=d$k2VcqZGC5xJ>&}WNmUdZ8D`?00X#QUf%GlFm=GiF*oLT#}N z#BNqJ@ip02qkff1hegkdr5V#)B;%frNvTFOZ#ZlCiRIagQQ;emO!05>C5XWnhdr|g ztQK#vbM#8BT1jYQhRFHy3&5uZ(UzWAl>GoLjb_`mq|>!yw^=qh zg>+fiDXbVhtVJ!je(GCcv{+K3B7~O9!t4Vl&0>xP=D|)(S9-zX4sR=1xuM1$|7s}l zjXW_J#wc@vCpcsfSKMBO1C&IiuFFDxw*B~*5-=e>@!I~KApgjzl?T1p_*%N*jH z3NfnS1S6IDTrkq|t3&k#AC1B>9kjQ6}(VVrs-ZY z?FbF&EU(bPXSnQ0j>icLfxC#G_ZM-NXb@C+Y8+kE{KTBc4oxrHRy1I(vt&tcf8}%4%gUM^%F-mK()Q zfzL)ywO3JJ>yYt_BPUKYABkO#bU!>rJWSl5`5?hx!XUMBZY4+mG?+!^2Q9fLBC^X+ ztdkBIka#^E_T%KSV}>ISYn57r=t+>lzAkY(!O{>~HL~~@!uBqX(VDC<9=R?xltg;* zJDI&GYA*vKp^o^TaI*g;7^!CnAi9T^t)a;UYeZ4iYJ&7YVX%Vqz- zM-96Q%+V#EBDzZEjcOG@ydRC$JZC-_8-?8b1R;0z&?XsdG!a|azq5F`v}LsO0!TY# zYGdl5EtZQ`DH1=EwwbnOqxb^%RCxZOVD?!dQO0z8ni?lqlnPiFE_)+nDh8#MR#pO8 ziB_qbmzX`8;Qqzz-e`WY^&%@2$>I($agy>Yjnp;o7!J!+ty0XexU7~*Bl*OUNo3j2_xB~V%Tze+FV4ubopzoqRAoiS{fQZm#B3+(_ z`dS4o1lErx`DwP4LE{Pq?0ly9H;L8aur(>{4Q>bf3)n@v7b0!<38qDBuy(96b+SSa z&^ii;Bvmo(6~2#i>LvC?7INkPF${K}$5YH?_LD(T-q`M`72+Vmm>G>;COU?on)tNv z?h3kFX6J^pEK*i){_ElFd!vL#wl6GoGoB9Am?811#V(R4wx zqruzcX=MK+95wK-FnQ7DPf$bhbK?0Nm)&cT?V=xGpUvTDA(UIq4@@*oky*Hg|ND2VBLjsPed67Pn1i>EN(@Y|c;! zhwH+kKA=ySA-3xi(Al*SBJo}9RcvI5TF>5PfXI^n5Y8pp=5Vv`&unI6U28RaHak)S zdt-jHS|*uM;K z7=!HdPTV7YzGx&8t2*M4Yvj8eQmJC|Ioy?@(q*CM5iyMxk4jmmaI(29$oH+XT8rBP z7q~4d@t*8y$TGPjQ)m!rWOmp!ElxX;-f>^*UqO)#kg2QGY(E`oE%eOZV0Kw3(W=Tc zpOFt`vWE+(0RMx07^3YXWzDo7|wZ1So5-uoV>e*|CSsdB>h^VP7QmfP# z#jdfg50ejJic{~O8rkG-bb9L9F<~7cVp`@^8aqtL-5W;CrNwb9Rj?0otKuW!y2ah( zV(TMGgIfRS5ZYYJM}<$aJ0s{0cQyMR7W>r*VHkf>tjGoz>5gUy<-`NR*wiG%^+m+K zBWmzeIpA8;YbV}jFQezLCXkx_G&{m?l_2(8Ls=Wv*weHjCzeF2R4~^L_8)v+F|pY) zl>1v8F$H6IuUZqL36T;Y;Y~qQMGzjDRI`&FBaWtkG%Tv7Ms^1+C(aEfzl+ zY4bE$EgtS&e4-VSH<^+In@TwG6!N7~di!(b2^rHQD?s)g;Vwbs+n zXon!Ilr^ZE*_m`+O~g}7h`_as72?#QV~A-`E9;3*i((L*78s%G=9Lrg@-(TPh_Rav z*98fm2;U`Mm6{p6FC+dW=pwspW|IXDMOq0LEtP~}8^j`bHjskZN5u4+8JU#P7;xH|8N zY*4xGvyGPb{e@5KUB|Z0{N?lktUHW5=g}Aw5O$A!u;>{W#IZLY7;^Wsqia4qbLiEY zyMfP@OJ_fU(P*moU;RCp4(jPwnFZ)dGQT#>w78 zD@>2YnSGJTizInZNGGf+UB4({{4)7GMsNsI3aU9i?r}UZOtHe)bnfKdPuAW&Wovs7 zZ{*^n3D0Lg9zSuz;^ceQ7IkMX8M%ZvYD4L!id|j27t1znsq6?!$X}dz_mnqhU&ih* z_nsGacI~2UXWLuxitV$Mik=ytX8K@A_rCsU%$rSN!!}QO(|h)d*B&0GNG_Ru`R7yT zkAR_S53Y5Q2oexDD zE`rS}dYqqs`yS2IaO#66HM1_pq-}~~asdvq~`1RWl3{gxQ z-TL$C1JCEYl=Il^%NIWX$E@(-@67qV@9aI@@#A2y6+K7acx?E)ZGT?<{hz;ui(naq^qnjO^HRT zb6b>RqZI+&~Wm~iLvuJ(fa!12fN4ac{FZJ+f_Q(*1Ir% z+@mphi)?!rNeiDH{Sepw!QzneCj)M7(-!EsO=xFfVrk~bah|!wEiM3 zT48EDclgc5#JiszbKf6*XLr2+(Q_FcA*_+5XAX8}J;ayIIDF>N^SO^p3pbR4O$wgW zyUrax`^nnk?(9cKPCR#bed+qLO*1|{_vwq}FIOMfF!B6no2I-ul%7VEA@W5+Lbe*Q}JfoI1&%y)eO^S^oOzNM}&Uw41?&i!G-+{d;yoci#Y@ypy( z|Iz&8*Sj7zc&5EgyYIK3e>i{S$8X+kCx)<7T9lUe;P$|lAYOY=0gp@FoLEj6@g0I| z$Mek^bvT;epu+bwZaUeO>xTd^aMrA46Jf@{xwR&6Y8{Sv>Rf!B3n!^YIwqu!G3B&M z#^^{LJ~ie?L}%dR&TD%GPRAk8ZX|eHh{1t&Rd^Dg>U|5fAiQ6v0YOxZEz2;1JlY;& zb1(`XB8C54f_*6iPHu*<1!&0ogwlwDgT3&thX40yh!z}tn1E^|qP>qu7UD$2t2J4r z6XUJb6SHj1h7nw%z1B|$TiJNF0$wO(DRn6x)qtTwpdQeL2#pNv3Ph+jaFkE>j~>Rh zlHjend2As8azRL-KQ)Bn+YRB&e>j3*II5RC-XqK7F50UvS;R%6JTB;-!5dw`qf@$z zz&r$bDV;VX7oiML4}Rzw)Cb~ZfS!v9-qOK(3h-Frhm$c-yOhp{dASXk(m(%p`XBrc z^$%j9;)zQt)>o`ABetc1=5n6806y@|vti}<2AQR%romog@p>9)&~iCi>^4w3iWfK7 zZBP=8!oW?kYvh!2Eakwxxt?%TKmg~X1aAc~FtN@`xN(Bu%wf99HQnK^Z}Lv}dg|=% z#z@2)Mu+=kLIH{s3K$AWm8GiIJ{^wYZLCzpV8!QBr}tPv+`G|U<#A)ZmWJ^D7;H>@ z>+m{(AnpcH*Ln6!rBr@6IICah;JJ8P#oKt+UkvmV10gcsgCumH2>!-$NFjrP7P7bu zK~V@2G0hy(%(2a-!-Y3V^X;y?zlrGad}IFpAd|QNUXjOijXkR^{g({&vrIYxbolPkHRU%Sji~LytUP zKPGff`ja$*{${!c%3so-qH*Xa(zQ?$8P(u#pMk$It52tc?=i`YUz6Zc{R~S$vNLD~ z^2xodT=WS`Ai9{o8WfooE9v(|Zq7L|yC*&O#B8V?N+;y>`Y~Uy z<^$(sqDGRmExlxG+`RJ>4zi5ct;5N!&$70o&w*zrON9DZbW)N*dx=EbS)7Orgjie9 zldOg4Rltc@N_3o6j(!Jua`-O-+PIA5B=i$&9f|;e7L+K3e>(g}GU)W}B^k*abdYrr z9c9&`^&rN}sz=ipN)laVaZrkEKH3eRCXjuc)sFs@amaVl#a~BGdF6l5e!C#QTPqmv8(lfCH)kC7)n2AwvujEKp)f-bX^^x%yB3<9My zhM=pmUXsXQw2OA6x1N=%=o?qCGDuDav6Mbx>xYH&nSJRm%tV;B+!VI)hCQ90w{>?k=6`EB$)A{2Lp^GriKMD_`FxF8N4`WP|8PU(6cpgh2 zVP}+{E>0}wmUdTZg3h8JEYktPsbmkN5 zeG~Eyr02>1CI0i*Pm?)GC^;jwr?>f?=iUM}C10ek0KFP&A5YISlH1br1n6y<66V7w z$;xPcfYo`N%uRufaua?4c+jd_Dr`!a3f0ho*5!U31 zbPG1s?_ayNX8fA|Vr6Mb;>x}0_x-%3xbCU5tQPY5bjLw(igl=4wjD7FMd%c(IB8dU z@A7{vT^PP0ede0U5-eim$jhp zz@#zBXC&?74C%=So;|PuF*p(wlp*@qGkwU1I~Ykx86z_8`sVIOmbn+DC$~#3q#xLi zf3BwEz{ug93m+7+`}Y5qY%(`M13{5~sh~e9(&1z;D3}bUg$$uH=%Hau zCc$K}!#NC21UCZyf>}eM8Oe*}@P`S6Q7kSCP%K6i`~^qHz+Y_K@Ypya_@GD}&xnhS z;EWJU5~8KS!O`)FNy$(jIf@2JovM z-e813s3=Sc335&9U8BdaK~nGt)(B0sCM`WJfsrsYcIeRPp&3InSPYifES4wAnF&m0 z0xNhSnMsaiFrh0uYg{&&L(8R!%}fv(lo!OxXN@lyA6Xcwr&VVarQOXUa~O#tvUoy* zJYi_UP~ulDCjww4_moa7n*?AYH@CQaa>e9(r-UnFxl_`W&f z%vc7C3=Y1ZWX4w4L~zLBwz(p4M#Qvw7)iC>0K$T!6XZq0_70Wr0aes!5I0wE=#;{z zJWuPmp&7vouV-;o${( zL$p{ZXFc+0LPSJt9E-tZMnnV$CvYE&Sok<|q{0-D0GwlEW8?6zNX%g{7Qvk})(DnB z_{8ERONS0&h=qz}%ZDb!#l<}-mIOz$7*B^d#=+!}MiV~HqM_!0ryN<&j zJ|`G{?kfmp0;~1Gb2hw~Ui9K44|S3oV@EKf`5-bjZc~a3iiD6vr93fbbhH>6k8G|c z6FP%}+U9DagC`74duhwaQDO=H2k(uJ;0$FkU#@!P)gExOa7J7NhY=Ud99mB66ieiZ zVhNM;TGYr<#S;4Kol;S?Ds<#1&CoGpghF~JoxvRWK#^Sj#@6Sm6O-PI2!1PP!as^S zw=v?xnQsfDqdSY`ii}`J93$?Xr{CSaP*=;)nM5u6Cl zbI&Of8F58LyLO8+_w0$ACW;kj#!UnF63dILg>#?F$(fdv!0qkj!vEgAAAI24w_h&b zyZ69>y?gi5ockX8(7ErUg9i?L@WKB5&V7)Kd_nNGLbeuop2)Ra1o>92*IVD1s!+_D zHA{Z|ktjLbE^xsUFV4mh2=OEmoM`u->Wd;R^$ta|ij|1sViQZRKT;)!V`&B4*MjrN z8VFIhJbfklccKI%1}LtJ!-@pt_3J~$uiHMX)xMqN9lWOiKWK*Y-S(A13-JK2KWbL0 z)Te6osTz%3uT~q?s!>X1s!}PMAwi^0?}t*a!==H1OQWVsf{+QSQ1l?WNvZYa!iP!; zaQ{L?n$%rR;NF#sNR1HyNbAocNRt)-NasHcRlPqW2+FPn1Tu8>pstJ{y2+^aiwLNZ zCR5iI0-1bU2)ah8^g&mR(r*ibh6*_N_Xk5w?OTAcn!tzFC%`~0utGXa(@sKDk87)O z&EPwTyBoT)2xP=s7=0WX<~lzJ%C7lvs5?-QDitt;o8i|18c-Rj{J6*UlCDwdx~}5! zM3STmi-M6r+u*MZCRK(m7&Rrygli^0m_n_D608D8$haWYD*w9R!EKGNC4{a~Yy6jj zNi{ZBmlhsx@oyVKYH$fCJsu!7SU>P815iLks!jgwaCD42X#Ap3x(3Ep2@fB21v(3$ z>dy)#H5yE;(O|)vuH(R18z2LnG+41f;jg7gkHbSC6tKVDk0&)Ie`hcp=m$z)Ul?7Z zRryB)2+t3epw;*#45Y=KwNzV+Ew2j{S5a4OD8PZeHc$g`S|jL0YE585Fg&SKVmEG&%$K0V4FoK0ab)uNyP9}dZ+=Rva3{a2;rGE-M@e*hQ zeSZze4Ono1M(eM|Yk)$7Qy6r9WeBukga*C8FN~@V6f439YG7C+&_J;woHVMigBpQn z*9rlwIBa%|fC6mX-z=w*MqL*yu)atDmE*2d5y|S>Cd8d0SpdStqZ@;|wug5e2dD|_ zWy1VSnA(K-;es@2V2MF>&M+uIk_p&$kx}3;WEAc;Kd8R~3{9A8pzznmV7~!fpp3*f zh5RsPDElJezOLH05bj*VN6L`vR4a$!x{;zSr{TN5J}@nSNcwf60D23!krL(`mjd36 zG%7p@l|PpYPTF7MPAZU$OXKjtaJp8d^|e!Itm**KVNf2|!EFnor~)4m>5&kEfthU}iCZuGNF%v8gpbV10n8Av^kmb`Nb=UyyGKi*U9j(FqA|tV;xT7l6}jx)4hV1u40xZ6Oy_G{WxS+Ybbo zaDO6cF#1=sfDyzHUE5KhXloe>eU3!|>{76=mj#eg0Wi3V+AiS6Iv$|O5djE_21bHl zABPPXC?swBdC;*KJflm(@WHXMvn^{V9*Dl}62?H5q3=?L_{sqTpGe>4#4K_dP|Gj^ zlLbRz45b(mBOO321d_HSFm=~qqV1{-8gtmd3nIF{Yc%W_(A~F^O)PAq3$Z8zwwa-g zDF(ux=zvf|+m)dKc80e4h=9`CWcZ{)yfWm`Gi)EU7gAksD17C~L{9+XWB}W(5uiEL zj9o3^zB$QQpfS*fiS3(Awu$7xOb`cMy+B2=Qn&3_LKQY& zUDrB{IXMojfwfi#@YhPfZ5u`OP;CuXS%YU+18u;hWK*L*J__XaL<6tL;W)R#%4%Rq zKof|_6mTggBY?wxrwJ6WWct}8rGPcAQGgdFVTaM-AOcm;vjyvUDUJkCAI=Iv16=qD zFzZ~*nv#9Jz?2kGUr<1a`i`YggF2Ri z@gac6w!|1<59op%um+x_0Aq=a^7jE1fD-5jko7sBUnMg@xj2X7yEq5<9t^wQ0rGOL z4<5_uX*&!q+$K^jQz zNpb_rM2~Hc$qax4M!C6^&sH$tejj0qvOFCW#<4Yz$qb3u#Zc<2bV zTX&4~_QXgi zMq_i}u3ivI5&IV8i4Vg_1Ms%v*}%;kk4a!9LK*;>0+j2RfjZLrj#hy(09u`dLDW=D z84mMxt?(VrgHdf8H5fL4#a*s)flHQ+xav<425PwgyDkOGQu*-?GtdjDGV-Z_w_qsL z7uaBp90&eBTRzm1bWq!ZVZES|3Xc)eA-!*YKE#0(A!ddJQNaJHz=UK9sfTD14&7ty zltgj_hV;Pp*R^^$u5OD5WQHA9g=i>l&$)|2T`w@O9&`fwYn|wvYh6c=7ccPR%P8OI z@u2e*KE_b(%JJa0*ScM2&|mW%w1Zu}cqsjxuh-xrtZjKVps`MxHoW8bZ3=v8X5<6a z*0h1DZ~u7E9Ma+eU=oa2C5z{TiaSB$BmJ;BbQUIdns4*oauovvtk7@^07oF3EK|1IXV7F)VG(e-%7@UhAja40!v;3_TZ%9gR5t;Y?}87)G<d^aePw=#0j-5|J4F1p>Z=iqLF+focZ z7!BMh3hfJ}_1`KAor_4(c0@*2ZYSuHmD_`u+T+`UIa#6|WMpaO4w}HWaz{vv_xO$> zqE69!bjjk%_ZUg5SH2gT(sTU1Fy&6s`%LZO%J*5ulPlk6kM2AEes~5c-pR>|wCs$? zm2~gq7HCiG99oYZ?H#c&D}JwJajA80!gAZH zz0wulZ}%py?2P{)Y4u|32g&PJuliu*#-49K7`0_*{JxZ)!`6MWttVIQlW*($cAsK9 zIby$ZXJplWRj=gv{p$VN@AhjBW{o(YJzQFKKzG#k`~m$j?{^0b$2&)SXgs;N>O<3+ z)z5#JdZFjL5AV9PbHqoZ`wmxqH0H|5=RZoj+V|Z@aQ|L%Faw^2IcTOQtUj2@)SWyy zmNQOrC@XTJ?a(-Zef6R2n5L75azyhaALmMz*gnonTC@7&{FK*Demq{eOY%v9_EXy@ zg~n5>KPei0`Q#^eXV4N37iaP8hbQDFtT|j#pgVQ=p5k!{pO%(Rw0}CW+`i`1vMEic zKAluKFX6Lt+Y2Y!WQzAw`;nUr9e^Iw(m-I_#&!^R2y0)Hr;Y;_n%csBeY^Nn2tKZ41IX1I5VePSo{krduH69$7 z_?7qY#G0>~j@s9L)qJe!`>$plpO^S`%gH4*U$>rFv-a!R7he1R>-#S4O8jO{-={U- z+&}lqskPsu0`wSh+jty9L_MYQKBLczWG;kB#KE2$w)N%UB+85TJ ze#-g!+0#$g?@s=Hh4(YZ_s_JPUjO~GbACPh{d4UhBhRetcwR<&aPQrz2WQ&E1J)pUAxjh^4z-BOJ|&0zwU(%=QeD7{oJ`1x9lEyeq+yP zGtO_?dV0h8&D(xGcmAdAA)_vA*~zcF@N%#8#S5?O*Pp-e>cQ+$KlB_ftNY=#qt!3| z@cOal^FO?C+&}8#){{%?F1~r@g%>Zrb>a2%7yof-_oyGY^?g?N{J_K5SB1IF(+{_^4I-!A;}QN|Ei-@&Y5uD(OLiJSU9 zE-?Ji_epV%?DFB#Nv_MEme*{${MnRQKU_Xi`Jn9Aqqb$PUq7#1yXn_2oNxT_>zDO= zWWOEr9&!ElRm=CAe*1dPZ$JF@P5Th}mE)bm+*eM_PuzUv+XaS;SH4@ABme#6;z{n` zPc5(6{QKz@vo8Mr{mKXBf1Fvp%>BpNb!#{Oac<)q7ymfFWsm%y7kZAk|M|n#?>GPR z;OILs1Z}{=*F9&lJfA$@orZ#EF{Vg?v7Q|Q2G2E3ysgS%a~V@4l9 z3a-^|%M|f~3ZOr}0|q5lcF@KEFnUZNngf;;UghYJAfyqV#d2AAafruE2okUw-IjX% z9RbsA@X~1lD!^YlKw-k*(L?-bdc$;wZ7`g54Gynd+|YyFV3{?Yx{o;hW>k0;yddv( zR9Tz>g24>o^-s9Zy78I~6WH2lp3|8+u|C8ht* z--;nj0l$Np4a{f|8qIHCNeDxPQuv+>kTzJ#;7JO|xJ2-;5YktIr0)=vl37+CbG@M$+qVhLhAQOx4Q8h-u8*pTe$N(pSgphP|H5R`6&kfJ@CSr(my`$zGgikF_5M@YAM2h4cGvse5(J&|>bP;A9p*Y=>u6_9u| znEzI=bn|jT`q@%yasO@4Slpr!|KJMBk8ag!aNrE6_3Ni3|DZ$Kd6AGVd@7*V-*P!} zt5WUlcTj3j)DGy>MerAaI-Nn%;|~O3x43b4z76Y)+XsaHz#rhcir{Y`q#Nc1Nq_F7 zxL(_wZ`h`9!@d0`KMv|&m4Qtpz`c}TA$`ja3)3HzeDe-~J%kGWh`;be2<# zJpP7cARhWwJM2yywVU4-9S}`z${6pl&VaYuaX)y)vA*>h9KNLj1Myq5kY!ka)ZOHC z-k&16F8Nwg;jrB*_a@~32dR_+ZW-@2xdZ6GPx6ha(yc?j7613iz9|>GRrqZP{yyo0 zv%OnI-;DkH-}Gu^?ELUtK1uLHwpfKFzKKRgMrwEAl zCIw_ykDrz^RY5P z&w6Wa-JNv2E!}@XKc!_-S-=0@x`u5zPG^6JR$Y%9lhw7gR+kR@p3+{PdB^y2TRL|p^ew5aQuX)6 z@xWzrSX^Z@Yyll0W~gS_%Ld`yMaup${zv-RCh6+?dAY!LjTHlHgo-_7O_uWiW-M{e zs3mB2l6ZUeYJ&>2&#^-N{8@G)Ofm|wEY0J&8pX@H9bb-9YfO8VavB1Bwl~zq2&Q&1B zwE#_iZ54bmGL;|YI-w3ZNI*X|Yx zwG@xSR_&~U8HJAO3FaJ}`VFjYs21Zke04Hph!e&_J~#oViMhCacMYV8W0g3UtifsK zxLG)Dtif#q?o@#D%dv&HT8@h>Twp@8*-@;4*TtYRVH}l-QbMn#wv-gJIY-xQgM1Rx zS7CZXmPw&7LTlVaiU}mYxPgnn&t&+>#P;=A)xb7?2GA=eE2vT5}bq4ODTB z%Bjth)utwhd9e5EW>i4e7D~U;Q8&uN3J;do2+hnJ*S0xp7M537YzU06WCArloOoYP z&A}>I_1qic8nBuT@=R5V=77Fnbo_I(zWEdo`w126it2E?8v0Q7tQlK4(7%7Y*eHX? zOWBLsdoaSBsl@c&oAia*g&#_Fszyy+PLT(4r6$PF135K?9$Sa|>jwHyD7@`>DSPLZ z)K`>a&XeIP1N#}J8npAw*~R_(_uK3C@(1$63b;0KHrfN~jf0+wl7H79PhCzC?CGW^ z%Ov>B?$1ljW+m=#`*;1R`MNcq1^dQ~z811?zu9 ze`lS!FbjGbC*UO+uxC|ZiGi`NEsB17Qcg2?J}G^QnqXg=4RKgmuEy6w6F~^>3M_HW wJZ20Mi0Um3Gn?SM#H;G-Wz+?&sQ-dh6u6XyJCtyD_dowb+Bk%Y;Vb|D5A@Bs`2YX_ literal 0 HcmV?d00001 diff --git a/data/snapshots/2026-06-07/atlascloud.json b/data/snapshots/2026-06-07/atlascloud.json index fb993fb..f514993 100644 --- a/data/snapshots/2026-06-07/atlascloud.json +++ b/data/snapshots/2026-06-07/atlascloud.json @@ -1,6 +1,6 @@ { "provider_id": "atlascloud", - "captured_at": "2026-06-07T04:53:08.859843+00:00", + "captured_at": "2026-06-07T06:46:33.624761+00:00", "records": [ { "provider_id": "atlascloud", @@ -13,7 +13,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.216, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857672+00:00", + "captured_at": "2026-06-07T06:46:33.622821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -29,7 +29,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.88, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857718+00:00", + "captured_at": "2026-06-07T06:46:33.622856+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -45,7 +45,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.18, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857727+00:00", + "captured_at": "2026-06-07T06:46:33.622865+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -61,7 +61,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857740+00:00", + "captured_at": "2026-06-07T06:46:33.622877+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -77,7 +77,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857746+00:00", + "captured_at": "2026-06-07T06:46:33.622883+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -93,7 +93,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857752+00:00", + "captured_at": "2026-06-07T06:46:33.622889+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -109,7 +109,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857763+00:00", + "captured_at": "2026-06-07T06:46:33.622896+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -125,7 +125,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.1500000000000004, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857769+00:00", + "captured_at": "2026-06-07T06:46:33.622904+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -141,7 +141,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.35, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857774+00:00", + "captured_at": "2026-06-07T06:46:33.622910+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -157,7 +157,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857780+00:00", + "captured_at": "2026-06-07T06:46:33.622919+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -173,7 +173,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857788+00:00", + "captured_at": "2026-06-07T06:46:33.622924+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -189,7 +189,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.7, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857794+00:00", + "captured_at": "2026-06-07T06:46:33.622929+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -205,7 +205,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.78, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857802+00:00", + "captured_at": "2026-06-07T06:46:33.622938+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -221,7 +221,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.8, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857807+00:00", + "captured_at": "2026-06-07T06:46:33.622943+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -237,7 +237,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857812+00:00", + "captured_at": "2026-06-07T06:46:33.622948+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -253,7 +253,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857819+00:00", + "captured_at": "2026-06-07T06:46:33.622955+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -269,7 +269,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.88, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857824+00:00", + "captured_at": "2026-06-07T06:46:33.622961+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -285,7 +285,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857829+00:00", + "captured_at": "2026-06-07T06:46:33.622966+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -301,7 +301,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857836+00:00", + "captured_at": "2026-06-07T06:46:33.622973+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -317,7 +317,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857840+00:00", + "captured_at": "2026-06-07T06:46:33.622977+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -333,7 +333,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857845+00:00", + "captured_at": "2026-06-07T06:46:33.622982+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -349,7 +349,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857852+00:00", + "captured_at": "2026-06-07T06:46:33.622989+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -365,7 +365,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857858+00:00", + "captured_at": "2026-06-07T06:46:33.622994+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -381,7 +381,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857863+00:00", + "captured_at": "2026-06-07T06:46:33.622999+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -397,7 +397,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857869+00:00", + "captured_at": "2026-06-07T06:46:33.623005+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -413,7 +413,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857875+00:00", + "captured_at": "2026-06-07T06:46:33.623010+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -429,7 +429,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857880+00:00", + "captured_at": "2026-06-07T06:46:33.623015+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -445,7 +445,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857887+00:00", + "captured_at": "2026-06-07T06:46:33.623021+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -461,7 +461,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857892+00:00", + "captured_at": "2026-06-07T06:46:33.623026+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -477,7 +477,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857897+00:00", + "captured_at": "2026-06-07T06:46:33.623033+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -493,7 +493,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857904+00:00", + "captured_at": "2026-06-07T06:46:33.623040+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -509,7 +509,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857909+00:00", + "captured_at": "2026-06-07T06:46:33.623045+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -525,7 +525,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857914+00:00", + "captured_at": "2026-06-07T06:46:33.623050+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -541,7 +541,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857920+00:00", + "captured_at": "2026-06-07T06:46:33.623056+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -557,7 +557,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857925+00:00", + "captured_at": "2026-06-07T06:46:33.623060+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -573,7 +573,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857930+00:00", + "captured_at": "2026-06-07T06:46:33.623065+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -589,7 +589,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857936+00:00", + "captured_at": "2026-06-07T06:46:33.623071+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -605,7 +605,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.41, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857943+00:00", + "captured_at": "2026-06-07T06:46:33.623076+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -621,7 +621,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857948+00:00", + "captured_at": "2026-06-07T06:46:33.623081+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -637,7 +637,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857954+00:00", + "captured_at": "2026-06-07T06:46:33.623087+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -653,7 +653,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857959+00:00", + "captured_at": "2026-06-07T06:46:33.623094+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -669,7 +669,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.11, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857966+00:00", + "captured_at": "2026-06-07T06:46:33.623099+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -685,7 +685,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.255, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857973+00:00", + "captured_at": "2026-06-07T06:46:33.623105+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -701,7 +701,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857978+00:00", + "captured_at": "2026-06-07T06:46:33.623110+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -717,7 +717,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857983+00:00", + "captured_at": "2026-06-07T06:46:33.623114+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -733,7 +733,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857989+00:00", + "captured_at": "2026-06-07T06:46:33.623121+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -749,7 +749,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.857996+00:00", + "captured_at": "2026-06-07T06:46:33.623126+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -765,7 +765,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858001+00:00", + "captured_at": "2026-06-07T06:46:33.623130+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -781,7 +781,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858007+00:00", + "captured_at": "2026-06-07T06:46:33.623138+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -797,7 +797,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858012+00:00", + "captured_at": "2026-06-07T06:46:33.623143+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -813,7 +813,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858016+00:00", + "captured_at": "2026-06-07T06:46:33.623148+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -829,7 +829,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858022+00:00", + "captured_at": "2026-06-07T06:46:33.623154+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -845,7 +845,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858028+00:00", + "captured_at": "2026-06-07T06:46:33.623159+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -861,7 +861,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858033+00:00", + "captured_at": "2026-06-07T06:46:33.623164+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -877,7 +877,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858039+00:00", + "captured_at": "2026-06-07T06:46:33.623170+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -893,7 +893,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858044+00:00", + "captured_at": "2026-06-07T06:46:33.623175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -909,7 +909,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858051+00:00", + "captured_at": "2026-06-07T06:46:33.623179+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -925,7 +925,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858058+00:00", + "captured_at": "2026-06-07T06:46:33.623185+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -941,7 +941,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858063+00:00", + "captured_at": "2026-06-07T06:46:33.623190+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -957,7 +957,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.01, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858068+00:00", + "captured_at": "2026-06-07T06:46:33.623195+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -973,7 +973,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858075+00:00", + "captured_at": "2026-06-07T06:46:33.623200+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -989,7 +989,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858083+00:00", + "captured_at": "2026-06-07T06:46:33.623205+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1005,7 +1005,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.01, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858087+00:00", + "captured_at": "2026-06-07T06:46:33.623210+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1021,7 +1021,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858094+00:00", + "captured_at": "2026-06-07T06:46:33.623216+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1037,7 +1037,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858099+00:00", + "captured_at": "2026-06-07T06:46:33.623221+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1053,7 +1053,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858104+00:00", + "captured_at": "2026-06-07T06:46:33.623226+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1069,7 +1069,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858110+00:00", + "captured_at": "2026-06-07T06:46:33.623232+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1085,7 +1085,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858115+00:00", + "captured_at": "2026-06-07T06:46:33.623237+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1101,7 +1101,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858120+00:00", + "captured_at": "2026-06-07T06:46:33.623242+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1117,7 +1117,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858126+00:00", + "captured_at": "2026-06-07T06:46:33.623250+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1133,7 +1133,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858130+00:00", + "captured_at": "2026-06-07T06:46:33.623255+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1149,7 +1149,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858135+00:00", + "captured_at": "2026-06-07T06:46:33.623261+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1165,7 +1165,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858144+00:00", + "captured_at": "2026-06-07T06:46:33.623267+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1181,7 +1181,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858149+00:00", + "captured_at": "2026-06-07T06:46:33.623272+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1197,7 +1197,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858154+00:00", + "captured_at": "2026-06-07T06:46:33.623277+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1213,7 +1213,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858160+00:00", + "captured_at": "2026-06-07T06:46:33.623283+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1229,7 +1229,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858165+00:00", + "captured_at": "2026-06-07T06:46:33.623287+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1245,7 +1245,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858171+00:00", + "captured_at": "2026-06-07T06:46:33.623293+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1261,7 +1261,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858177+00:00", + "captured_at": "2026-06-07T06:46:33.623299+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1277,7 +1277,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858181+00:00", + "captured_at": "2026-06-07T06:46:33.623304+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1293,7 +1293,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.075, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858186+00:00", + "captured_at": "2026-06-07T06:46:33.623309+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1309,7 +1309,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858192+00:00", + "captured_at": "2026-06-07T06:46:33.623315+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1325,7 +1325,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858197+00:00", + "captured_at": "2026-06-07T06:46:33.623320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1341,7 +1341,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858202+00:00", + "captured_at": "2026-06-07T06:46:33.623324+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1357,7 +1357,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858208+00:00", + "captured_at": "2026-06-07T06:46:33.623330+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1373,7 +1373,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858212+00:00", + "captured_at": "2026-06-07T06:46:33.623335+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1389,7 +1389,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858219+00:00", + "captured_at": "2026-06-07T06:46:33.623340+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1405,7 +1405,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858225+00:00", + "captured_at": "2026-06-07T06:46:33.623346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1421,7 +1421,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858230+00:00", + "captured_at": "2026-06-07T06:46:33.623350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1437,7 +1437,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858234+00:00", + "captured_at": "2026-06-07T06:46:33.623355+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1453,7 +1453,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858240+00:00", + "captured_at": "2026-06-07T06:46:33.623361+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1469,7 +1469,7 @@ "unit": "per_1m_output_tokens", "price_usd": 60.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858246+00:00", + "captured_at": "2026-06-07T06:46:33.623366+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1485,7 +1485,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 7.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858250+00:00", + "captured_at": "2026-06-07T06:46:33.623371+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1501,7 +1501,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858257+00:00", + "captured_at": "2026-06-07T06:46:33.623377+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1517,7 +1517,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858262+00:00", + "captured_at": "2026-06-07T06:46:33.623382+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1533,7 +1533,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858267+00:00", + "captured_at": "2026-06-07T06:46:33.623387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1549,7 +1549,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858273+00:00", + "captured_at": "2026-06-07T06:46:33.623393+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1565,7 +1565,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858278+00:00", + "captured_at": "2026-06-07T06:46:33.623397+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1581,7 +1581,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858282+00:00", + "captured_at": "2026-06-07T06:46:33.623402+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1597,7 +1597,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858289+00:00", + "captured_at": "2026-06-07T06:46:33.623408+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1613,7 +1613,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858293+00:00", + "captured_at": "2026-06-07T06:46:33.623413+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1629,7 +1629,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858298+00:00", + "captured_at": "2026-06-07T06:46:33.623418+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1645,7 +1645,7 @@ "unit": "per_1m_input_tokens", "price_usd": 20.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858304+00:00", + "captured_at": "2026-06-07T06:46:33.623426+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1661,7 +1661,7 @@ "unit": "per_1m_output_tokens", "price_usd": 80.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858311+00:00", + "captured_at": "2026-06-07T06:46:33.623431+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1677,7 +1677,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 20.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858316+00:00", + "captured_at": "2026-06-07T06:46:33.623435+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1693,7 +1693,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858323+00:00", + "captured_at": "2026-06-07T06:46:33.623442+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1709,7 +1709,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858328+00:00", + "captured_at": "2026-06-07T06:46:33.623447+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1725,7 +1725,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858333+00:00", + "captured_at": "2026-06-07T06:46:33.623452+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1741,7 +1741,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858339+00:00", + "captured_at": "2026-06-07T06:46:33.623458+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1757,7 +1757,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858347+00:00", + "captured_at": "2026-06-07T06:46:33.623465+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1773,7 +1773,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858352+00:00", + "captured_at": "2026-06-07T06:46:33.623470+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1789,7 +1789,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858358+00:00", + "captured_at": "2026-06-07T06:46:33.623476+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1805,7 +1805,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858363+00:00", + "captured_at": "2026-06-07T06:46:33.623481+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1821,7 +1821,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858368+00:00", + "captured_at": "2026-06-07T06:46:33.623486+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1837,7 +1837,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858374+00:00", + "captured_at": "2026-06-07T06:46:33.623492+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1853,7 +1853,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858379+00:00", + "captured_at": "2026-06-07T06:46:33.623497+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1869,7 +1869,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858383+00:00", + "captured_at": "2026-06-07T06:46:33.623501+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1885,7 +1885,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858390+00:00", + "captured_at": "2026-06-07T06:46:33.623507+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1901,7 +1901,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858395+00:00", + "captured_at": "2026-06-07T06:46:33.623512+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1917,7 +1917,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858399+00:00", + "captured_at": "2026-06-07T06:46:33.623517+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1933,7 +1933,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858406+00:00", + "captured_at": "2026-06-07T06:46:33.623525+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1949,7 +1949,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.38, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858410+00:00", + "captured_at": "2026-06-07T06:46:33.623530+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1965,7 +1965,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858415+00:00", + "captured_at": "2026-06-07T06:46:33.623536+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1981,7 +1981,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858422+00:00", + "captured_at": "2026-06-07T06:46:33.623542+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1997,7 +1997,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858426+00:00", + "captured_at": "2026-06-07T06:46:33.623547+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2013,7 +2013,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858431+00:00", + "captured_at": "2026-06-07T06:46:33.623552+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2029,7 +2029,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858440+00:00", + "captured_at": "2026-06-07T06:46:33.623558+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2045,7 +2045,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858447+00:00", + "captured_at": "2026-06-07T06:46:33.623563+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2061,7 +2061,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858452+00:00", + "captured_at": "2026-06-07T06:46:33.623568+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2077,7 +2077,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858459+00:00", + "captured_at": "2026-06-07T06:46:33.623574+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2093,7 +2093,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858464+00:00", + "captured_at": "2026-06-07T06:46:33.623579+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2109,7 +2109,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858469+00:00", + "captured_at": "2026-06-07T06:46:33.623584+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2125,7 +2125,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858475+00:00", + "captured_at": "2026-06-07T06:46:33.623590+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2141,7 +2141,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858480+00:00", + "captured_at": "2026-06-07T06:46:33.623597+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2157,7 +2157,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858487+00:00", + "captured_at": "2026-06-07T06:46:33.623601+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2173,7 +2173,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858493+00:00", + "captured_at": "2026-06-07T06:46:33.623609+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2189,7 +2189,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858498+00:00", + "captured_at": "2026-06-07T06:46:33.623614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2205,7 +2205,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.005, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858502+00:00", + "captured_at": "2026-06-07T06:46:33.623619+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2221,7 +2221,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858509+00:00", + "captured_at": "2026-06-07T06:46:33.623625+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2237,7 +2237,7 @@ "unit": "per_1m_output_tokens", "price_usd": 120.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858513+00:00", + "captured_at": "2026-06-07T06:46:33.623630+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2253,7 +2253,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858518+00:00", + "captured_at": "2026-06-07T06:46:33.623634+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2269,7 +2269,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858525+00:00", + "captured_at": "2026-06-07T06:46:33.623640+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2285,7 +2285,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858529+00:00", + "captured_at": "2026-06-07T06:46:33.623647+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2301,7 +2301,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858534+00:00", + "captured_at": "2026-06-07T06:46:33.623652+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2317,7 +2317,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858540+00:00", + "captured_at": "2026-06-07T06:46:33.623658+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2333,7 +2333,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858545+00:00", + "captured_at": "2026-06-07T06:46:33.623662+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2349,7 +2349,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858549+00:00", + "captured_at": "2026-06-07T06:46:33.623667+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2365,7 +2365,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858555+00:00", + "captured_at": "2026-06-07T06:46:33.623673+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2381,7 +2381,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858560+00:00", + "captured_at": "2026-06-07T06:46:33.623677+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2397,7 +2397,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858565+00:00", + "captured_at": "2026-06-07T06:46:33.623684+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2413,7 +2413,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858572+00:00", + "captured_at": "2026-06-07T06:46:33.623691+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2429,7 +2429,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858577+00:00", + "captured_at": "2026-06-07T06:46:33.623695+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2445,7 +2445,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.125, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858582+00:00", + "captured_at": "2026-06-07T06:46:33.623700+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2461,7 +2461,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858588+00:00", + "captured_at": "2026-06-07T06:46:33.623706+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2477,7 +2477,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858592+00:00", + "captured_at": "2026-06-07T06:46:33.623710+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2493,7 +2493,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858597+00:00", + "captured_at": "2026-06-07T06:46:33.623715+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2509,7 +2509,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858603+00:00", + "captured_at": "2026-06-07T06:46:33.623721+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2525,7 +2525,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858608+00:00", + "captured_at": "2026-06-07T06:46:33.623726+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2541,7 +2541,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858613+00:00", + "captured_at": "2026-06-07T06:46:33.623731+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2557,7 +2557,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.52, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858619+00:00", + "captured_at": "2026-06-07T06:46:33.623737+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2573,7 +2573,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.85, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858624+00:00", + "captured_at": "2026-06-07T06:46:33.623741+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2589,7 +2589,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.12, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858629+00:00", + "captured_at": "2026-06-07T06:46:33.623746+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2605,7 +2605,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.29, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858635+00:00", + "captured_at": "2026-06-07T06:46:33.623752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2621,7 +2621,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858641+00:00", + "captured_at": "2026-06-07T06:46:33.623757+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2637,7 +2637,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.03, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858645+00:00", + "captured_at": "2026-06-07T06:46:33.623763+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2653,7 +2653,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858656+00:00", + "captured_at": "2026-06-07T06:46:33.623769+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2669,7 +2669,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858663+00:00", + "captured_at": "2026-06-07T06:46:33.623774+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2685,7 +2685,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858668+00:00", + "captured_at": "2026-06-07T06:46:33.623779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2701,7 +2701,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858675+00:00", + "captured_at": "2026-06-07T06:46:33.623785+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2717,7 +2717,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858680+00:00", + "captured_at": "2026-06-07T06:46:33.623790+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2733,7 +2733,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.075, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858684+00:00", + "captured_at": "2026-06-07T06:46:33.623795+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2749,7 +2749,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858691+00:00", + "captured_at": "2026-06-07T06:46:33.623801+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2765,7 +2765,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858695+00:00", + "captured_at": "2026-06-07T06:46:33.623805+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2781,7 +2781,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.049999999999999996, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858701+00:00", + "captured_at": "2026-06-07T06:46:33.623811+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2797,7 +2797,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.28, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858707+00:00", + "captured_at": "2026-06-07T06:46:33.623817+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2813,7 +2813,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858713+00:00", + "captured_at": "2026-06-07T06:46:33.623821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2829,7 +2829,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.28, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858717+00:00", + "captured_at": "2026-06-07T06:46:33.623826+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2845,7 +2845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858723+00:00", + "captured_at": "2026-06-07T06:46:33.623832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2861,7 +2861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858728+00:00", + "captured_at": "2026-06-07T06:46:33.623836+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2877,7 +2877,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858732+00:00", + "captured_at": "2026-06-07T06:46:33.623841+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2893,7 +2893,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858739+00:00", + "captured_at": "2026-06-07T06:46:33.623847+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2909,7 +2909,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858745+00:00", + "captured_at": "2026-06-07T06:46:33.623851+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2925,7 +2925,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858751+00:00", + "captured_at": "2026-06-07T06:46:33.623856+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2941,7 +2941,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858757+00:00", + "captured_at": "2026-06-07T06:46:33.623862+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2957,7 +2957,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858761+00:00", + "captured_at": "2026-06-07T06:46:33.623867+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2973,7 +2973,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858766+00:00", + "captured_at": "2026-06-07T06:46:33.623871+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2989,7 +2989,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858773+00:00", + "captured_at": "2026-06-07T06:46:33.623877+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3005,7 +3005,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858778+00:00", + "captured_at": "2026-06-07T06:46:33.623882+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3021,7 +3021,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.04, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858783+00:00", + "captured_at": "2026-06-07T06:46:33.623887+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3037,7 +3037,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858789+00:00", + "captured_at": "2026-06-07T06:46:33.623895+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3053,7 +3053,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858793+00:00", + "captured_at": "2026-06-07T06:46:33.623899+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3069,7 +3069,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858798+00:00", + "captured_at": "2026-06-07T06:46:33.623904+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3085,7 +3085,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858805+00:00", + "captured_at": "2026-06-07T06:46:33.623912+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3101,7 +3101,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858809+00:00", + "captured_at": "2026-06-07T06:46:33.623917+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3117,7 +3117,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858814+00:00", + "captured_at": "2026-06-07T06:46:33.623921+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3133,7 +3133,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858820+00:00", + "captured_at": "2026-06-07T06:46:33.623930+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3149,7 +3149,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858827+00:00", + "captured_at": "2026-06-07T06:46:33.623934+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3165,7 +3165,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858834+00:00", + "captured_at": "2026-06-07T06:46:33.623939+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3181,7 +3181,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858840+00:00", + "captured_at": "2026-06-07T06:46:33.623945+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3197,7 +3197,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858845+00:00", + "captured_at": "2026-06-07T06:46:33.623950+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3213,7 +3213,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858849+00:00", + "captured_at": "2026-06-07T06:46:33.623954+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3229,7 +3229,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858855+00:00", + "captured_at": "2026-06-07T06:46:33.623961+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3245,7 +3245,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858860+00:00", + "captured_at": "2026-06-07T06:46:33.623966+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3261,7 +3261,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858864+00:00", + "captured_at": "2026-06-07T06:46:33.623971+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3277,7 +3277,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858873+00:00", + "captured_at": "2026-06-07T06:46:33.623977+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3293,7 +3293,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858878+00:00", + "captured_at": "2026-06-07T06:46:33.623981+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3309,7 +3309,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858898+00:00", + "captured_at": "2026-06-07T06:46:33.623986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3325,7 +3325,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858905+00:00", + "captured_at": "2026-06-07T06:46:33.623992+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3341,7 +3341,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858910+00:00", + "captured_at": "2026-06-07T06:46:33.623996+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3357,7 +3357,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858914+00:00", + "captured_at": "2026-06-07T06:46:33.624001+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3373,7 +3373,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858921+00:00", + "captured_at": "2026-06-07T06:46:33.624007+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3389,7 +3389,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858926+00:00", + "captured_at": "2026-06-07T06:46:33.624012+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3405,7 +3405,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858931+00:00", + "captured_at": "2026-06-07T06:46:33.624016+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3421,7 +3421,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.49, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858937+00:00", + "captured_at": "2026-06-07T06:46:33.624022+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3437,7 +3437,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858942+00:00", + "captured_at": "2026-06-07T06:46:33.624027+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3453,7 +3453,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858947+00:00", + "captured_at": "2026-06-07T06:46:33.624032+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3469,7 +3469,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858953+00:00", + "captured_at": "2026-06-07T06:46:33.624038+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3485,7 +3485,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858958+00:00", + "captured_at": "2026-06-07T06:46:33.624042+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3501,7 +3501,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858963+00:00", + "captured_at": "2026-06-07T06:46:33.624047+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3517,7 +3517,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858969+00:00", + "captured_at": "2026-06-07T06:46:33.624053+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3533,7 +3533,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858973+00:00", + "captured_at": "2026-06-07T06:46:33.624057+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3549,7 +3549,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858978+00:00", + "captured_at": "2026-06-07T06:46:33.624062+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3565,7 +3565,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.295, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858984+00:00", + "captured_at": "2026-06-07T06:46:33.624068+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3581,7 +3581,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858989+00:00", + "captured_at": "2026-06-07T06:46:33.624073+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3597,7 +3597,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858993+00:00", + "captured_at": "2026-06-07T06:46:33.624077+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3613,7 +3613,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.858999+00:00", + "captured_at": "2026-06-07T06:46:33.624083+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3629,7 +3629,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859004+00:00", + "captured_at": "2026-06-07T06:46:33.624090+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3645,7 +3645,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.55, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859011+00:00", + "captured_at": "2026-06-07T06:46:33.624095+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3661,7 +3661,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859017+00:00", + "captured_at": "2026-06-07T06:46:33.624101+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3677,7 +3677,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859022+00:00", + "captured_at": "2026-06-07T06:46:33.624108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3693,7 +3693,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859027+00:00", + "captured_at": "2026-06-07T06:46:33.624113+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3709,7 +3709,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859033+00:00", + "captured_at": "2026-06-07T06:46:33.624119+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3725,7 +3725,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859038+00:00", + "captured_at": "2026-06-07T06:46:33.624124+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3741,7 +3741,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859043+00:00", + "captured_at": "2026-06-07T06:46:33.624129+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3757,7 +3757,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.18, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859050+00:00", + "captured_at": "2026-06-07T06:46:33.624135+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3773,7 +3773,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.35, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859054+00:00", + "captured_at": "2026-06-07T06:46:33.624140+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3789,7 +3789,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.18, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859059+00:00", + "captured_at": "2026-06-07T06:46:33.624144+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3805,7 +3805,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859065+00:00", + "captured_at": "2026-06-07T06:46:33.624150+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3821,7 +3821,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.4, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859070+00:00", + "captured_at": "2026-06-07T06:46:33.624155+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3837,7 +3837,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859074+00:00", + "captured_at": "2026-06-07T06:46:33.624160+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3853,7 +3853,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.22499999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859081+00:00", + "captured_at": "2026-06-07T06:46:33.624166+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3869,7 +3869,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859086+00:00", + "captured_at": "2026-06-07T06:46:33.624170+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3885,7 +3885,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.22499999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859090+00:00", + "captured_at": "2026-06-07T06:46:33.624175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3901,7 +3901,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859096+00:00", + "captured_at": "2026-06-07T06:46:33.624181+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3917,7 +3917,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.16, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859101+00:00", + "captured_at": "2026-06-07T06:46:33.624186+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3933,7 +3933,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.27, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859106+00:00", + "captured_at": "2026-06-07T06:46:33.624190+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3949,7 +3949,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859114+00:00", + "captured_at": "2026-06-07T06:46:33.624197+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3965,7 +3965,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859119+00:00", + "captured_at": "2026-06-07T06:46:33.624202+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3981,7 +3981,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859124+00:00", + "captured_at": "2026-06-07T06:46:33.624206+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3997,7 +3997,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859130+00:00", + "captured_at": "2026-06-07T06:46:33.624212+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4013,7 +4013,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859134+00:00", + "captured_at": "2026-06-07T06:46:33.624217+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4029,7 +4029,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.175, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859139+00:00", + "captured_at": "2026-06-07T06:46:33.624221+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4045,7 +4045,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859145+00:00", + "captured_at": "2026-06-07T06:46:33.624227+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4061,7 +4061,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.28, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859152+00:00", + "captured_at": "2026-06-07T06:46:33.624232+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4077,7 +4077,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.028, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859157+00:00", + "captured_at": "2026-06-07T06:46:33.624237+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4093,7 +4093,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859163+00:00", + "captured_at": "2026-06-07T06:46:33.624243+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4109,7 +4109,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859168+00:00", + "captured_at": "2026-06-07T06:46:33.624248+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4125,7 +4125,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859173+00:00", + "captured_at": "2026-06-07T06:46:33.624254+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4141,7 +4141,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859198+00:00", + "captured_at": "2026-06-07T06:46:33.624260+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4157,7 +4157,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859203+00:00", + "captured_at": "2026-06-07T06:46:33.624264+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4173,7 +4173,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859209+00:00", + "captured_at": "2026-06-07T06:46:33.624269+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4189,7 +4189,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859217+00:00", + "captured_at": "2026-06-07T06:46:33.624275+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4205,7 +4205,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859222+00:00", + "captured_at": "2026-06-07T06:46:33.624280+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4221,7 +4221,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.24, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859227+00:00", + "captured_at": "2026-06-07T06:46:33.624284+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4237,7 +4237,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859233+00:00", + "captured_at": "2026-06-07T06:46:33.624293+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4253,7 +4253,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859238+00:00", + "captured_at": "2026-06-07T06:46:33.624297+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4269,7 +4269,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859243+00:00", + "captured_at": "2026-06-07T06:46:33.624302+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4285,7 +4285,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859249+00:00", + "captured_at": "2026-06-07T06:46:33.624308+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4301,7 +4301,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859254+00:00", + "captured_at": "2026-06-07T06:46:33.624313+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4317,7 +4317,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.08, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859258+00:00", + "captured_at": "2026-06-07T06:46:33.624320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4333,7 +4333,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859264+00:00", + "captured_at": "2026-06-07T06:46:33.624326+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4349,7 +4349,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859269+00:00", + "captured_at": "2026-06-07T06:46:33.624330+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4365,7 +4365,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859274+00:00", + "captured_at": "2026-06-07T06:46:33.624335+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4381,7 +4381,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859280+00:00", + "captured_at": "2026-06-07T06:46:33.624341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4397,7 +4397,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859286+00:00", + "captured_at": "2026-06-07T06:46:33.624346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4413,7 +4413,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859290+00:00", + "captured_at": "2026-06-07T06:46:33.624350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4429,7 +4429,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859296+00:00", + "captured_at": "2026-06-07T06:46:33.624356+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4445,7 +4445,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859301+00:00", + "captured_at": "2026-06-07T06:46:33.624361+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4461,7 +4461,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859306+00:00", + "captured_at": "2026-06-07T06:46:33.624365+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4477,7 +4477,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.26, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859312+00:00", + "captured_at": "2026-06-07T06:46:33.624371+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4493,7 +4493,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.9600000000000004, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859316+00:00", + "captured_at": "2026-06-07T06:46:33.624376+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4509,7 +4509,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.234, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859321+00:00", + "captured_at": "2026-06-07T06:46:33.624383+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4525,7 +4525,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.325, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859328+00:00", + "captured_at": "2026-06-07T06:46:33.624389+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4541,7 +4541,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859332+00:00", + "captured_at": "2026-06-07T06:46:33.624394+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4557,7 +4557,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.0325, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859337+00:00", + "captured_at": "2026-06-07T06:46:33.624398+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4573,7 +4573,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859343+00:00", + "captured_at": "2026-06-07T06:46:33.624404+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4589,7 +4589,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859350+00:00", + "captured_at": "2026-06-07T06:46:33.624409+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4605,7 +4605,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.24, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859355+00:00", + "captured_at": "2026-06-07T06:46:33.624413+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4621,7 +4621,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859361+00:00", + "captured_at": "2026-06-07T06:46:33.624421+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4637,7 +4637,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859368+00:00", + "captured_at": "2026-06-07T06:46:33.624426+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4653,7 +4653,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859372+00:00", + "captured_at": "2026-06-07T06:46:33.624431+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4669,7 +4669,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.95, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859379+00:00", + "captured_at": "2026-06-07T06:46:33.624437+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4685,7 +4685,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859383+00:00", + "captured_at": "2026-06-07T06:46:33.624445+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4701,7 +4701,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.16, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859388+00:00", + "captured_at": "2026-06-07T06:46:33.624450+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4717,7 +4717,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.16119999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859395+00:00", + "captured_at": "2026-06-07T06:46:33.624456+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4733,7 +4733,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.9652499999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859400+00:00", + "captured_at": "2026-06-07T06:46:33.624461+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4749,7 +4749,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.16119999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859405+00:00", + "captured_at": "2026-06-07T06:46:33.624465+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4765,7 +4765,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.68, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859518+00:00", + "captured_at": "2026-06-07T06:46:33.624473+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4781,7 +4781,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.38, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859540+00:00", + "captured_at": "2026-06-07T06:46:33.624478+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4797,7 +4797,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.13, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859547+00:00", + "captured_at": "2026-06-07T06:46:33.624483+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4813,7 +4813,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859559+00:00", + "captured_at": "2026-06-07T06:46:33.624489+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4829,7 +4829,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859564+00:00", + "captured_at": "2026-06-07T06:46:33.624494+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4845,7 +4845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859572+00:00", + "captured_at": "2026-06-07T06:46:33.624500+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4861,7 +4861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 9.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859577+00:00", + "captured_at": "2026-06-07T06:46:33.624505+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4877,7 +4877,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.15, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859581+00:00", + "captured_at": "2026-06-07T06:46:33.624509+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4893,7 +4893,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859589+00:00", + "captured_at": "2026-06-07T06:46:33.624515+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4909,7 +4909,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859593+00:00", + "captured_at": "2026-06-07T06:46:33.624520+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4925,7 +4925,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.024999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859598+00:00", + "captured_at": "2026-06-07T06:46:33.624525+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4941,7 +4941,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859604+00:00", + "captured_at": "2026-06-07T06:46:33.624531+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4957,7 +4957,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859610+00:00", + "captured_at": "2026-06-07T06:46:33.624538+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4973,7 +4973,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859614+00:00", + "captured_at": "2026-06-07T06:46:33.624543+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4989,7 +4989,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859621+00:00", + "captured_at": "2026-06-07T06:46:33.624551+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5005,7 +5005,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859626+00:00", + "captured_at": "2026-06-07T06:46:33.624556+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5021,7 +5021,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859631+00:00", + "captured_at": "2026-06-07T06:46:33.624561+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5037,7 +5037,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859637+00:00", + "captured_at": "2026-06-07T06:46:33.624566+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5053,7 +5053,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859642+00:00", + "captured_at": "2026-06-07T06:46:33.624571+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5069,7 +5069,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.09999999999999999, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859647+00:00", + "captured_at": "2026-06-07T06:46:33.624576+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5085,7 +5085,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859653+00:00", + "captured_at": "2026-06-07T06:46:33.624582+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5101,7 +5101,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859658+00:00", + "captured_at": "2026-06-07T06:46:33.624586+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5117,7 +5117,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859663+00:00", + "captured_at": "2026-06-07T06:46:33.624593+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5133,7 +5133,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859673+00:00", + "captured_at": "2026-06-07T06:46:33.624599+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5149,7 +5149,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859678+00:00", + "captured_at": "2026-06-07T06:46:33.624603+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5165,7 +5165,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859683+00:00", + "captured_at": "2026-06-07T06:46:33.624608+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5181,7 +5181,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859689+00:00", + "captured_at": "2026-06-07T06:46:33.624614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5197,7 +5197,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859694+00:00", + "captured_at": "2026-06-07T06:46:33.624619+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5213,7 +5213,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 1.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859704+00:00", + "captured_at": "2026-06-07T06:46:33.624623+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5229,7 +5229,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859716+00:00", + "captured_at": "2026-06-07T06:46:33.624629+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5245,7 +5245,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859721+00:00", + "captured_at": "2026-06-07T06:46:33.624634+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5261,7 +5261,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859726+00:00", + "captured_at": "2026-06-07T06:46:33.624639+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5277,7 +5277,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859732+00:00", + "captured_at": "2026-06-07T06:46:33.624644+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5293,7 +5293,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859737+00:00", + "captured_at": "2026-06-07T06:46:33.624649+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5309,7 +5309,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859741+00:00", + "captured_at": "2026-06-07T06:46:33.624654+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5325,7 +5325,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859747+00:00", + "captured_at": "2026-06-07T06:46:33.624660+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5341,7 +5341,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859752+00:00", + "captured_at": "2026-06-07T06:46:33.624664+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5357,7 +5357,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859756+00:00", + "captured_at": "2026-06-07T06:46:33.624669+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5373,7 +5373,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859763+00:00", + "captured_at": "2026-06-07T06:46:33.624675+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5389,7 +5389,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859767+00:00", + "captured_at": "2026-06-07T06:46:33.624682+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5405,7 +5405,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859772+00:00", + "captured_at": "2026-06-07T06:46:33.624686+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5421,7 +5421,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859778+00:00", + "captured_at": "2026-06-07T06:46:33.624692+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5437,7 +5437,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859783+00:00", + "captured_at": "2026-06-07T06:46:33.624699+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5453,7 +5453,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859787+00:00", + "captured_at": "2026-06-07T06:46:33.624703+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5469,7 +5469,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859794+00:00", + "captured_at": "2026-06-07T06:46:33.624710+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5485,7 +5485,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859798+00:00", + "captured_at": "2026-06-07T06:46:33.624715+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5501,7 +5501,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.19999999999999998, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859803+00:00", + "captured_at": "2026-06-07T06:46:33.624719+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5517,7 +5517,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859809+00:00", + "captured_at": "2026-06-07T06:46:33.624725+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5533,7 +5533,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859813+00:00", + "captured_at": "2026-06-07T06:46:33.624730+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5549,7 +5549,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.5, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859818+00:00", + "captured_at": "2026-06-07T06:46:33.624734+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5565,7 +5565,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859824+00:00", + "captured_at": "2026-06-07T06:46:33.624741+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5581,7 +5581,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859828+00:00", + "captured_at": "2026-06-07T06:46:33.624746+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5597,7 +5597,7 @@ "unit": "per_1m_input_cache_read_tokens", "price_usd": 0.06, "source_url": "https://www.atlascloud.ai/models", - "captured_at": "2026-06-07T04:53:08.859833+00:00", + "captured_at": "2026-06-07T06:46:33.624752+00:00", "confidence": "high", "method": "json-api", "notes": null diff --git a/data/snapshots/2026-06-07/openrouter.json b/data/snapshots/2026-06-07/openrouter.json index 7a26d7f..5625f18 100644 --- a/data/snapshots/2026-06-07/openrouter.json +++ b/data/snapshots/2026-06-07/openrouter.json @@ -1,6 +1,6 @@ { "provider_id": "openrouter", - "captured_at": "2026-06-07T04:53:09.013914+00:00", + "captured_at": "2026-06-07T06:46:33.787125+00:00", "records": [ { "provider_id": "openrouter", @@ -13,7 +13,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010888+00:00", + "captured_at": "2026-06-07T06:46:33.784244+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -29,7 +29,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010912+00:00", + "captured_at": "2026-06-07T06:46:33.784267+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -45,7 +45,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010920+00:00", + "captured_at": "2026-06-07T06:46:33.784278+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -61,7 +61,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010928+00:00", + "captured_at": "2026-06-07T06:46:33.784283+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -77,7 +77,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010933+00:00", + "captured_at": "2026-06-07T06:46:33.784289+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -93,7 +93,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010938+00:00", + "captured_at": "2026-06-07T06:46:33.784296+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -109,7 +109,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010943+00:00", + "captured_at": "2026-06-07T06:46:33.784300+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -125,7 +125,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010947+00:00", + "captured_at": "2026-06-07T06:46:33.784305+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -141,7 +141,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010952+00:00", + "captured_at": "2026-06-07T06:46:33.784310+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -157,7 +157,7 @@ "unit": "per_1m_output_tokens", "price_usd": 50.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010956+00:00", + "captured_at": "2026-06-07T06:46:33.784314+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -173,7 +173,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010960+00:00", + "captured_at": "2026-06-07T06:46:33.784319+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -189,7 +189,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010965+00:00", + "captured_at": "2026-06-07T06:46:33.784323+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -205,7 +205,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010969+00:00", + "captured_at": "2026-06-07T06:46:33.784328+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -221,7 +221,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010974+00:00", + "captured_at": "2026-06-07T06:46:33.784332+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -237,7 +237,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010978+00:00", + "captured_at": "2026-06-07T06:46:33.784336+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -253,7 +253,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010982+00:00", + "captured_at": "2026-06-07T06:46:33.784341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -269,7 +269,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010987+00:00", + "captured_at": "2026-06-07T06:46:33.784345+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -285,7 +285,7 @@ "unit": "per_1m_output_tokens", "price_usd": 9.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010991+00:00", + "captured_at": "2026-06-07T06:46:33.784350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -301,7 +301,7 @@ "unit": "per_image", "price_usd": 1.5e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.010996+00:00", + "captured_at": "2026-06-07T06:46:33.784354+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -317,7 +317,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011001+00:00", + "captured_at": "2026-06-07T06:46:33.784359+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -333,7 +333,7 @@ "unit": "per_1m_output_tokens", "price_usd": 150.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011005+00:00", + "captured_at": "2026-06-07T06:46:33.784364+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -349,7 +349,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011011+00:00", + "captured_at": "2026-06-07T06:46:33.784369+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -365,7 +365,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011017+00:00", + "captured_at": "2026-06-07T06:46:33.784374+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -381,7 +381,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011023+00:00", + "captured_at": "2026-06-07T06:46:33.784378+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -397,7 +397,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.625, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011028+00:00", + "captured_at": "2026-06-07T06:46:33.784382+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -413,7 +413,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011032+00:00", + "captured_at": "2026-06-07T06:46:33.784387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -429,7 +429,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011038+00:00", + "captured_at": "2026-06-07T06:46:33.784391+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -445,7 +445,7 @@ "unit": "per_image", "price_usd": 2.5e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011043+00:00", + "captured_at": "2026-06-07T06:46:33.784396+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -461,7 +461,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011048+00:00", + "captured_at": "2026-06-07T06:46:33.784401+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -477,7 +477,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011052+00:00", + "captured_at": "2026-06-07T06:46:33.784405+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -493,7 +493,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011057+00:00", + "captured_at": "2026-06-07T06:46:33.784410+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -509,7 +509,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011061+00:00", + "captured_at": "2026-06-07T06:46:33.784414+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -525,7 +525,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011065+00:00", + "captured_at": "2026-06-07T06:46:33.784419+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -541,7 +541,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011069+00:00", + "captured_at": "2026-06-07T06:46:33.784425+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -557,7 +557,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011076+00:00", + "captured_at": "2026-06-07T06:46:33.784430+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -573,7 +573,7 @@ "unit": "per_1m_output_tokens", "price_usd": 7.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011080+00:00", + "captured_at": "2026-06-07T06:46:33.784434+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -589,7 +589,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011087+00:00", + "captured_at": "2026-06-07T06:46:33.784441+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -605,7 +605,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011091+00:00", + "captured_at": "2026-06-07T06:46:33.784445+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -621,7 +621,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011095+00:00", + "captured_at": "2026-06-07T06:46:33.784449+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -637,7 +637,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011099+00:00", + "captured_at": "2026-06-07T06:46:33.784454+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -653,7 +653,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011104+00:00", + "captured_at": "2026-06-07T06:46:33.784458+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -669,7 +669,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011108+00:00", + "captured_at": "2026-06-07T06:46:33.784463+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -685,7 +685,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011113+00:00", + "captured_at": "2026-06-07T06:46:33.784467+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -701,7 +701,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.684, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011117+00:00", + "captured_at": "2026-06-07T06:46:33.784471+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -717,7 +717,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.42, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011121+00:00", + "captured_at": "2026-06-07T06:46:33.784477+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -733,7 +733,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011126+00:00", + "captured_at": "2026-06-07T06:46:33.784484+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -749,7 +749,7 @@ "unit": "per_1m_output_tokens", "price_usd": 9.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011130+00:00", + "captured_at": "2026-06-07T06:46:33.784488+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -765,7 +765,7 @@ "unit": "per_image", "price_usd": 1.5e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011134+00:00", + "captured_at": "2026-06-07T06:46:33.784492+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -781,7 +781,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011139+00:00", + "captured_at": "2026-06-07T06:46:33.784496+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -797,7 +797,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011143+00:00", + "captured_at": "2026-06-07T06:46:33.784501+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -813,7 +813,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011147+00:00", + "captured_at": "2026-06-07T06:46:33.784505+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -829,7 +829,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011151+00:00", + "captured_at": "2026-06-07T06:46:33.784509+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -845,7 +845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011155+00:00", + "captured_at": "2026-06-07T06:46:33.784513+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -861,7 +861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011160+00:00", + "captured_at": "2026-06-07T06:46:33.784518+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -877,7 +877,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.1875, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011164+00:00", + "captured_at": "2026-06-07T06:46:33.784522+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -893,7 +893,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.125, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011168+00:00", + "captured_at": "2026-06-07T06:46:33.784526+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -909,7 +909,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011173+00:00", + "captured_at": "2026-06-07T06:46:33.784531+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -925,7 +925,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011177+00:00", + "captured_at": "2026-06-07T06:46:33.784535+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -941,7 +941,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011182+00:00", + "captured_at": "2026-06-07T06:46:33.784539+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -957,7 +957,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.24, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011186+00:00", + "captured_at": "2026-06-07T06:46:33.784543+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -973,7 +973,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.28900000000000003, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011190+00:00", + "captured_at": "2026-06-07T06:46:33.784548+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -989,7 +989,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011194+00:00", + "captured_at": "2026-06-07T06:46:33.784552+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1005,7 +1005,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011200+00:00", + "captured_at": "2026-06-07T06:46:33.784556+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1021,7 +1021,7 @@ "unit": "per_1m_output_tokens", "price_usd": 180.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011205+00:00", + "captured_at": "2026-06-07T06:46:33.784562+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1037,7 +1037,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011211+00:00", + "captured_at": "2026-06-07T06:46:33.784567+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1053,7 +1053,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011215+00:00", + "captured_at": "2026-06-07T06:46:33.784571+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1069,7 +1069,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.435, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011220+00:00", + "captured_at": "2026-06-07T06:46:33.784576+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1085,7 +1085,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.87, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011224+00:00", + "captured_at": "2026-06-07T06:46:33.784580+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1101,7 +1101,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0983, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011229+00:00", + "captured_at": "2026-06-07T06:46:33.784585+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1117,7 +1117,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.1966, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011233+00:00", + "captured_at": "2026-06-07T06:46:33.784589+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1133,7 +1133,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011237+00:00", + "captured_at": "2026-06-07T06:46:33.784593+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1149,7 +1149,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.625, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011241+00:00", + "captured_at": "2026-06-07T06:46:33.784598+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1165,7 +1165,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.063, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011246+00:00", + "captured_at": "2026-06-07T06:46:33.784602+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1181,7 +1181,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.21, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011250+00:00", + "captured_at": "2026-06-07T06:46:33.784606+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1197,7 +1197,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.435, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011254+00:00", + "captured_at": "2026-06-07T06:46:33.784610+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1213,7 +1213,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.87, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011258+00:00", + "captured_at": "2026-06-07T06:46:33.784614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1229,7 +1229,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011262+00:00", + "captured_at": "2026-06-07T06:46:33.784619+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1245,7 +1245,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.28, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011267+00:00", + "captured_at": "2026-06-07T06:46:33.784624+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1261,7 +1261,7 @@ "unit": "per_1m_input_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011272+00:00", + "captured_at": "2026-06-07T06:46:33.784628+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1277,7 +1277,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011276+00:00", + "captured_at": "2026-06-07T06:46:33.784633+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1293,7 +1293,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.01, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011280+00:00", + "captured_at": "2026-06-07T06:46:33.784637+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1309,7 +1309,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011284+00:00", + "captured_at": "2026-06-07T06:46:33.784641+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1325,7 +1325,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011289+00:00", + "captured_at": "2026-06-07T06:46:33.784646+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1341,7 +1341,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011293+00:00", + "captured_at": "2026-06-07T06:46:33.784650+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1357,7 +1357,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.684, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011298+00:00", + "captured_at": "2026-06-07T06:46:33.784655+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1373,7 +1373,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.42, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011302+00:00", + "captured_at": "2026-06-07T06:46:33.784661+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1389,7 +1389,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011307+00:00", + "captured_at": "2026-06-07T06:46:33.784666+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1405,7 +1405,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011311+00:00", + "captured_at": "2026-06-07T06:46:33.784670+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1421,7 +1421,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011315+00:00", + "captured_at": "2026-06-07T06:46:33.784675+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1437,7 +1437,7 @@ "unit": "per_1m_output_tokens", "price_usd": 150.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011320+00:00", + "captured_at": "2026-06-07T06:46:33.784679+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1453,7 +1453,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.98, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011324+00:00", + "captured_at": "2026-06-07T06:46:33.784683+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1469,7 +1469,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011328+00:00", + "captured_at": "2026-06-07T06:46:33.784687+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1485,7 +1485,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011335+00:00", + "captured_at": "2026-06-07T06:46:33.784692+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1501,7 +1501,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.33, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011340+00:00", + "captured_at": "2026-06-07T06:46:33.784697+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1517,7 +1517,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.12, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011345+00:00", + "captured_at": "2026-06-07T06:46:33.784702+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1533,7 +1533,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.36, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011349+00:00", + "captured_at": "2026-06-07T06:46:33.784707+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1549,7 +1549,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.325, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011355+00:00", + "captured_at": "2026-06-07T06:46:33.784712+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1565,7 +1565,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.95, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011359+00:00", + "captured_at": "2026-06-07T06:46:33.784716+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1581,7 +1581,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011364+00:00", + "captured_at": "2026-06-07T06:46:33.784720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1597,7 +1597,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011368+00:00", + "captured_at": "2026-06-07T06:46:33.784725+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1613,7 +1613,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.22, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011372+00:00", + "captured_at": "2026-06-07T06:46:33.784729+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1629,7 +1629,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011377+00:00", + "captured_at": "2026-06-07T06:46:33.784733+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1645,7 +1645,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011447+00:00", + "captured_at": "2026-06-07T06:46:33.784737+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1661,7 +1661,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011451+00:00", + "captured_at": "2026-06-07T06:46:33.784743+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1677,7 +1677,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011456+00:00", + "captured_at": "2026-06-07T06:46:33.784748+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1693,7 +1693,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011461+00:00", + "captured_at": "2026-06-07T06:46:33.784752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1709,7 +1709,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011466+00:00", + "captured_at": "2026-06-07T06:46:33.784757+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1725,7 +1725,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011470+00:00", + "captured_at": "2026-06-07T06:46:33.784761+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1741,7 +1741,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011474+00:00", + "captured_at": "2026-06-07T06:46:33.784766+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1757,7 +1757,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011479+00:00", + "captured_at": "2026-06-07T06:46:33.784770+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1773,7 +1773,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27899999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011483+00:00", + "captured_at": "2026-06-07T06:46:33.784775+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1789,7 +1789,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011488+00:00", + "captured_at": "2026-06-07T06:46:33.784779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1805,7 +1805,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011492+00:00", + "captured_at": "2026-06-07T06:46:33.784783+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1821,7 +1821,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011497+00:00", + "captured_at": "2026-06-07T06:46:33.784788+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1837,7 +1837,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011501+00:00", + "captured_at": "2026-06-07T06:46:33.784792+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1853,7 +1853,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011505+00:00", + "captured_at": "2026-06-07T06:46:33.784796+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1869,7 +1869,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011509+00:00", + "captured_at": "2026-06-07T06:46:33.784800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1885,7 +1885,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011514+00:00", + "captured_at": "2026-06-07T06:46:33.784805+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1901,7 +1901,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011518+00:00", + "captured_at": "2026-06-07T06:46:33.784809+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1917,7 +1917,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011522+00:00", + "captured_at": "2026-06-07T06:46:33.784813+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1933,7 +1933,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011527+00:00", + "captured_at": "2026-06-07T06:46:33.784818+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1949,7 +1949,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.44999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011531+00:00", + "captured_at": "2026-06-07T06:46:33.784822+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1965,7 +1965,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011536+00:00", + "captured_at": "2026-06-07T06:46:33.784828+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1981,7 +1981,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011540+00:00", + "captured_at": "2026-06-07T06:46:33.784832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -1997,7 +1997,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011544+00:00", + "captured_at": "2026-06-07T06:46:33.784837+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2013,7 +2013,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011548+00:00", + "captured_at": "2026-06-07T06:46:33.784842+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2029,7 +2029,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011553+00:00", + "captured_at": "2026-06-07T06:46:33.784848+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2045,7 +2045,7 @@ "unit": "per_1m_output_tokens", "price_usd": 180.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011559+00:00", + "captured_at": "2026-06-07T06:46:33.784853+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2061,7 +2061,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011564+00:00", + "captured_at": "2026-06-07T06:46:33.784859+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2077,7 +2077,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011568+00:00", + "captured_at": "2026-06-07T06:46:33.784864+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2093,7 +2093,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011573+00:00", + "captured_at": "2026-06-07T06:46:33.784868+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2109,7 +2109,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011577+00:00", + "captured_at": "2026-06-07T06:46:33.784873+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2125,7 +2125,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011582+00:00", + "captured_at": "2026-06-07T06:46:33.784877+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2141,7 +2141,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011586+00:00", + "captured_at": "2026-06-07T06:46:33.784881+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2157,7 +2157,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011591+00:00", + "captured_at": "2026-06-07T06:46:33.784885+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2173,7 +2173,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011595+00:00", + "captured_at": "2026-06-07T06:46:33.784889+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2189,7 +2189,7 @@ "unit": "per_image", "price_usd": 2.5e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011599+00:00", + "captured_at": "2026-06-07T06:46:33.784894+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2205,7 +2205,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011604+00:00", + "captured_at": "2026-06-07T06:46:33.784898+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2221,7 +2221,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011608+00:00", + "captured_at": "2026-06-07T06:46:33.784902+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2237,7 +2237,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011612+00:00", + "captured_at": "2026-06-07T06:46:33.784907+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2253,7 +2253,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011617+00:00", + "captured_at": "2026-06-07T06:46:33.784911+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2269,7 +2269,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011621+00:00", + "captured_at": "2026-06-07T06:46:33.784915+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2285,7 +2285,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011627+00:00", + "captured_at": "2026-06-07T06:46:33.784919+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2301,7 +2301,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.195, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011631+00:00", + "captured_at": "2026-06-07T06:46:33.784924+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2317,7 +2317,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.56, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011636+00:00", + "captured_at": "2026-06-07T06:46:33.784928+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2333,7 +2333,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011640+00:00", + "captured_at": "2026-06-07T06:46:33.784933+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2349,7 +2349,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011645+00:00", + "captured_at": "2026-06-07T06:46:33.784937+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2365,7 +2365,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.065, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011649+00:00", + "captured_at": "2026-06-07T06:46:33.784941+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2381,7 +2381,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011653+00:00", + "captured_at": "2026-06-07T06:46:33.784945+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2397,7 +2397,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011658+00:00", + "captured_at": "2026-06-07T06:46:33.784950+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2413,7 +2413,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.12, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011662+00:00", + "captured_at": "2026-06-07T06:46:33.784954+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2429,7 +2429,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011667+00:00", + "captured_at": "2026-06-07T06:46:33.784959+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2445,7 +2445,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011672+00:00", + "captured_at": "2026-06-07T06:46:33.784963+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2461,7 +2461,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011676+00:00", + "captured_at": "2026-06-07T06:46:33.784967+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2477,7 +2477,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011680+00:00", + "captured_at": "2026-06-07T06:46:33.784972+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2493,7 +2493,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011685+00:00", + "captured_at": "2026-06-07T06:46:33.784976+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2509,7 +2509,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011689+00:00", + "captured_at": "2026-06-07T06:46:33.784980+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2525,7 +2525,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011693+00:00", + "captured_at": "2026-06-07T06:46:33.784986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2541,7 +2541,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011700+00:00", + "captured_at": "2026-06-07T06:46:33.784991+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2557,7 +2557,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011704+00:00", + "captured_at": "2026-06-07T06:46:33.784995+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2573,7 +2573,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011708+00:00", + "captured_at": "2026-06-07T06:46:33.784999+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2589,7 +2589,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011713+00:00", + "captured_at": "2026-06-07T06:46:33.785003+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2605,7 +2605,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011717+00:00", + "captured_at": "2026-06-07T06:46:33.785007+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2621,7 +2621,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011722+00:00", + "captured_at": "2026-06-07T06:46:33.785012+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2637,7 +2637,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.56, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011735+00:00", + "captured_at": "2026-06-07T06:46:33.785018+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2653,7 +2653,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011741+00:00", + "captured_at": "2026-06-07T06:46:33.785024+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2669,7 +2669,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.34, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011745+00:00", + "captured_at": "2026-06-07T06:46:33.785028+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2685,7 +2685,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011749+00:00", + "captured_at": "2026-06-07T06:46:33.785032+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2701,7 +2701,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011754+00:00", + "captured_at": "2026-06-07T06:46:33.785037+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2717,7 +2717,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011760+00:00", + "captured_at": "2026-06-07T06:46:33.785041+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2733,7 +2733,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.92, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011766+00:00", + "captured_at": "2026-06-07T06:46:33.785045+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2749,7 +2749,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011771+00:00", + "captured_at": "2026-06-07T06:46:33.785050+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2765,7 +2765,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011775+00:00", + "captured_at": "2026-06-07T06:46:33.785054+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2781,7 +2781,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011780+00:00", + "captured_at": "2026-06-07T06:46:33.785059+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2797,7 +2797,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011784+00:00", + "captured_at": "2026-06-07T06:46:33.785063+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2813,7 +2813,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.11, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011788+00:00", + "captured_at": "2026-06-07T06:46:33.785069+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2829,7 +2829,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011793+00:00", + "captured_at": "2026-06-07T06:46:33.785073+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2845,7 +2845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011798+00:00", + "captured_at": "2026-06-07T06:46:33.785078+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2861,7 +2861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011802+00:00", + "captured_at": "2026-06-07T06:46:33.785082+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2877,7 +2877,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011806+00:00", + "captured_at": "2026-06-07T06:46:33.785087+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2893,7 +2893,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011810+00:00", + "captured_at": "2026-06-07T06:46:33.785091+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2909,7 +2909,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011815+00:00", + "captured_at": "2026-06-07T06:46:33.785095+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2925,7 +2925,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011821+00:00", + "captured_at": "2026-06-07T06:46:33.785099+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2941,7 +2941,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011825+00:00", + "captured_at": "2026-06-07T06:46:33.785104+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2957,7 +2957,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011829+00:00", + "captured_at": "2026-06-07T06:46:33.785108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2973,7 +2973,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011834+00:00", + "captured_at": "2026-06-07T06:46:33.785112+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -2989,7 +2989,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011838+00:00", + "captured_at": "2026-06-07T06:46:33.785117+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3005,7 +3005,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011844+00:00", + "captured_at": "2026-06-07T06:46:33.785122+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3021,7 +3021,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011848+00:00", + "captured_at": "2026-06-07T06:46:33.785128+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3037,7 +3037,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011854+00:00", + "captured_at": "2026-06-07T06:46:33.785132+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3053,7 +3053,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011859+00:00", + "captured_at": "2026-06-07T06:46:33.785137+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3069,7 +3069,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011863+00:00", + "captured_at": "2026-06-07T06:46:33.785141+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3085,7 +3085,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011867+00:00", + "captured_at": "2026-06-07T06:46:33.785145+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3101,7 +3101,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011872+00:00", + "captured_at": "2026-06-07T06:46:33.785150+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3117,7 +3117,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011876+00:00", + "captured_at": "2026-06-07T06:46:33.785154+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3133,7 +3133,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011880+00:00", + "captured_at": "2026-06-07T06:46:33.785158+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3149,7 +3149,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011884+00:00", + "captured_at": "2026-06-07T06:46:33.785162+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3165,7 +3165,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011889+00:00", + "captured_at": "2026-06-07T06:46:33.785167+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3181,7 +3181,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011893+00:00", + "captured_at": "2026-06-07T06:46:33.785171+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3197,7 +3197,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.29, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011903+00:00", + "captured_at": "2026-06-07T06:46:33.785175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3213,7 +3213,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011907+00:00", + "captured_at": "2026-06-07T06:46:33.785180+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3229,7 +3229,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011911+00:00", + "captured_at": "2026-06-07T06:46:33.785184+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3245,7 +3245,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011916+00:00", + "captured_at": "2026-06-07T06:46:33.785188+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3261,7 +3261,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011920+00:00", + "captured_at": "2026-06-07T06:46:33.785192+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3277,7 +3277,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011924+00:00", + "captured_at": "2026-06-07T06:46:33.785197+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3293,7 +3293,7 @@ "unit": "per_image", "price_usd": 5e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011928+00:00", + "captured_at": "2026-06-07T06:46:33.785203+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3309,7 +3309,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011933+00:00", + "captured_at": "2026-06-07T06:46:33.785208+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3325,7 +3325,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011937+00:00", + "captured_at": "2026-06-07T06:46:33.785212+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3341,7 +3341,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011942+00:00", + "captured_at": "2026-06-07T06:46:33.785217+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3357,7 +3357,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011954+00:00", + "captured_at": "2026-06-07T06:46:33.785221+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3373,7 +3373,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011959+00:00", + "captured_at": "2026-06-07T06:46:33.785226+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3389,7 +3389,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011972+00:00", + "captured_at": "2026-06-07T06:46:33.785230+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3405,7 +3405,7 @@ "unit": "per_1m_input_tokens", "price_usd": 21.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011978+00:00", + "captured_at": "2026-06-07T06:46:33.785235+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3421,7 +3421,7 @@ "unit": "per_1m_output_tokens", "price_usd": 168.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011983+00:00", + "captured_at": "2026-06-07T06:46:33.785240+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3437,7 +3437,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011987+00:00", + "captured_at": "2026-06-07T06:46:33.785244+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3453,7 +3453,7 @@ "unit": "per_1m_output_tokens", "price_usd": 14.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011991+00:00", + "captured_at": "2026-06-07T06:46:33.785248+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3469,7 +3469,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.011996+00:00", + "captured_at": "2026-06-07T06:46:33.785253+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3485,7 +3485,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012000+00:00", + "captured_at": "2026-06-07T06:46:33.785257+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3501,7 +3501,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012005+00:00", + "captured_at": "2026-06-07T06:46:33.785261+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3517,7 +3517,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012009+00:00", + "captured_at": "2026-06-07T06:46:33.785267+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3533,7 +3533,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012016+00:00", + "captured_at": "2026-06-07T06:46:33.785272+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3549,7 +3549,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012020+00:00", + "captured_at": "2026-06-07T06:46:33.785276+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3565,7 +3565,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.135, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012027+00:00", + "captured_at": "2026-06-07T06:46:33.785281+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3581,7 +3581,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012031+00:00", + "captured_at": "2026-06-07T06:46:33.785285+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3597,7 +3597,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012036+00:00", + "captured_at": "2026-06-07T06:46:33.785289+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3613,7 +3613,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012040+00:00", + "captured_at": "2026-06-07T06:46:33.785293+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3629,7 +3629,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012045+00:00", + "captured_at": "2026-06-07T06:46:33.785298+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3645,7 +3645,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012050+00:00", + "captured_at": "2026-06-07T06:46:33.785303+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3661,7 +3661,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012054+00:00", + "captured_at": "2026-06-07T06:46:33.785307+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3677,7 +3677,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012060+00:00", + "captured_at": "2026-06-07T06:46:33.785311+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3693,7 +3693,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012066+00:00", + "captured_at": "2026-06-07T06:46:33.785315+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3709,7 +3709,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012070+00:00", + "captured_at": "2026-06-07T06:46:33.785320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3725,7 +3725,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012075+00:00", + "captured_at": "2026-06-07T06:46:33.785324+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3741,7 +3741,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012079+00:00", + "captured_at": "2026-06-07T06:46:33.785328+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3757,7 +3757,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012083+00:00", + "captured_at": "2026-06-07T06:46:33.785333+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3773,7 +3773,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012088+00:00", + "captured_at": "2026-06-07T06:46:33.785337+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3789,7 +3789,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012094+00:00", + "captured_at": "2026-06-07T06:46:33.785341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3805,7 +3805,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012099+00:00", + "captured_at": "2026-06-07T06:46:33.785346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3821,7 +3821,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.045, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012104+00:00", + "captured_at": "2026-06-07T06:46:33.785350+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3837,7 +3837,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012108+00:00", + "captured_at": "2026-06-07T06:46:33.785354+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3853,7 +3853,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.2288, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012113+00:00", + "captured_at": "2026-06-07T06:46:33.785359+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3869,7 +3869,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3432, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012117+00:00", + "captured_at": "2026-06-07T06:46:33.785363+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3885,7 +3885,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012121+00:00", + "captured_at": "2026-06-07T06:46:33.785367+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3901,7 +3901,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012126+00:00", + "captured_at": "2026-06-07T06:46:33.785372+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3917,7 +3917,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012130+00:00", + "captured_at": "2026-06-07T06:46:33.785376+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3933,7 +3933,7 @@ "unit": "per_1m_output_tokens", "price_usd": 25.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012134+00:00", + "captured_at": "2026-06-07T06:46:33.785382+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3949,7 +3949,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012139+00:00", + "captured_at": "2026-06-07T06:46:33.785387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3965,7 +3965,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012143+00:00", + "captured_at": "2026-06-07T06:46:33.785392+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3981,7 +3981,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012148+00:00", + "captured_at": "2026-06-07T06:46:33.785398+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -3997,7 +3997,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012153+00:00", + "captured_at": "2026-06-07T06:46:33.785403+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4013,7 +4013,7 @@ "unit": "per_image", "price_usd": 2e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012157+00:00", + "captured_at": "2026-06-07T06:46:33.785409+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4029,7 +4029,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012163+00:00", + "captured_at": "2026-06-07T06:46:33.785415+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4045,7 +4045,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012168+00:00", + "captured_at": "2026-06-07T06:46:33.785419+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4061,7 +4061,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012173+00:00", + "captured_at": "2026-06-07T06:46:33.785424+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4077,7 +4077,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012177+00:00", + "captured_at": "2026-06-07T06:46:33.785428+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4093,7 +4093,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012182+00:00", + "captured_at": "2026-06-07T06:46:33.785432+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4109,7 +4109,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012186+00:00", + "captured_at": "2026-06-07T06:46:33.785437+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4125,7 +4125,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012191+00:00", + "captured_at": "2026-06-07T06:46:33.785441+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4141,7 +4141,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012195+00:00", + "captured_at": "2026-06-07T06:46:33.785445+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4157,7 +4157,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012200+00:00", + "captured_at": "2026-06-07T06:46:33.785449+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4173,7 +4173,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012205+00:00", + "captured_at": "2026-06-07T06:46:33.785454+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4189,7 +4189,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012209+00:00", + "captured_at": "2026-06-07T06:46:33.785458+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4205,7 +4205,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012215+00:00", + "captured_at": "2026-06-07T06:46:33.785462+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4221,7 +4221,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012221+00:00", + "captured_at": "2026-06-07T06:46:33.785467+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4237,7 +4237,7 @@ "unit": "per_1m_output_tokens", "price_usd": 12.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012225+00:00", + "captured_at": "2026-06-07T06:46:33.785471+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4253,7 +4253,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012230+00:00", + "captured_at": "2026-06-07T06:46:33.785476+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4269,7 +4269,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012235+00:00", + "captured_at": "2026-06-07T06:46:33.785480+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4285,7 +4285,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012239+00:00", + "captured_at": "2026-06-07T06:46:33.785485+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4301,7 +4301,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012243+00:00", + "captured_at": "2026-06-07T06:46:33.785489+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4317,7 +4317,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012248+00:00", + "captured_at": "2026-06-07T06:46:33.785493+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4333,7 +4333,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012253+00:00", + "captured_at": "2026-06-07T06:46:33.785497+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4349,7 +4349,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.255, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012257+00:00", + "captured_at": "2026-06-07T06:46:33.785502+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4365,7 +4365,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012262+00:00", + "captured_at": "2026-06-07T06:46:33.785506+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4381,7 +4381,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.10400000000000001, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012266+00:00", + "captured_at": "2026-06-07T06:46:33.785511+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4397,7 +4397,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.41600000000000004, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012271+00:00", + "captured_at": "2026-06-07T06:46:33.785515+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4413,7 +4413,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.017, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012276+00:00", + "captured_at": "2026-06-07T06:46:33.785520+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4429,7 +4429,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.112, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012280+00:00", + "captured_at": "2026-06-07T06:46:33.785524+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4445,7 +4445,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012285+00:00", + "captured_at": "2026-06-07T06:46:33.785529+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4461,7 +4461,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.35, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012289+00:00", + "captured_at": "2026-06-07T06:46:33.785533+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4477,7 +4477,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012293+00:00", + "captured_at": "2026-06-07T06:46:33.785537+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4493,7 +4493,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012297+00:00", + "captured_at": "2026-06-07T06:46:33.785542+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4509,7 +4509,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012302+00:00", + "captured_at": "2026-06-07T06:46:33.785548+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4525,7 +4525,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012308+00:00", + "captured_at": "2026-06-07T06:46:33.785552+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4541,7 +4541,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.117, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012313+00:00", + "captured_at": "2026-06-07T06:46:33.785556+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4557,7 +4557,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.365, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012317+00:00", + "captured_at": "2026-06-07T06:46:33.785561+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4573,7 +4573,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012322+00:00", + "captured_at": "2026-06-07T06:46:33.785567+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4589,7 +4589,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012326+00:00", + "captured_at": "2026-06-07T06:46:33.785571+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4605,7 +4605,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012331+00:00", + "captured_at": "2026-06-07T06:46:33.785575+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4621,7 +4621,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012335+00:00", + "captured_at": "2026-06-07T06:46:33.785580+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4637,7 +4637,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012340+00:00", + "captured_at": "2026-06-07T06:46:33.785584+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4653,7 +4653,7 @@ "unit": "per_1m_output_tokens", "price_usd": 40.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012345+00:00", + "captured_at": "2026-06-07T06:46:33.785588+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4669,7 +4669,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012349+00:00", + "captured_at": "2026-06-07T06:46:33.785593+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4685,7 +4685,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012353+00:00", + "captured_at": "2026-06-07T06:46:33.785597+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4701,7 +4701,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012358+00:00", + "captured_at": "2026-06-07T06:46:33.785601+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4717,7 +4717,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012362+00:00", + "captured_at": "2026-06-07T06:46:33.785606+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4733,7 +4733,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012367+00:00", + "captured_at": "2026-06-07T06:46:33.785610+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4749,7 +4749,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012371+00:00", + "captured_at": "2026-06-07T06:46:33.785614+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4765,7 +4765,7 @@ "unit": "per_image", "price_usd": 3e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012376+00:00", + "captured_at": "2026-06-07T06:46:33.785618+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4781,7 +4781,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012381+00:00", + "captured_at": "2026-06-07T06:46:33.785623+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4797,7 +4797,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.56, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012385+00:00", + "captured_at": "2026-06-07T06:46:33.785627+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4813,7 +4813,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012389+00:00", + "captured_at": "2026-06-07T06:46:33.785631+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4829,7 +4829,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.52, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012394+00:00", + "captured_at": "2026-06-07T06:46:33.785635+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4845,7 +4845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012400+00:00", + "captured_at": "2026-06-07T06:46:33.785640+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4861,7 +4861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 120.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012405+00:00", + "captured_at": "2026-06-07T06:46:33.785644+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4877,7 +4877,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.43, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012409+00:00", + "captured_at": "2026-06-07T06:46:33.785648+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4893,7 +4893,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.74, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012413+00:00", + "captured_at": "2026-06-07T06:46:33.785653+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4909,7 +4909,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012418+00:00", + "captured_at": "2026-06-07T06:46:33.785657+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4925,7 +4925,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012422+00:00", + "captured_at": "2026-06-07T06:46:33.785661+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4941,7 +4941,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012429+00:00", + "captured_at": "2026-06-07T06:46:33.785665+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4957,7 +4957,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.41, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012434+00:00", + "captured_at": "2026-06-07T06:46:33.785670+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4973,7 +4973,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012438+00:00", + "captured_at": "2026-06-07T06:46:33.785674+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -4989,7 +4989,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012442+00:00", + "captured_at": "2026-06-07T06:46:33.785678+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5005,7 +5005,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012447+00:00", + "captured_at": "2026-06-07T06:46:33.785684+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5021,7 +5021,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012453+00:00", + "captured_at": "2026-06-07T06:46:33.785689+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5037,7 +5037,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012458+00:00", + "captured_at": "2026-06-07T06:46:33.785693+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5053,7 +5053,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012463+00:00", + "captured_at": "2026-06-07T06:46:33.785697+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5069,7 +5069,7 @@ "unit": "per_image", "price_usd": 1e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012467+00:00", + "captured_at": "2026-06-07T06:46:33.785701+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5085,7 +5085,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012471+00:00", + "captured_at": "2026-06-07T06:46:33.785706+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5101,7 +5101,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012476+00:00", + "captured_at": "2026-06-07T06:46:33.785710+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5117,7 +5117,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012480+00:00", + "captured_at": "2026-06-07T06:46:33.785716+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5133,7 +5133,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.88, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012484+00:00", + "captured_at": "2026-06-07T06:46:33.785720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5149,7 +5149,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012489+00:00", + "captured_at": "2026-06-07T06:46:33.785725+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5165,7 +5165,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012493+00:00", + "captured_at": "2026-06-07T06:46:33.785729+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5181,7 +5181,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012498+00:00", + "captured_at": "2026-06-07T06:46:33.785733+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5197,7 +5197,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012502+00:00", + "captured_at": "2026-06-07T06:46:33.785738+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5213,7 +5213,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012506+00:00", + "captured_at": "2026-06-07T06:46:33.785743+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5229,7 +5229,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012511+00:00", + "captured_at": "2026-06-07T06:46:33.785748+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5245,7 +5245,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.27, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012515+00:00", + "captured_at": "2026-06-07T06:46:33.785752+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5261,7 +5261,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.95, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012519+00:00", + "captured_at": "2026-06-07T06:46:33.785756+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5277,7 +5277,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.195, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012524+00:00", + "captured_at": "2026-06-07T06:46:33.785761+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5293,7 +5293,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.975, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012528+00:00", + "captured_at": "2026-06-07T06:46:33.785765+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5309,7 +5309,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0975, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012533+00:00", + "captured_at": "2026-06-07T06:46:33.785769+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5325,7 +5325,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012537+00:00", + "captured_at": "2026-06-07T06:46:33.785773+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5341,7 +5341,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012543+00:00", + "captured_at": "2026-06-07T06:46:33.785779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5357,7 +5357,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012548+00:00", + "captured_at": "2026-06-07T06:46:33.785786+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5373,7 +5373,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012552+00:00", + "captured_at": "2026-06-07T06:46:33.785791+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5389,7 +5389,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012556+00:00", + "captured_at": "2026-06-07T06:46:33.785795+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5405,7 +5405,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012561+00:00", + "captured_at": "2026-06-07T06:46:33.785800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5421,7 +5421,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012565+00:00", + "captured_at": "2026-06-07T06:46:33.785804+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5437,7 +5437,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012573+00:00", + "captured_at": "2026-06-07T06:46:33.785809+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5453,7 +5453,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.16, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012577+00:00", + "captured_at": "2026-06-07T06:46:33.785813+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5469,7 +5469,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012581+00:00", + "captured_at": "2026-06-07T06:46:33.785817+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5485,7 +5485,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012587+00:00", + "captured_at": "2026-06-07T06:46:33.785821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5501,7 +5501,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012592+00:00", + "captured_at": "2026-06-07T06:46:33.785828+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5517,7 +5517,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012598+00:00", + "captured_at": "2026-06-07T06:46:33.785832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5533,7 +5533,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012612+00:00", + "captured_at": "2026-06-07T06:46:33.785836+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5549,7 +5549,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012616+00:00", + "captured_at": "2026-06-07T06:46:33.785841+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5565,7 +5565,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012621+00:00", + "captured_at": "2026-06-07T06:46:33.785845+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5581,7 +5581,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012625+00:00", + "captured_at": "2026-06-07T06:46:33.785849+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5597,7 +5597,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.21, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012629+00:00", + "captured_at": "2026-06-07T06:46:33.785853+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5613,7 +5613,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7899999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012634+00:00", + "captured_at": "2026-06-07T06:46:33.785858+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5629,7 +5629,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012638+00:00", + "captured_at": "2026-06-07T06:46:33.785862+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5645,7 +5645,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012643+00:00", + "captured_at": "2026-06-07T06:46:33.785866+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5661,7 +5661,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012648+00:00", + "captured_at": "2026-06-07T06:46:33.785871+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5677,7 +5677,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012652+00:00", + "captured_at": "2026-06-07T06:46:33.785875+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5693,7 +5693,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012656+00:00", + "captured_at": "2026-06-07T06:46:33.785879+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5709,7 +5709,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012660+00:00", + "captured_at": "2026-06-07T06:46:33.785883+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5725,7 +5725,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012665+00:00", + "captured_at": "2026-06-07T06:46:33.785887+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5741,7 +5741,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012671+00:00", + "captured_at": "2026-06-07T06:46:33.785892+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5757,7 +5757,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012675+00:00", + "captured_at": "2026-06-07T06:46:33.785896+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5773,7 +5773,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012680+00:00", + "captured_at": "2026-06-07T06:46:33.785900+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5789,7 +5789,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012684+00:00", + "captured_at": "2026-06-07T06:46:33.785904+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5805,7 +5805,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012688+00:00", + "captured_at": "2026-06-07T06:46:33.785908+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5821,7 +5821,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012693+00:00", + "captured_at": "2026-06-07T06:46:33.785913+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5837,7 +5837,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012697+00:00", + "captured_at": "2026-06-07T06:46:33.785917+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5853,7 +5853,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.039, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012702+00:00", + "captured_at": "2026-06-07T06:46:33.785923+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5869,7 +5869,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.18, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012706+00:00", + "captured_at": "2026-06-07T06:46:33.785927+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5885,7 +5885,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.029, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012711+00:00", + "captured_at": "2026-06-07T06:46:33.785933+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5901,7 +5901,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012715+00:00", + "captured_at": "2026-06-07T06:46:33.785937+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5917,7 +5917,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012720+00:00", + "captured_at": "2026-06-07T06:46:33.785941+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5933,7 +5933,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012724+00:00", + "captured_at": "2026-06-07T06:46:33.785945+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5949,7 +5949,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012729+00:00", + "captured_at": "2026-06-07T06:46:33.785949+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5965,7 +5965,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012733+00:00", + "captured_at": "2026-06-07T06:46:33.785953+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5981,7 +5981,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012738+00:00", + "captured_at": "2026-06-07T06:46:33.785958+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -5997,7 +5997,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.27, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012743+00:00", + "captured_at": "2026-06-07T06:46:33.785963+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6013,7 +6013,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04815, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012750+00:00", + "captured_at": "2026-06-07T06:46:33.785968+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6029,7 +6029,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19305, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012754+00:00", + "captured_at": "2026-06-07T06:46:33.785972+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6045,7 +6045,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012759+00:00", + "captured_at": "2026-06-07T06:46:33.785977+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6061,7 +6061,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012763+00:00", + "captured_at": "2026-06-07T06:46:33.785981+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6077,7 +6077,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.125, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012768+00:00", + "captured_at": "2026-06-07T06:46:33.785986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6093,7 +6093,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012774+00:00", + "captured_at": "2026-06-07T06:46:33.785990+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6109,7 +6109,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012778+00:00", + "captured_at": "2026-06-07T06:46:33.785994+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6125,7 +6125,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012783+00:00", + "captured_at": "2026-06-07T06:46:33.785998+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6141,7 +6141,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012788+00:00", + "captured_at": "2026-06-07T06:46:33.786002+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6157,7 +6157,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012793+00:00", + "captured_at": "2026-06-07T06:46:33.786006+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6173,7 +6173,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.22, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012798+00:00", + "captured_at": "2026-06-07T06:46:33.786011+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6189,7 +6189,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.7999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012802+00:00", + "captured_at": "2026-06-07T06:46:33.786015+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6205,7 +6205,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012807+00:00", + "captured_at": "2026-06-07T06:46:33.786020+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6221,7 +6221,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012811+00:00", + "captured_at": "2026-06-07T06:46:33.786023+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6237,7 +6237,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012815+00:00", + "captured_at": "2026-06-07T06:46:33.786028+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6253,7 +6253,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012819+00:00", + "captured_at": "2026-06-07T06:46:33.786032+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6269,7 +6269,7 @@ "unit": "per_image", "price_usd": 1e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012823+00:00", + "captured_at": "2026-06-07T06:46:33.786037+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6285,7 +6285,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.071, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012828+00:00", + "captured_at": "2026-06-07T06:46:33.786042+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6301,7 +6301,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012832+00:00", + "captured_at": "2026-06-07T06:46:33.786046+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6317,7 +6317,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012836+00:00", + "captured_at": "2026-06-07T06:46:33.786050+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6333,7 +6333,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012840+00:00", + "captured_at": "2026-06-07T06:46:33.786054+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6349,7 +6349,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5700000000000001, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012844+00:00", + "captured_at": "2026-06-07T06:46:33.786059+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6365,7 +6365,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012848+00:00", + "captured_at": "2026-06-07T06:46:33.786063+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6381,7 +6381,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012858+00:00", + "captured_at": "2026-06-07T06:46:33.786067+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6397,7 +6397,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5700000000000001, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012862+00:00", + "captured_at": "2026-06-07T06:46:33.786071+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6413,7 +6413,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012867+00:00", + "captured_at": "2026-06-07T06:46:33.786076+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6429,7 +6429,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.9, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012872+00:00", + "captured_at": "2026-06-07T06:46:33.786081+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6445,7 +6445,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012876+00:00", + "captured_at": "2026-06-07T06:46:33.786085+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6461,7 +6461,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012880+00:00", + "captured_at": "2026-06-07T06:46:33.786089+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6477,7 +6477,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.42, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012885+00:00", + "captured_at": "2026-06-07T06:46:33.786093+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6493,7 +6493,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012889+00:00", + "captured_at": "2026-06-07T06:46:33.786100+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6509,7 +6509,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.075, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012896+00:00", + "captured_at": "2026-06-07T06:46:33.786104+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6525,7 +6525,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012900+00:00", + "captured_at": "2026-06-07T06:46:33.786108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6541,7 +6541,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012904+00:00", + "captured_at": "2026-06-07T06:46:33.786113+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6557,7 +6557,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012908+00:00", + "captured_at": "2026-06-07T06:46:33.786117+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6573,7 +6573,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012913+00:00", + "captured_at": "2026-06-07T06:46:33.786121+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6589,7 +6589,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012917+00:00", + "captured_at": "2026-06-07T06:46:33.786125+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6605,7 +6605,7 @@ "unit": "per_image", "price_usd": 3e-07, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012921+00:00", + "captured_at": "2026-06-07T06:46:33.786129+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6621,7 +6621,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012925+00:00", + "captured_at": "2026-06-07T06:46:33.786134+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6637,7 +6637,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012929+00:00", + "captured_at": "2026-06-07T06:46:33.786138+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6653,7 +6653,7 @@ "unit": "per_image", "price_usd": 1.25e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012934+00:00", + "captured_at": "2026-06-07T06:46:33.786142+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6669,7 +6669,7 @@ "unit": "per_1m_input_tokens", "price_usd": 20.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012938+00:00", + "captured_at": "2026-06-07T06:46:33.786146+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6685,7 +6685,7 @@ "unit": "per_1m_output_tokens", "price_usd": 80.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012942+00:00", + "captured_at": "2026-06-07T06:46:33.786150+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6701,7 +6701,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012946+00:00", + "captured_at": "2026-06-07T06:46:33.786155+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6717,7 +6717,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012951+00:00", + "captured_at": "2026-06-07T06:46:33.786159+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6733,7 +6733,7 @@ "unit": "per_image", "price_usd": 1.25e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012955+00:00", + "captured_at": "2026-06-07T06:46:33.786163+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6749,7 +6749,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012959+00:00", + "captured_at": "2026-06-07T06:46:33.786167+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6765,7 +6765,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.1500000000000004, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012965+00:00", + "captured_at": "2026-06-07T06:46:33.786171+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6781,7 +6781,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012969+00:00", + "captured_at": "2026-06-07T06:46:33.786175+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6797,7 +6797,7 @@ "unit": "per_1m_output_tokens", "price_usd": 75.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012973+00:00", + "captured_at": "2026-06-07T06:46:33.786180+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6813,7 +6813,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012977+00:00", + "captured_at": "2026-06-07T06:46:33.786184+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6829,7 +6829,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012981+00:00", + "captured_at": "2026-06-07T06:46:33.786188+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6845,7 +6845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012986+00:00", + "captured_at": "2026-06-07T06:46:33.786192+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6861,7 +6861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.12, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012990+00:00", + "captured_at": "2026-06-07T06:46:33.786196+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6877,7 +6877,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012994+00:00", + "captured_at": "2026-06-07T06:46:33.786201+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6893,7 +6893,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.012998+00:00", + "captured_at": "2026-06-07T06:46:33.786205+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6909,7 +6909,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013003+00:00", + "captured_at": "2026-06-07T06:46:33.786209+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6925,7 +6925,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013007+00:00", + "captured_at": "2026-06-07T06:46:33.786213+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6941,7 +6941,7 @@ "unit": "per_image", "price_usd": 1.25e-06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013011+00:00", + "captured_at": "2026-06-07T06:46:33.786217+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6957,7 +6957,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.8999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013015+00:00", + "captured_at": "2026-06-07T06:46:33.786222+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6973,7 +6973,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.3000000000000003, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013019+00:00", + "captured_at": "2026-06-07T06:46:33.786226+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -6989,7 +6989,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013023+00:00", + "captured_at": "2026-06-07T06:46:33.786231+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7005,7 +7005,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.2, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013029+00:00", + "captured_at": "2026-06-07T06:46:33.786236+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7021,7 +7021,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013033+00:00", + "captured_at": "2026-06-07T06:46:33.786240+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7037,7 +7037,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013037+00:00", + "captured_at": "2026-06-07T06:46:33.786244+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7053,7 +7053,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.18, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013042+00:00", + "captured_at": "2026-06-07T06:46:33.786248+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7069,7 +7069,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.18, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013046+00:00", + "captured_at": "2026-06-07T06:46:33.786252+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7085,7 +7085,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013051+00:00", + "captured_at": "2026-06-07T06:46:33.786257+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7101,7 +7101,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.44999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013055+00:00", + "captured_at": "2026-06-07T06:46:33.786261+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7117,7 +7117,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013059+00:00", + "captured_at": "2026-06-07T06:46:33.786265+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7133,7 +7133,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013063+00:00", + "captured_at": "2026-06-07T06:46:33.786271+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7149,7 +7149,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013068+00:00", + "captured_at": "2026-06-07T06:46:33.786275+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7165,7 +7165,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.24, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013072+00:00", + "captured_at": "2026-06-07T06:46:33.786279+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7181,7 +7181,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013076+00:00", + "captured_at": "2026-06-07T06:46:33.786284+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7197,7 +7197,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.28, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013080+00:00", + "captured_at": "2026-06-07T06:46:33.786288+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7213,7 +7213,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.45499999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013084+00:00", + "captured_at": "2026-06-07T06:46:33.786292+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7229,7 +7229,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.8199999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013089+00:00", + "captured_at": "2026-06-07T06:46:33.786297+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7245,7 +7245,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013095+00:00", + "captured_at": "2026-06-07T06:46:33.786303+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7261,7 +7261,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013099+00:00", + "captured_at": "2026-06-07T06:46:33.786307+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7277,7 +7277,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013103+00:00", + "captured_at": "2026-06-07T06:46:33.786311+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7293,7 +7293,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013107+00:00", + "captured_at": "2026-06-07T06:46:33.786315+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7309,7 +7309,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013112+00:00", + "captured_at": "2026-06-07T06:46:33.786320+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7325,7 +7325,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013116+00:00", + "captured_at": "2026-06-07T06:46:33.786324+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7341,7 +7341,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013120+00:00", + "captured_at": "2026-06-07T06:46:33.786329+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7357,7 +7357,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013124+00:00", + "captured_at": "2026-06-07T06:46:33.786333+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7373,7 +7373,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013129+00:00", + "captured_at": "2026-06-07T06:46:33.786337+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7389,7 +7389,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013133+00:00", + "captured_at": "2026-06-07T06:46:33.786341+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7405,7 +7405,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013139+00:00", + "captured_at": "2026-06-07T06:46:33.786346+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7421,7 +7421,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013143+00:00", + "captured_at": "2026-06-07T06:46:33.786351+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7437,7 +7437,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013147+00:00", + "captured_at": "2026-06-07T06:46:33.786356+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7453,7 +7453,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013151+00:00", + "captured_at": "2026-06-07T06:46:33.786360+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7469,7 +7469,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013156+00:00", + "captured_at": "2026-06-07T06:46:33.786364+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7485,7 +7485,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013160+00:00", + "captured_at": "2026-06-07T06:46:33.786370+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7501,7 +7501,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013165+00:00", + "captured_at": "2026-06-07T06:46:33.786374+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7517,7 +7517,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.77, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013170+00:00", + "captured_at": "2026-06-07T06:46:33.786378+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7533,7 +7533,7 @@ "unit": "per_1m_input_tokens", "price_usd": 150.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013174+00:00", + "captured_at": "2026-06-07T06:46:33.786383+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7549,7 +7549,7 @@ "unit": "per_1m_output_tokens", "price_usd": 600.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013178+00:00", + "captured_at": "2026-06-07T06:46:33.786387+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7565,7 +7565,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.351, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013183+00:00", + "captured_at": "2026-06-07T06:46:33.786391+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7581,7 +7581,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.5549999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013187+00:00", + "captured_at": "2026-06-07T06:46:33.786395+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7597,7 +7597,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013191+00:00", + "captured_at": "2026-06-07T06:46:33.786399+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7613,7 +7613,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013195+00:00", + "captured_at": "2026-06-07T06:46:33.786404+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7629,7 +7629,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013200+00:00", + "captured_at": "2026-06-07T06:46:33.786408+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7645,7 +7645,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.13, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013204+00:00", + "captured_at": "2026-06-07T06:46:33.786412+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7661,7 +7661,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013208+00:00", + "captured_at": "2026-06-07T06:46:33.786416+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7677,7 +7677,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013212+00:00", + "captured_at": "2026-06-07T06:46:33.786420+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7693,7 +7693,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013217+00:00", + "captured_at": "2026-06-07T06:46:33.786425+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7709,7 +7709,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013221+00:00", + "captured_at": "2026-06-07T06:46:33.786430+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7725,7 +7725,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013225+00:00", + "captured_at": "2026-06-07T06:46:33.786435+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7741,7 +7741,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013229+00:00", + "captured_at": "2026-06-07T06:46:33.786439+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7757,7 +7757,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013234+00:00", + "captured_at": "2026-06-07T06:46:33.786444+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7773,7 +7773,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013238+00:00", + "captured_at": "2026-06-07T06:46:33.786450+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7789,7 +7789,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013242+00:00", + "captured_at": "2026-06-07T06:46:33.786455+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7805,7 +7805,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.16, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013246+00:00", + "captured_at": "2026-06-07T06:46:33.786459+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7821,7 +7821,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.55, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013251+00:00", + "captured_at": "2026-06-07T06:46:33.786464+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7837,7 +7837,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013255+00:00", + "captured_at": "2026-06-07T06:46:33.786468+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7853,7 +7853,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013259+00:00", + "captured_at": "2026-06-07T06:46:33.786473+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7869,7 +7869,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013263+00:00", + "captured_at": "2026-06-07T06:46:33.786477+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7885,7 +7885,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013267+00:00", + "captured_at": "2026-06-07T06:46:33.786481+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7901,7 +7901,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013271+00:00", + "captured_at": "2026-06-07T06:46:33.786485+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7917,7 +7917,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013276+00:00", + "captured_at": "2026-06-07T06:46:33.786490+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7933,7 +7933,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013280+00:00", + "captured_at": "2026-06-07T06:46:33.786494+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7949,7 +7949,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013284+00:00", + "captured_at": "2026-06-07T06:46:33.786498+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7965,7 +7965,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013288+00:00", + "captured_at": "2026-06-07T06:46:33.786502+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7981,7 +7981,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.48400000000000004, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013293+00:00", + "captured_at": "2026-06-07T06:46:33.786508+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -7997,7 +7997,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013299+00:00", + "captured_at": "2026-06-07T06:46:33.786513+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8013,7 +8013,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013303+00:00", + "captured_at": "2026-06-07T06:46:33.786517+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8029,7 +8029,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013307+00:00", + "captured_at": "2026-06-07T06:46:33.786521+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8045,7 +8045,7 @@ "unit": "per_1m_input_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013313+00:00", + "captured_at": "2026-06-07T06:46:33.786525+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8061,7 +8061,7 @@ "unit": "per_1m_output_tokens", "price_usd": 8.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013317+00:00", + "captured_at": "2026-06-07T06:46:33.786529+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8077,7 +8077,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013322+00:00", + "captured_at": "2026-06-07T06:46:33.786535+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8093,7 +8093,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013326+00:00", + "captured_at": "2026-06-07T06:46:33.786540+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8109,7 +8109,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013330+00:00", + "captured_at": "2026-06-07T06:46:33.786544+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8125,7 +8125,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013334+00:00", + "captured_at": "2026-06-07T06:46:33.786548+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8141,7 +8141,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013339+00:00", + "captured_at": "2026-06-07T06:46:33.786553+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8157,7 +8157,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013344+00:00", + "captured_at": "2026-06-07T06:46:33.786557+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8173,7 +8173,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.26, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013349+00:00", + "captured_at": "2026-06-07T06:46:33.786561+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8189,7 +8189,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.78, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013353+00:00", + "captured_at": "2026-06-07T06:46:33.786565+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8205,7 +8205,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013357+00:00", + "captured_at": "2026-06-07T06:46:33.786570+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8221,7 +8221,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.4, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013362+00:00", + "captured_at": "2026-06-07T06:46:33.786574+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8237,7 +8237,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013366+00:00", + "captured_at": "2026-06-07T06:46:33.786578+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8253,7 +8253,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.08, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013370+00:00", + "captured_at": "2026-06-07T06:46:33.786582+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8269,7 +8269,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.29, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013374+00:00", + "captured_at": "2026-06-07T06:46:33.786586+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8285,7 +8285,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.29, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013378+00:00", + "captured_at": "2026-06-07T06:46:33.786591+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8301,7 +8301,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013383+00:00", + "captured_at": "2026-06-07T06:46:33.786595+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8317,7 +8317,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013387+00:00", + "captured_at": "2026-06-07T06:46:33.786599+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8333,7 +8333,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013391+00:00", + "captured_at": "2026-06-07T06:46:33.786604+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8349,7 +8349,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013395+00:00", + "captured_at": "2026-06-07T06:46:33.786608+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8365,7 +8365,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013400+00:00", + "captured_at": "2026-06-07T06:46:33.786612+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8381,7 +8381,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013404+00:00", + "captured_at": "2026-06-07T06:46:33.786616+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8397,7 +8397,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.19999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013410+00:00", + "captured_at": "2026-06-07T06:46:33.786621+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8413,7 +8413,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.1, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013415+00:00", + "captured_at": "2026-06-07T06:46:33.786626+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8429,7 +8429,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.065, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013419+00:00", + "captured_at": "2026-06-07T06:46:33.786631+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8445,7 +8445,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013423+00:00", + "captured_at": "2026-06-07T06:46:33.786635+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8461,7 +8461,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013427+00:00", + "captured_at": "2026-06-07T06:46:33.786639+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8477,7 +8477,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013431+00:00", + "captured_at": "2026-06-07T06:46:33.786645+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8493,7 +8493,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.20020000000000002, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013437+00:00", + "captured_at": "2026-06-07T06:46:33.786649+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8509,7 +8509,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.8000999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013442+00:00", + "captured_at": "2026-06-07T06:46:33.786654+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8525,7 +8525,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013446+00:00", + "captured_at": "2026-06-07T06:46:33.786658+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8541,7 +8541,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013451+00:00", + "captured_at": "2026-06-07T06:46:33.786662+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8557,7 +8557,7 @@ "unit": "per_1m_input_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013456+00:00", + "captured_at": "2026-06-07T06:46:33.786667+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8573,7 +8573,7 @@ "unit": "per_1m_output_tokens", "price_usd": 60.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013460+00:00", + "captured_at": "2026-06-07T06:46:33.786672+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8589,7 +8589,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0375, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013465+00:00", + "captured_at": "2026-06-07T06:46:33.786677+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8605,7 +8605,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013469+00:00", + "captured_at": "2026-06-07T06:46:33.786681+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8621,7 +8621,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013474+00:00", + "captured_at": "2026-06-07T06:46:33.786686+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8637,7 +8637,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.32, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013478+00:00", + "captured_at": "2026-06-07T06:46:33.786690+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8653,7 +8653,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013482+00:00", + "captured_at": "2026-06-07T06:46:33.786694+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8669,7 +8669,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.24, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013486+00:00", + "captured_at": "2026-06-07T06:46:33.786698+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8685,7 +8685,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.035, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013493+00:00", + "captured_at": "2026-06-07T06:46:33.786703+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8701,7 +8701,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013497+00:00", + "captured_at": "2026-06-07T06:46:33.786707+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8717,7 +8717,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013501+00:00", + "captured_at": "2026-06-07T06:46:33.786711+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8733,7 +8733,7 @@ "unit": "per_1m_output_tokens", "price_usd": 3.1999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013505+00:00", + "captured_at": "2026-06-07T06:46:33.786715+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8749,7 +8749,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013510+00:00", + "captured_at": "2026-06-07T06:46:33.786720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8765,7 +8765,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013514+00:00", + "captured_at": "2026-06-07T06:46:33.786724+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8781,7 +8781,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013518+00:00", + "captured_at": "2026-06-07T06:46:33.786728+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8797,7 +8797,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013522+00:00", + "captured_at": "2026-06-07T06:46:33.786732+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8813,7 +8813,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.66, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013527+00:00", + "captured_at": "2026-06-07T06:46:33.786737+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8829,7 +8829,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013531+00:00", + "captured_at": "2026-06-07T06:46:33.786741+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8845,7 +8845,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013535+00:00", + "captured_at": "2026-06-07T06:46:33.786745+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8861,7 +8861,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013539+00:00", + "captured_at": "2026-06-07T06:46:33.786750+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8877,7 +8877,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.7999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013544+00:00", + "captured_at": "2026-06-07T06:46:33.786754+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8893,7 +8893,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013548+00:00", + "captured_at": "2026-06-07T06:46:33.786758+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8909,7 +8909,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013552+00:00", + "captured_at": "2026-06-07T06:46:33.786763+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8925,7 +8925,7 @@ "unit": "per_1m_output_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013556+00:00", + "captured_at": "2026-06-07T06:46:33.786767+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8941,7 +8941,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013561+00:00", + "captured_at": "2026-06-07T06:46:33.786771+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8957,7 +8957,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.09999999999999999, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013565+00:00", + "captured_at": "2026-06-07T06:46:33.786776+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8973,7 +8973,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013569+00:00", + "captured_at": "2026-06-07T06:46:33.786786+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -8989,7 +8989,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013575+00:00", + "captured_at": "2026-06-07T06:46:33.786791+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9005,7 +9005,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013579+00:00", + "captured_at": "2026-06-07T06:46:33.786795+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9021,7 +9021,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013583+00:00", + "captured_at": "2026-06-07T06:46:33.786800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9037,7 +9037,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.16999999999999998, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013587+00:00", + "captured_at": "2026-06-07T06:46:33.786804+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9053,7 +9053,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.43, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013591+00:00", + "captured_at": "2026-06-07T06:46:33.786810+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9069,7 +9069,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.0509, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013596+00:00", + "captured_at": "2026-06-07T06:46:33.786815+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9085,7 +9085,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.335, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013601+00:00", + "captured_at": "2026-06-07T06:46:33.786819+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9101,7 +9101,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.027, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013605+00:00", + "captured_at": "2026-06-07T06:46:33.786824+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9117,7 +9117,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.201, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013609+00:00", + "captured_at": "2026-06-07T06:46:33.786828+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9133,7 +9133,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.245, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013614+00:00", + "captured_at": "2026-06-07T06:46:33.786832+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9149,7 +9149,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.245, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013618+00:00", + "captured_at": "2026-06-07T06:46:33.786837+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9165,7 +9165,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.36, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013622+00:00", + "captured_at": "2026-06-07T06:46:33.786841+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9181,7 +9181,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013626+00:00", + "captured_at": "2026-06-07T06:46:33.786845+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9197,7 +9197,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013631+00:00", + "captured_at": "2026-06-07T06:46:33.786850+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9213,7 +9213,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013635+00:00", + "captured_at": "2026-06-07T06:46:33.786854+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9229,7 +9229,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013639+00:00", + "captured_at": "2026-06-07T06:46:33.786858+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9245,7 +9245,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013643+00:00", + "captured_at": "2026-06-07T06:46:33.786862+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9261,7 +9261,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013649+00:00", + "captured_at": "2026-06-07T06:46:33.786867+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9277,7 +9277,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.85, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013653+00:00", + "captured_at": "2026-06-07T06:46:33.786871+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9293,7 +9293,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013658+00:00", + "captured_at": "2026-06-07T06:46:33.786875+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9309,7 +9309,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.3, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013662+00:00", + "captured_at": "2026-06-07T06:46:33.786880+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9325,7 +9325,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013669+00:00", + "captured_at": "2026-06-07T06:46:33.786884+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9341,7 +9341,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013673+00:00", + "captured_at": "2026-06-07T06:46:33.786889+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9357,7 +9357,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.04, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013677+00:00", + "captured_at": "2026-06-07T06:46:33.786893+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9373,7 +9373,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.049999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013681+00:00", + "captured_at": "2026-06-07T06:46:33.786897+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9389,7 +9389,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013686+00:00", + "captured_at": "2026-06-07T06:46:33.786901+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9405,7 +9405,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013690+00:00", + "captured_at": "2026-06-07T06:46:33.786906+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9421,7 +9421,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.02, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013694+00:00", + "captured_at": "2026-06-07T06:46:33.786910+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9437,7 +9437,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013698+00:00", + "captured_at": "2026-06-07T06:46:33.786914+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9453,7 +9453,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013703+00:00", + "captured_at": "2026-06-07T06:46:33.786919+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9469,7 +9469,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.39999999999999997, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013707+00:00", + "captured_at": "2026-06-07T06:46:33.786925+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9485,7 +9485,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.02, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013713+00:00", + "captured_at": "2026-06-07T06:46:33.786929+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9501,7 +9501,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.03, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013717+00:00", + "captured_at": "2026-06-07T06:46:33.786934+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9517,7 +9517,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013721+00:00", + "captured_at": "2026-06-07T06:46:33.786938+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9533,7 +9533,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013725+00:00", + "captured_at": "2026-06-07T06:46:33.786942+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9549,7 +9549,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.15, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013731+00:00", + "captured_at": "2026-06-07T06:46:33.786947+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9565,7 +9565,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.6, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013735+00:00", + "captured_at": "2026-06-07T06:46:33.786951+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9581,7 +9581,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013740+00:00", + "captured_at": "2026-06-07T06:46:33.786956+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9597,7 +9597,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013744+00:00", + "captured_at": "2026-06-07T06:46:33.786960+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9613,7 +9613,7 @@ "unit": "per_1m_input_tokens", "price_usd": 5.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013748+00:00", + "captured_at": "2026-06-07T06:46:33.786964+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9629,7 +9629,7 @@ "unit": "per_1m_output_tokens", "price_usd": 15.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013752+00:00", + "captured_at": "2026-06-07T06:46:33.786968+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9645,7 +9645,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013758+00:00", + "captured_at": "2026-06-07T06:46:33.786972+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9661,7 +9661,7 @@ "unit": "per_1m_output_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013762+00:00", + "captured_at": "2026-06-07T06:46:33.786976+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9677,7 +9677,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013766+00:00", + "captured_at": "2026-06-07T06:46:33.786981+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9693,7 +9693,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.14, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013771+00:00", + "captured_at": "2026-06-07T06:46:33.786986+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9709,7 +9709,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.51, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013775+00:00", + "captured_at": "2026-06-07T06:46:33.786991+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9725,7 +9725,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.74, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013779+00:00", + "captured_at": "2026-06-07T06:46:33.786996+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9741,7 +9741,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013783+00:00", + "captured_at": "2026-06-07T06:46:33.787001+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9757,7 +9757,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013787+00:00", + "captured_at": "2026-06-07T06:46:33.787005+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9773,7 +9773,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.62, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013792+00:00", + "captured_at": "2026-06-07T06:46:33.787009+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9789,7 +9789,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.62, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013796+00:00", + "captured_at": "2026-06-07T06:46:33.787013+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9805,7 +9805,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013800+00:00", + "captured_at": "2026-06-07T06:46:33.787018+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9821,7 +9821,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013804+00:00", + "captured_at": "2026-06-07T06:46:33.787022+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9837,7 +9837,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013809+00:00", + "captured_at": "2026-06-07T06:46:33.787026+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9853,7 +9853,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.25, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013813+00:00", + "captured_at": "2026-06-07T06:46:33.787030+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9869,7 +9869,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013817+00:00", + "captured_at": "2026-06-07T06:46:33.787035+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9885,7 +9885,7 @@ "unit": "per_1m_output_tokens", "price_usd": 6.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013821+00:00", + "captured_at": "2026-06-07T06:46:33.787039+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9901,7 +9901,7 @@ "unit": "per_1m_input_tokens", "price_usd": 10.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013826+00:00", + "captured_at": "2026-06-07T06:46:33.787043+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9917,7 +9917,7 @@ "unit": "per_1m_output_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013833+00:00", + "captured_at": "2026-06-07T06:46:33.787047+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9933,7 +9933,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013838+00:00", + "captured_at": "2026-06-07T06:46:33.787051+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9949,7 +9949,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013842+00:00", + "captured_at": "2026-06-07T06:46:33.787055+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9965,7 +9965,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013849+00:00", + "captured_at": "2026-06-07T06:46:33.787062+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9981,7 +9981,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013855+00:00", + "captured_at": "2026-06-07T06:46:33.787066+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -9997,7 +9997,7 @@ "unit": "per_1m_input_tokens", "price_usd": 3.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013859+00:00", + "captured_at": "2026-06-07T06:46:33.787070+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10013,7 +10013,7 @@ "unit": "per_1m_output_tokens", "price_usd": 4.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013863+00:00", + "captured_at": "2026-06-07T06:46:33.787074+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10029,7 +10029,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.75, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013867+00:00", + "captured_at": "2026-06-07T06:46:33.787078+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10045,7 +10045,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013871+00:00", + "captured_at": "2026-06-07T06:46:33.787083+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10061,7 +10061,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.44999999999999996, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013876+00:00", + "captured_at": "2026-06-07T06:46:33.787087+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10077,7 +10077,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.65, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013880+00:00", + "captured_at": "2026-06-07T06:46:33.787091+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10093,7 +10093,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013884+00:00", + "captured_at": "2026-06-07T06:46:33.787095+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10109,7 +10109,7 @@ "unit": "per_1m_output_tokens", "price_usd": 0.06, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013889+00:00", + "captured_at": "2026-06-07T06:46:33.787100+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10125,7 +10125,7 @@ "unit": "per_1m_input_tokens", "price_usd": 30.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013893+00:00", + "captured_at": "2026-06-07T06:46:33.787104+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10141,7 +10141,7 @@ "unit": "per_1m_output_tokens", "price_usd": 60.0, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013897+00:00", + "captured_at": "2026-06-07T06:46:33.787108+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10157,7 +10157,7 @@ "unit": "per_1m_input_tokens", "price_usd": 0.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013902+00:00", + "captured_at": "2026-06-07T06:46:33.787112+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -10173,7 +10173,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://openrouter.ai/api/v1/models", - "captured_at": "2026-06-07T04:53:09.013906+00:00", + "captured_at": "2026-06-07T06:46:33.787117+00:00", "confidence": "high", "method": "json-api", "notes": null diff --git a/data/snapshots/2026-06-07/relaydance.json b/data/snapshots/2026-06-07/relaydance.json index 5558e8a..81971e4 100644 --- a/data/snapshots/2026-06-07/relaydance.json +++ b/data/snapshots/2026-06-07/relaydance.json @@ -1,19 +1,35 @@ { "provider_id": "relaydance", - "captured_at": "2026-06-07T04:53:09.237731+00:00", + "captured_at": "2026-06-07T06:46:33.955868+00:00", "records": [ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-r2v", + "raw_model_name": "doubao-seedance-2-0-fast-260128", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_input_tokens", + "price_usd": 7.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237535+00:00", + "captured_at": "2026-06-07T06:46:33.955663+00:00", + "confidence": "high", + "method": "json-api", + "notes": null + }, + { + "provider_id": "relaydance", + "provider_name": "Relaydance", + "raw_model_name": "doubao-seedance-2-0-fast-260128", + "canonical_model": null, + "model_family": null, + "tier": null, + "channel_type": "mixed", + "unit": "per_1m_output_tokens", + "price_usd": 7.0, + "source_url": "https://relaydance.com/pricing", + "captured_at": "2026-06-07T06:46:33.955682+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -29,7 +45,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.5, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237555+00:00", + "captured_at": "2026-06-07T06:46:33.955691+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -45,7 +61,7 @@ "unit": "per_1m_output_tokens", "price_usd": 1.5, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237562+00:00", + "captured_at": "2026-06-07T06:46:33.955697+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -53,15 +69,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-720p", + "raw_model_name": "seedance-fast-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 8.75, + "price_usd": 7.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237569+00:00", + "captured_at": "2026-06-07T06:46:33.955702+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -69,15 +85,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-720p", + "raw_model_name": "seedance-fast-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 8.75, + "price_usd": 7.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237574+00:00", + "captured_at": "2026-06-07T06:46:33.955707+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -85,15 +101,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-t2v", + "raw_model_name": "seedance-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_input_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237581+00:00", + "captured_at": "2026-06-07T06:46:33.955711+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -101,15 +117,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-video-edit", + "raw_model_name": "seedance-nsfw", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_output_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237587+00:00", + "captured_at": "2026-06-07T06:46:33.955716+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -117,15 +133,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-reasoning", + "raw_model_name": "grok-imagine-video-1.5-preview", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 1.125, + "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237592+00:00", + "captured_at": "2026-06-07T06:46:33.955720+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -133,15 +149,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-reasoning", + "raw_model_name": "grok-imagine-video-1.5-preview", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 2.25, + "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237597+00:00", + "captured_at": "2026-06-07T06:46:33.955726+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -157,7 +173,7 @@ "unit": "per_1m_input_tokens", "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237601+00:00", + "captured_at": "2026-06-07T06:46:33.955730+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -173,7 +189,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237607+00:00", + "captured_at": "2026-06-07T06:46:33.955735+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -181,15 +197,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw", + "raw_model_name": "happyhorse-1.0-r2v", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 8.75, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237611+00:00", + "captured_at": "2026-06-07T06:46:33.955744+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -197,15 +213,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw", + "raw_model_name": "seedance-1-5-pro-with-audio", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 8.75, + "unit": "per_1m_input_tokens", + "price_usd": 3.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237615+00:00", + "captured_at": "2026-06-07T06:46:33.955749+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -213,15 +229,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-720p", + "raw_model_name": "seedance-1-5-pro-with-audio", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 8.75, + "unit": "per_1m_output_tokens", + "price_usd": 3.0, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237620+00:00", + "captured_at": "2026-06-07T06:46:33.955753+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -229,15 +245,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-720p", + "raw_model_name": "doubao-seedance-2-0-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", + "unit": "per_1m_input_tokens", "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237624+00:00", + "captured_at": "2026-06-07T06:46:33.955758+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -245,15 +261,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-1080p", + "raw_model_name": "doubao-seedance-2-0-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 9.625, + "unit": "per_1m_output_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237628+00:00", + "captured_at": "2026-06-07T06:46:33.955762+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -261,15 +277,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-nsfw-1080p", + "raw_model_name": "doubao-seedance-2-0-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", + "unit": "per_1m_input_tokens", "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237632+00:00", + "captured_at": "2026-06-07T06:46:33.955766+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -277,15 +293,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "happyhorse-1.0-i2v", + "raw_model_name": "doubao-seedance-2-0-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_second", - "price_usd": 0.1391, + "unit": "per_1m_output_tokens", + "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237638+00:00", + "captured_at": "2026-06-07T06:46:33.955770+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -293,15 +309,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-image", + "raw_model_name": "seedance-nsfw-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_image", - "price_usd": 0.018, + "unit": "per_1m_input_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237644+00:00", + "captured_at": "2026-06-07T06:46:33.955775+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -309,15 +325,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.3", + "raw_model_name": "seedance-nsfw-720p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 1.125, + "unit": "per_1m_output_tokens", + "price_usd": 8.75, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237648+00:00", + "captured_at": "2026-06-07T06:46:33.955779+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -325,15 +341,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.3", + "raw_model_name": "happyhorse-1.0-video-edit", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 2.25, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237653+00:00", + "captured_at": "2026-06-07T06:46:33.955785+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -341,15 +357,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-build-0.1", + "raw_model_name": "grok-4.20-0309-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 0.9, + "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237657+00:00", + "captured_at": "2026-06-07T06:46:33.955790+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -357,15 +373,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-build-0.1", + "raw_model_name": "grok-4.20-0309-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 1.8, + "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237661+00:00", + "captured_at": "2026-06-07T06:46:33.955794+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -373,15 +389,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-fast-260128", + "raw_model_name": "grok-imagine-image-quality", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 7.0, + "unit": "per_image", + "price_usd": 0.045, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237665+00:00", + "captured_at": "2026-06-07T06:46:33.955800+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -389,15 +405,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-fast-260128", + "raw_model_name": "grok-imagine-image", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 7.0, + "unit": "per_image", + "price_usd": 0.018, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237669+00:00", + "captured_at": "2026-06-07T06:46:33.955807+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -405,15 +421,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-1-5-pro-with-audio", + "raw_model_name": "grok-4.3", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 3.0, + "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237674+00:00", + "captured_at": "2026-06-07T06:46:33.955812+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -421,15 +437,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-1-5-pro-with-audio", + "raw_model_name": "grok-4.3", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 3.0, + "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237678+00:00", + "captured_at": "2026-06-07T06:46:33.955817+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -437,15 +453,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-1080p", + "raw_model_name": "grok-build-0.1", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 9.625, + "price_usd": 0.9, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237682+00:00", + "captured_at": "2026-06-07T06:46:33.955821+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -453,15 +469,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "doubao-seedance-2-0-1080p", + "raw_model_name": "grok-build-0.1", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 9.625, + "price_usd": 1.8, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237686+00:00", + "captured_at": "2026-06-07T06:46:33.955825+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -469,15 +485,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-fast-nsfw", + "raw_model_name": "seedance-nsfw-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 7.0, + "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237691+00:00", + "captured_at": "2026-06-07T06:46:33.955830+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -485,15 +501,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "seedance-fast-nsfw", + "raw_model_name": "seedance-nsfw-1080p", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 7.0, + "price_usd": 9.625, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237695+00:00", + "captured_at": "2026-06-07T06:46:33.955834+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -509,7 +525,7 @@ "unit": "per_1m_input_tokens", "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237699+00:00", + "captured_at": "2026-06-07T06:46:33.955838+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -525,23 +541,7 @@ "unit": "per_1m_output_tokens", "price_usd": 2.0834, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237703+00:00", - "confidence": "high", - "method": "json-api", - "notes": null - }, - { - "provider_id": "relaydance", - "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-non-reasoning", - "canonical_model": null, - "model_family": null, - "tier": null, - "channel_type": "mixed", - "unit": "per_1m_input_tokens", - "price_usd": 1.125, - "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237707+00:00", + "captured_at": "2026-06-07T06:46:33.955842+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -549,15 +549,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-4.20-0309-non-reasoning", + "raw_model_name": "happyhorse-1.0-t2v", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_1m_output_tokens", - "price_usd": 2.25, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237712+00:00", + "captured_at": "2026-06-07T06:46:33.955849+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -565,15 +565,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-image-quality", + "raw_model_name": "happyhorse-1.0-i2v", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", - "unit": "per_image", - "price_usd": 0.045, + "unit": "per_second", + "price_usd": 0.1391, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237717+00:00", + "captured_at": "2026-06-07T06:46:33.955854+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -581,15 +581,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-video-1.5-preview", + "raw_model_name": "grok-4.20-0309-non-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_input_tokens", - "price_usd": 2.0834, + "price_usd": 1.125, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237722+00:00", + "captured_at": "2026-06-07T06:46:33.955859+00:00", "confidence": "high", "method": "json-api", "notes": null @@ -597,15 +597,15 @@ { "provider_id": "relaydance", "provider_name": "Relaydance", - "raw_model_name": "grok-imagine-video-1.5-preview", + "raw_model_name": "grok-4.20-0309-non-reasoning", "canonical_model": null, "model_family": null, "tier": null, "channel_type": "mixed", "unit": "per_1m_output_tokens", - "price_usd": 2.0834, + "price_usd": 2.25, "source_url": "https://relaydance.com/pricing", - "captured_at": "2026-06-07T04:53:09.237726+00:00", + "captured_at": "2026-06-07T06:46:33.955863+00:00", "confidence": "high", "method": "json-api", "notes": null From 6fa667ed4883fc7609f1fd364df0db1c2e018bf1 Mon Sep 17 00:00:00 2001 From: "ton.gggg" Date: Sun, 7 Jun 2026 15:04:20 +0800 Subject: [PATCH 3/3] feat: auto-generate provider tables from providers.yaml (5-col China table) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the Notes-column squeeze in the China relays table (was 7 cols, now 5) and the contribution-friction root cause: every prior provider PR had to edit three READMEs alongside providers.yaml. Now PRs only touch providers.yaml; tables regenerate via scripts/build_provider_tables.py. Changes: - New scripts/build_provider_tables.py renders 4 sections × 3 languages between markers. Sections supported: china_relays, global_gateways, self_hosted_alternatives, comparison_tools. - China table reduced from 7 → 5 columns: Station / Type / Payment / Trust / Notes Trust combines status + last_verified + (· registered when entity is visible). Last-verified date and entity-registered info still live in providers.yaml for completeness; just no longer take dedicated columns. - providers.yaml notes can now be a string OR a bilingual {en, zh-TW, zh-CN} dict. All 19 existing entries migrated to bilingual; new entries can be English-only. - data/schema.md documents the new notes shape. - scripts/validate.py accepts both string and dict notes; rejects dicts missing 'en' key. - price-refresh.yml workflow runs build_provider_tables after build_charts so the weekly PR includes regenerated provider tables alongside prices/charts. - CONTRIBUTING.md updated to say "edit providers.yaml only" (was technically wrong before — tables WERE hand-maintained). Side effect: re-render after merging this means future Atlas Cloud / Relaydance edits to providers.yaml auto-propagate to all three READMEs. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/price-refresh.yml | 3 + CONTRIBUTING.md | 18 ++- README.md | 58 +++++--- README.zh-CN.md | 50 ++++--- README.zh-TW.md | 48 ++++--- data/providers.yaml | 95 +++++++++--- data/schema.md | 2 +- scripts/build_provider_tables.py | 215 ++++++++++++++++++++++++++++ scripts/validate.py | 5 + 9 files changed, 412 insertions(+), 82 deletions(-) create mode 100644 scripts/build_provider_tables.py diff --git a/.github/workflows/price-refresh.yml b/.github/workflows/price-refresh.yml index 6ac0b25..111954e 100644 --- a/.github/workflows/price-refresh.yml +++ b/.github/workflows/price-refresh.yml @@ -40,6 +40,9 @@ jobs: - name: Build charts (SVG) run: python -m scripts.build_charts + - name: Build provider tables (READMEs from providers.yaml) + run: python -m scripts.build_provider_tables + - name: Validate run: python -m scripts.validate diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9ba7336..632b599 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,17 +24,25 @@ went stale; the goal here is to stay current. ## How to add or edit a provider -1. **Edit [`data/providers.yaml`](data/providers.yaml)** — the README tables are - generated from it. Do **not** edit the README tables directly; they will be - overwritten. +1. **Edit [`data/providers.yaml`](data/providers.yaml) only** — the README + tables in all three languages are auto-generated by + [`scripts/build_provider_tables.py`](scripts/build_provider_tables.py). Do + **not** edit the README tables directly; they will be overwritten on the + next CI run. 2. Follow the [field schema](data/schema.md). Required: `name`, `url`, `type`, `status`. 3. Mark anything you could not personally verify as `status: unverified` and say so in `notes`. -4. Bump `last_reviewed` in `providers.yaml` if you did a broad pass. -5. Open a Pull Request. Use a clear title, e.g. +4. **`notes` may be a string OR a bilingual dict** `{en, zh-TW, zh-CN}`. New + entries can ship English-only — translations can be added later by anyone. +5. Bump `last_reviewed` in `providers.yaml` if you did a broad pass. +6. Open a Pull Request. Use a clear title, e.g. `add: ExampleAPI (mixed)` or `status: GPTGOD → inactive (ran away 2026-05)`. +> **Tip:** The schema CI runs on every PR — if you mis-spell a field or set an +> invalid `type` / `status`, the bot tells you exactly which line before a +> human reviews. Push a fix and CI re-runs automatically. + Not comfortable with a PR? Open an issue with the [provider template](.github/ISSUE_TEMPLATE/new-provider.md) and a maintainer will add it. diff --git a/README.md b/README.md index 7a85822..3c83b8b 100644 --- a/README.md +++ b/README.md @@ -73,33 +73,41 @@ market, not a workaround niche. ## China / Asia relay stations -> Status: `active` = independently reachable · `unverified` = community-sourced, -> not independently confirmed. **Last verified** = date the maintainer last -> visited the site; absent on unverified entries. Prices change constantly — -> verify on-site. Generated from [`data/providers.yaml`](data/providers.yaml). - -| Station | Type | Payment | Status | Last verified | Entity | Notes | -|---|---|---|---|---|---|---| -| [云雾 API (YUNWU)](https://yunwu.ai) | mixed | Alipay/WeChat | active | 2026-05-26 | unknown | Marketed on speed/stability; widely cited top-tier station. | -| [柏拉图 AI (bltcy)](https://api.bltcy.ai) | mixed | Alipay/WeChat | active | 2026-05-26 | unknown | Azure-backed channel; positions as lowest-price. | -| [No.1-API](https://api.rcouyi.com) | aggregator | Alipay/WeChat | active | 2026-05-26 | unknown | One-stop aggregation + relay platform. | -| [UiUiAPI](https://uiuiapi.com) | official-relay | Alipay/WeChat | active | 2026-05-26 | unknown | Claims official channels + official multipliers; ~49% cheaper (claimed), 300+ models. | -| [DMXAPI](https://dmxapi.cn) | mixed | Alipay/WeChat | unverified | — | unknown | Community-listed; homepage not independently verified. | -| [MKEAI](https://mkeai.com) | mixed | Alipay/WeChat | unverified | — | unknown | Community-forum + relay hybrid; pushes DeepSeek. | -| [GPTGOD](https://gptgod.online) | reverse | Alipay | unverified | — | unknown | Reverse-engineered; cheap, stability not guaranteed. | -| [CloseAI](https://www.closeai-asia.com) | official-relay | Alipay/WeChat/Invoice | active | 2026-05-26 | registered | Issues enterprise invoices; self-describes as largest enterprise-grade relay in Asia. | +> **Trust** = status + last-verified date + `· registered` when a company +> entity is publicly visible. `active` = independently reachable; +> `unverified` = community-sourced, not independently confirmed. +> Prices change fast — verify on-site. Full per-entry fields (payment, models, +> supports_tools, etc.) in [`data/providers.yaml`](data/providers.yaml); +> tables below are auto-generated by [`scripts/build_provider_tables.py`](scripts/build_provider_tables.py). + + +| Station | Type | Payment | Trust | Notes | +|---|---|---|---|---| +| [云雾 API (YUNWU)](https://yunwu.ai) | mixed | Alipay/WeChat | active · 2026-05-26 | Marketed on speed/stability; widely cited as a top-tier station. | +| [柏拉图 AI (bltcy)](https://api.bltcy.ai) | mixed | Alipay/WeChat | active · 2026-05-26 | Azure-backed channel; positions as lowest-price. | +| [No.1-API](https://api.rcouyi.com) | aggregator | Alipay/WeChat | active · 2026-05-26 | One-stop aggregation + relay platform. | +| [UiUiAPI](https://uiuiapi.com) | official-relay | Alipay/WeChat | active · 2026-05-26 | Claims official channels + official multipliers; rare quantified discount. | +| [DMXAPI](https://dmxapi.cn) | mixed | Alipay/WeChat | unverified | Listed in community sources; homepage not independently verified. | +| [MKEAI](https://mkeai.com) | mixed | Alipay/WeChat | unverified | Community-forum + relay hybrid; pushes DeepSeek heavily. | +| [GPTGOD](https://gptgod.online) | reverse | Alipay | unverified | Reverse-engineered; among cheapest, stability not guaranteed. | +| [CloseAI](https://www.closeai-asia.com) | official-relay | Alipay/WeChat/Invoice | active · 2026-05-26 · registered | Issues enterprise invoices; self-describes as largest enterprise-grade relay in Asia. | + > **Inclusion ≠ endorsement.** Listing documents the market. Always run the > [evaluation checklist](docs/evaluation.md) before sending money or data. ## Global gateways & aggregators + | Service | Type | Payment | Notes | |---|---|---|---| -| [OpenRouter](https://openrouter.ai) | aggregator | Card/Crypto | Official-authorized routing, ~5% markup; 400+ models, 60+ providers. ARR reportedly ~$5M (2025-05) → ~$50M (early 2026). | -| [LiteLLM](https://litellm.ai) | gateway-oss | — | Open-source gateway (100+ providers) + enterprise tier. Self-hosted, bring your own keys. | -| [Helicone](https://helicone.ai) | observability | — | LLM observability gateway; logging/cost analytics. | -| [AIMLAPI](https://aimlapi.com) | aggregator | Card/Crypto | 400+ models, prepaid from $20; crypto support implies payment-friction workaround. | +| [OpenRouter](https://openrouter.ai) | aggregator | Card/Crypto | Official-authorized routing, ~5% markup. ARR reportedly $5M (2025-05) to ~$50M (early 2026). Public JSON API at /api/v1/models with normalized per-token pricing. | +| [Atlas Cloud](https://www.atlascloud.ai) | aggregator | Card | Multi-modal aggregator; image/video heavy (Grok Imagine, Kling, ByteDance, Vidu). Public OpenAI-compatible /v1/models endpoint exposes per-token pricing including cache-read. | +| [Relaydance](https://relaydance.com) | mixed | Alipay/WeChat/Card | 新-API (Calcium-Ion fork) operator focused on xAI Grok + ByteDance Doubao. Public /api/pricing returns ratio-based pricing (model_ratio × $2 / 1M tokens). | +| [LiteLLM](https://litellm.ai) | gateway-oss | — | Open-source gateway + enterprise tier. Self-hosted; not retail. | +| [Helicone](https://helicone.ai) | observability | — | LLM observability gateway; logging/analytics focus. | +| [AIMLAPI](https://aimlapi.com) | aggregator | Card/Crypto | Prepaid from $20; crypto support implies payment-friction workaround. | + ## Self-hosted alternatives @@ -109,11 +117,14 @@ don't want a third party in the request path. You bring your own upstream keys data on your side. Most Chinese relay stations are themselves built on these templates. + | Project | Type | Notes | |---|---|---| -| [One-API](https://github.com/songquanpeng/one-api) | gateway-oss | Popular Go-based multi-vendor gateway; the de-facto OSS template behind many relay stations. | +| [One-API](https://github.com/songquanpeng/one-api) | gateway-oss | Popular Go-based self-hosted multi-vendor gateway; the de-facto OSS template behind many relay stations. | | [new-api](https://github.com/Calcium-Ion/new-api) | gateway-oss | Fork of One-API with extra channel types; same self-hosted model — you supply keys. | -| [LiteLLM](https://litellm.ai) | gateway-oss | Listed above. Python-first, 100+ providers, used by enterprises. | + + +> [LiteLLM](https://litellm.ai) (in the global table above) is also self-hosted (Python, 100+ providers, used by enterprises). **When to choose self-hosted over a relay:** regulated data, production workloads, you already have foreign-card billing, or you want auditable logs. @@ -121,10 +132,13 @@ You give up the relay's Alipay/WeChat convenience and accept ops overhead. ## Comparison & monitoring tools + | Tool | Notes | |---|---| | [中轉站競技場 (AI API PK)](https://www.aiapipk.com) | Price wall across OpenAI / Reverse / Claude / DeepSeek for ~40 stations. | -| [awesome-ai-proxy (mn-api)](https://github.com/mn-api/awesome-ai-proxy) | The original list (~31 stations). **Unmaintained as of 2026** — this repo aims to continue the effort. | +| [awesome-ai-proxy (mn-api, unmaintained)](https://github.com/mn-api/awesome-ai-proxy) | Original list (~31 stations); no longer maintained as of 2026. | +| [CoderPlan](https://coderplan.ai) | Community-submitted; claims 50+ models incl. OpenAI/Anthropic/Google/DeepSeek/xAI. | + ## Want your relay listed? diff --git a/README.zh-CN.md b/README.zh-CN.md index ac36ea8..a7cbe44 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -64,32 +64,40 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中转站 ## 中国 / 亚洲中转站 -> 状态:`active` = 可独立访问;`unverified` = 社区来源,未独立确认。 -> **最后验证**=维护者最后一次访问该站的日期;unverified 条目没有此字段。 -> 价格变动极快,请以官网为准。数据生成自 [`data/providers.yaml`](data/providers.yaml)。 - -| 中转站 | 类型 | 支付 | 状态 | 最后验证 | 公司主体 | 备注 | -|---|---|---|---|---|---|---| -| [云雾 API (YUNWU)](https://yunwu.ai) | mixed | 支付宝/微信 | active | 2026-05-26 | 未知 | 主打高速稳定;社区常列为头部站。 | -| [柏拉图 AI (bltcy)](https://api.bltcy.ai) | mixed | 支付宝/微信 | active | 2026-05-26 | 未知 | Azure 通道;主打最低价。 | -| [No.1-API](https://api.rcouyi.com) | aggregator | 支付宝/微信 | active | 2026-05-26 | 未知 | 一站式聚合 + 中转平台。 | -| [UiUiAPI](https://uiuiapi.com) | official-relay | 支付宝/微信 | active | 2026-05-26 | 未知 | 宣称官方渠道 + 官方倍率;约便宜 49%(宣称),300+ 模型。 | -| [DMXAPI](https://dmxapi.cn) | mixed | 支付宝/微信 | unverified | — | 未知 | 社区收录;官网未独立核实。 | -| [MKEAI](https://mkeai.com) | mixed | 支付宝/微信 | unverified | — | 未知 | 社区论坛 + 中转混合;主推 DeepSeek。 | -| [GPTGOD](https://gptgod.online) | reverse | 支付宝 | unverified | — | 未知 | 逆向;便宜,稳定性无保证。 | -| [CloseAI](https://www.closeai-asia.com) | official-relay | 支付宝/微信/对公 | active | 2026-05-26 | 已注册 | 提供对公发票;自称亚洲最大企业级中转。 | +> **信任** = 状态 + 最后验证日期 +(若公开可见公司主体会多 `· 已注册`)。 +> `active` = 可独立访问;`unverified` = 社区来源,未独立确认。 +> 价格变动极快,请以官网为准。完整字段(payment、models、supports_tools 等) +> 在 [`data/providers.yaml`](data/providers.yaml);下面的表格由 +> [`scripts/build_provider_tables.py`](scripts/build_provider_tables.py) 自动生成。 + + +| 中转站 | 类型 | 支付 | 信任 | 备注 | +|---|---|---|---|---| +| [云雾 API (YUNWU)](https://yunwu.ai) | mixed | 支付宝/微信 | active · 2026-05-26 | 主打高速稳定;社区常列为头部站。 | +| [柏拉图 AI (bltcy)](https://api.bltcy.ai) | mixed | 支付宝/微信 | active · 2026-05-26 | Azure 通道;主打最低价。 | +| [No.1-API](https://api.rcouyi.com) | aggregator | 支付宝/微信 | active · 2026-05-26 | 一站式聚合 + 中转平台。 | +| [UiUiAPI](https://uiuiapi.com) | official-relay | 支付宝/微信 | active · 2026-05-26 | 宣称官方渠道 + 官方倍率;约便宜 49%(宣称),300+ 模型。 | +| [DMXAPI](https://dmxapi.cn) | mixed | 支付宝/微信 | unverified | 社区收录;官网未独立核实。 | +| [MKEAI](https://mkeai.com) | mixed | 支付宝/微信 | unverified | 社区论坛 + 中转混合;主推 DeepSeek。 | +| [GPTGOD](https://gptgod.online) | reverse | 支付宝 | unverified | 逆向;便宜,稳定性无保证。 | +| [CloseAI](https://www.closeai-asia.com) | official-relay | 支付宝/微信/对公 | active · 2026-05-26 · 已注册 | 提供对公发票;自称亚洲最大企业级中转。 | + > **收录 ≠ 推荐。** 收录是为了记录市场。打款或传数据前请先走 > [评估清单](docs/evaluation.md)。 ## 海外网关与聚合平台 + | 服务 | 类型 | 支付 | 备注 | |---|---|---|---| -| [OpenRouter](https://openrouter.ai) | aggregator | 卡/加密货币 | 官方授权路由,加价约 5%;400+ 模型、60+ 供应商。ARR 据报约 $5M(2025-05)→ 约 $50M(2026 初)。 | +| [OpenRouter](https://openrouter.ai) | aggregator | 卡/加密货币 | 官方授权路由,加价约 5%;400+ 模型、60+ 供应商。ARR 据报约 $5M(2025-05)→ 约 $50M(2026 初)。公开 `/api/v1/models` JSON。 | +| [Atlas Cloud](https://www.atlascloud.ai) | aggregator | 卡 | 多模态聚合平台;图像/视频模型多(Grok Imagine、Kling、ByteDance、Vidu)。公开 OpenAI 兼容 `/v1/models` 含 cache-read 计价。 | +| [Relaydance](https://relaydance.com) | mixed | 支付宝/微信/卡 | 基于 new-api 的中文界面海外站,主打 xAI Grok + 字节跳动 Doubao。`/api/pricing` 公开倍率计价(model_ratio × $2/1M tokens)。 | | [LiteLLM](https://litellm.ai) | gateway-oss | — | 开源网关(100+ 供应商)+ 企业版。自托管,自带 Key。 | | [Helicone](https://helicone.ai) | observability | — | LLM 可观测性网关;日志/成本分析。 | | [AIMLAPI](https://aimlapi.com) | aggregator | 卡/加密货币 | 400+ 模型,$20 起预付;支持加密货币暗示绕支付障碍。 | + ## 自托管替代方案 @@ -97,21 +105,27 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中转站 你自带上游官方 key(或自负风险使用中转站 key)、跑在自己的机器上、数据留在自己手中。 大部分中国中转站本身就是用这些开源项目搭起来的。 + | 项目 | 类型 | 备注 | |---|---|---| | [One-API](https://github.com/songquanpeng/one-api) | gateway-oss | 流行的 Go 多厂商网关;多数中转站的底层 OSS 模板。 | | [new-api](https://github.com/Calcium-Ion/new-api) | gateway-oss | One-API 的 fork,多了几种通道类型;同样自托管、自带 key。 | -| [LiteLLM](https://litellm.ai) | gateway-oss | 上面列过,Python 为主、100+ 供应商、企业常用。 | + + +> [LiteLLM](https://litellm.ai)(在上面海外网关表格内)同样是自托管方案(Python 为主、100+ 供应商、企业常用)。 **什么时候该自托管而非用中转站**:合规/敏感数据、production 工作负载、你已经能用国外卡付款、 或需要可审计的日志。代价是失去支付宝/微信的便利,并承担运维成本。 ## 对比与监控工具 + | 工具 | 备注 | |---|---| -| [中转站竞技场 (AI API PK)](https://www.aiapipk.com) | 约 40 家站点的 OpenAI / 逆向 / Claude / DeepSeek 报价墙。 | -| [awesome-ai-proxy (mn-api)](https://github.com/mn-api/awesome-ai-proxy) | 最早的清单(约 31 家)。**2026 年起已停更** —— 本仓库延续这一工作。 | +| [中轉站競技場 (AI API PK)](https://www.aiapipk.com) | 约 40 家站点的 OpenAI / 逆向 / Claude / DeepSeek 报价墙。 | +| [awesome-ai-proxy (mn-api, unmaintained)](https://github.com/mn-api/awesome-ai-proxy) | 最早的清单(约 31 家)。**2026 年起已停更** —— 本仓库延续这一工作。 | +| [CoderPlan](https://coderplan.ai) | 社区投稿;宣称 50+ 模型,含 OpenAI/Anthropic/Google/DeepSeek/xAI。 | + ## 想被收录吗? diff --git a/README.zh-TW.md b/README.zh-TW.md index eace411..b0b71c7 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -64,32 +64,40 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中轉站 ## 中國 / 亞洲中轉站 -> 狀態:`active` = 可獨立存取;`unverified` = 社群來源,未獨立確認。 -> **最後驗證**=維護者最後一次造訪該站的日期;unverified 條目沒有此欄位。 -> 價格變動極快,請以官網為準。資料生成自 [`data/providers.yaml`](data/providers.yaml)。 - -| 中轉站 | 類型 | 支付 | 狀態 | 最後驗證 | 公司主體 | 備註 | -|---|---|---|---|---|---|---| -| [云雾 API (YUNWU)](https://yunwu.ai) | mixed | 支付寶/微信 | active | 2026-05-26 | 未知 | 主打高速穩定;社群常列為頭部站。 | -| [柏拉图 AI (bltcy)](https://api.bltcy.ai) | mixed | 支付寶/微信 | active | 2026-05-26 | 未知 | Azure 通道;主打最低價。 | -| [No.1-API](https://api.rcouyi.com) | aggregator | 支付寶/微信 | active | 2026-05-26 | 未知 | 一站式聚合 + 中轉平台。 | -| [UiUiAPI](https://uiuiapi.com) | official-relay | 支付寶/微信 | active | 2026-05-26 | 未知 | 宣稱官方渠道 + 官方倍率;約便宜 49%(宣稱),300+ 模型。 | -| [DMXAPI](https://dmxapi.cn) | mixed | 支付寶/微信 | unverified | — | 未知 | 社群收錄;官網未獨立核實。 | -| [MKEAI](https://mkeai.com) | mixed | 支付寶/微信 | unverified | — | 未知 | 社群論壇 + 中轉混合;主推 DeepSeek。 | -| [GPTGOD](https://gptgod.online) | reverse | 支付寶 | unverified | — | 未知 | 逆向;便宜,穩定性無保證。 | -| [CloseAI](https://www.closeai-asia.com) | official-relay | 支付寶/微信/對公 | active | 2026-05-26 | 已註冊 | 提供對公發票;自稱亞洲最大企業級中轉。 | +> **信任** = 狀態 + 最後驗證日期 +(若公開可見公司主體會多 `· 已註冊`)。 +> `active` = 可獨立存取;`unverified` = 社群來源,未獨立確認。 +> 價格變動極快,請以官網為準。完整欄位(payment、models、supports_tools 等) +> 在 [`data/providers.yaml`](data/providers.yaml);下面的表格由 +> [`scripts/build_provider_tables.py`](scripts/build_provider_tables.py) 自動生成。 + + +| 中轉站 | 類型 | 支付 | 信任 | 備註 | +|---|---|---|---|---| +| [云雾 API (YUNWU)](https://yunwu.ai) | mixed | 支付寶/微信 | active · 2026-05-26 | 主打高速穩定;社群常列為頭部站。 | +| [柏拉图 AI (bltcy)](https://api.bltcy.ai) | mixed | 支付寶/微信 | active · 2026-05-26 | Azure 通道;主打最低價。 | +| [No.1-API](https://api.rcouyi.com) | aggregator | 支付寶/微信 | active · 2026-05-26 | 一站式聚合 + 中轉平台。 | +| [UiUiAPI](https://uiuiapi.com) | official-relay | 支付寶/微信 | active · 2026-05-26 | 宣稱官方渠道 + 官方倍率;約便宜 49%(宣稱),300+ 模型。 | +| [DMXAPI](https://dmxapi.cn) | mixed | 支付寶/微信 | unverified | 社群收錄;官網未獨立核實。 | +| [MKEAI](https://mkeai.com) | mixed | 支付寶/微信 | unverified | 社群論壇 + 中轉混合;主推 DeepSeek。 | +| [GPTGOD](https://gptgod.online) | reverse | 支付寶 | unverified | 逆向;便宜,穩定性無保證。 | +| [CloseAI](https://www.closeai-asia.com) | official-relay | 支付寶/微信/對公 | active · 2026-05-26 · 已註冊 | 提供對公發票;自稱亞洲最大企業級中轉。 | + > **收錄 ≠ 推薦。** 收錄是為了記錄市場。打款或傳資料前請先走 > [評估清單](docs/evaluation.md)。 ## 海外閘道與聚合平台 + | 服務 | 類型 | 支付 | 備註 | |---|---|---|---| -| [OpenRouter](https://openrouter.ai) | aggregator | 卡/加密貨幣 | 官方授權路由,加價約 5%;400+ 模型、60+ 供應商。ARR 據報約 $5M(2025-05)→ 約 $50M(2026 初)。 | +| [OpenRouter](https://openrouter.ai) | aggregator | 卡/加密貨幣 | 官方授權路由,加價約 5%;400+ 模型、60+ 供應商。ARR 據報約 $5M(2025-05)→ 約 $50M(2026 初)。公開 `/api/v1/models` JSON。 | +| [Atlas Cloud](https://www.atlascloud.ai) | aggregator | 卡 | 多模態聚合平台;影像/影片模型多(Grok Imagine、Kling、ByteDance、Vidu)。公開 OpenAI 相容 `/v1/models` 含 cache-read 計價。 | +| [Relaydance](https://relaydance.com) | mixed | 支付寶/微信/卡 | 基於 new-api 的中文介面海外站,主打 xAI Grok + 字節跳動 Doubao。`/api/pricing` 公開倍率計價(model_ratio × $2/1M tokens)。 | | [LiteLLM](https://litellm.ai) | gateway-oss | — | 開源閘道(100+ 供應商)+ 企業版。自架,自帶 Key。 | | [Helicone](https://helicone.ai) | observability | — | LLM 可觀測性閘道;日誌/成本分析。 | | [AIMLAPI](https://aimlapi.com) | aggregator | 卡/加密貨幣 | 400+ 模型,$20 起預付;支援加密貨幣暗示繞支付障礙。 | + ## 自架替代方案 @@ -97,21 +105,27 @@ OpenAI、Anthropic、Google 等官方 API,而是把 `base_url` 改成中轉站 你自帶上游官方 key(或自負風險使用中轉站 key)、跑在自己的機器上、資料留在自己手中。 大部分中國中轉站本身就是用這些開源專案搭起來的。 + | 專案 | 類型 | 備註 | |---|---|---| | [One-API](https://github.com/songquanpeng/one-api) | gateway-oss | 流行的 Go 多廠商閘道;多數中轉站的底層 OSS 模板。 | | [new-api](https://github.com/Calcium-Ion/new-api) | gateway-oss | One-API 的 fork,多了幾種通道類型;同樣自架、自帶 key。 | -| [LiteLLM](https://litellm.ai) | gateway-oss | 上面列過,Python 為主、100+ 供應商、企業常用。 | + + +> [LiteLLM](https://litellm.ai)(在上面海外閘道表格內)同樣是自架方案(Python 為主、100+ 供應商、企業常用)。 **什麼時候該自架而非用中轉站**:合規/敏感資料、production 工作負載、你已經能用國外卡付款、 或需要可審計的日誌。代價是失去支付寶/微信的便利,並承擔運維成本。 ## 對比與監控工具 + | 工具 | 備註 | |---|---| | [中轉站競技場 (AI API PK)](https://www.aiapipk.com) | 約 40 家站點的 OpenAI / 逆向 / Claude / DeepSeek 報價牆。 | -| [awesome-ai-proxy (mn-api)](https://github.com/mn-api/awesome-ai-proxy) | 最早的清單(約 31 家)。**2026 年起已停更** —— 本倉庫延續這項工作。 | +| [awesome-ai-proxy (mn-api, unmaintained)](https://github.com/mn-api/awesome-ai-proxy) | 最早的清單(約 31 家)。**2026 年起已停更** —— 本倉庫延續這項工作。 | +| [CoderPlan](https://coderplan.ai) | 社群投稿;宣稱 50+ 模型,含 OpenAI/Anthropic/Google/DeepSeek/xAI。 | + ## 想被收錄嗎? diff --git a/data/providers.yaml b/data/providers.yaml index f8abfee..b9c16bc 100644 --- a/data/providers.yaml +++ b/data/providers.yaml @@ -40,7 +40,10 @@ china_relays: entity_registered: unknown supports_stream: true supports_tools: unknown - notes: "Marketed on speed/stability; widely cited as a top-tier station." + notes: + en: "Marketed on speed/stability; widely cited as a top-tier station." + zh-TW: "主打高速穩定;社群常列為頭部站。" + zh-CN: "主打高速稳定;社区常列为头部站。" - name: 柏拉图 AI (bltcy) url: https://api.bltcy.ai @@ -53,7 +56,10 @@ china_relays: entity_registered: unknown supports_stream: true supports_tools: unknown - notes: "Azure-backed channel; positions as lowest-price." + notes: + en: "Azure-backed channel; positions as lowest-price." + zh-TW: "Azure 通道;主打最低價。" + zh-CN: "Azure 通道;主打最低价。" - name: No.1-API url: https://api.rcouyi.com @@ -66,7 +72,10 @@ china_relays: entity_registered: unknown supports_stream: true supports_tools: unknown - notes: "One-stop aggregation + relay platform." + notes: + en: "One-stop aggregation + relay platform." + zh-TW: "一站式聚合 + 中轉平台。" + zh-CN: "一站式聚合 + 中转平台。" - name: UiUiAPI url: https://uiuiapi.com @@ -82,7 +91,10 @@ china_relays: entity_registered: unknown supports_stream: true supports_tools: true - notes: "Claims official channels + official multipliers; rare quantified discount." + notes: + en: "Claims official channels + official multipliers; rare quantified discount." + zh-TW: "宣稱官方渠道 + 官方倍率;約便宜 49%(宣稱),300+ 模型。" + zh-CN: "宣称官方渠道 + 官方倍率;约便宜 49%(宣称),300+ 模型。" - name: DMXAPI url: https://dmxapi.cn @@ -95,7 +107,10 @@ china_relays: entity_registered: unknown supports_stream: unknown supports_tools: unknown - notes: "Listed in community sources; homepage not independently verified." + notes: + en: "Listed in community sources; homepage not independently verified." + zh-TW: "社群收錄;官網未獨立核實。" + zh-CN: "社区收录;官网未独立核实。" - name: MKEAI url: https://mkeai.com @@ -108,7 +123,10 @@ china_relays: entity_registered: unknown supports_stream: unknown supports_tools: unknown - notes: "Community-forum + relay hybrid; pushes DeepSeek heavily." + notes: + en: "Community-forum + relay hybrid; pushes DeepSeek heavily." + zh-TW: "社群論壇 + 中轉混合;主推 DeepSeek。" + zh-CN: "社区论坛 + 中转混合;主推 DeepSeek。" - name: GPTGOD url: https://gptgod.online @@ -121,7 +139,10 @@ china_relays: entity_registered: unknown supports_stream: unknown supports_tools: unknown - notes: "Reverse-engineered; among cheapest, stability not guaranteed." + notes: + en: "Reverse-engineered; among cheapest, stability not guaranteed." + zh-TW: "逆向;便宜,穩定性無保證。" + zh-CN: "逆向;便宜,稳定性无保证。" - name: CloseAI url: https://www.closeai-asia.com @@ -134,7 +155,10 @@ china_relays: entity_registered: true supports_stream: true supports_tools: true - notes: "Issues enterprise invoices; self-describes as largest enterprise-grade relay in Asia." + notes: + en: "Issues enterprise invoices; self-describes as largest enterprise-grade relay in Asia." + zh-TW: "提供對公發票;自稱亞洲最大企業級中轉。" + zh-CN: "提供对公发票;自称亚洲最大企业级中转。" # --------------------------------------------------------------------------- # Comparison / monitoring tools (中轉站對比工具) @@ -146,7 +170,10 @@ comparison_tools: status: active last_verified: "2026-05-26" verified_by: maintainer - notes: "Price wall across OpenAI / Reverse / Claude / DeepSeek for ~40 stations." + notes: + en: "Price wall across OpenAI / Reverse / Claude / DeepSeek for ~40 stations." + zh-TW: "約 40 家站點的 OpenAI / 逆向 / Claude / DeepSeek 報價牆。" + zh-CN: "约 40 家站点的 OpenAI / 逆向 / Claude / DeepSeek 报价墙。" - name: awesome-ai-proxy (mn-api, unmaintained) url: https://github.com/mn-api/awesome-ai-proxy @@ -154,7 +181,10 @@ comparison_tools: status: inactive last_verified: "2026-05-26" verified_by: maintainer - notes: "Original list (~31 stations); no longer maintained as of 2026." + notes: + en: "Original list (~31 stations); no longer maintained as of 2026." + zh-TW: "最早的清單(約 31 家)。**2026 年起已停更** —— 本倉庫延續這項工作。" + zh-CN: "最早的清单(约 31 家)。**2026 年起已停更** —— 本仓库延续这一工作。" # --------------------------------------------------------------------------- # Global gateways / aggregators (海外對比方案) @@ -173,7 +203,10 @@ comparison_tools: entity_registered: unknown supports_stream: true supports_tools: true - notes: "OpenAI-compatible relay targeting Chinese developers; domestic direct connect, ¥10 minimum top-up." + notes: + en: "Community-submitted; claims 50+ models incl. OpenAI/Anthropic/Google/DeepSeek/xAI." + zh-TW: "社群投稿;宣稱 50+ 模型,含 OpenAI/Anthropic/Google/DeepSeek/xAI。" + zh-CN: "社区投稿;宣称 50+ 模型,含 OpenAI/Anthropic/Google/DeepSeek/xAI。" global_gateways: - name: OpenRouter url: https://openrouter.ai @@ -193,7 +226,10 @@ global_gateways: api_url: https://openrouter.ai/api/v1/models fetcher: openrouter pricing_currency: USD - notes: "Official-authorized routing, ~5% markup. ARR reportedly $5M (2025-05) to ~$50M (early 2026). Public JSON API at /api/v1/models with normalized per-token pricing." + notes: + en: "Official-authorized routing, ~5% markup. ARR reportedly $5M (2025-05) to ~$50M (early 2026). Public JSON API at /api/v1/models with normalized per-token pricing." + zh-TW: "官方授權路由,加價約 5%;400+ 模型、60+ 供應商。ARR 據報約 $5M(2025-05)→ 約 $50M(2026 初)。公開 `/api/v1/models` JSON。" + zh-CN: "官方授权路由,加价约 5%;400+ 模型、60+ 供应商。ARR 据报约 $5M(2025-05)→ 约 $50M(2026 初)。公开 `/api/v1/models` JSON。" - name: Atlas Cloud url: https://www.atlascloud.ai @@ -212,7 +248,10 @@ global_gateways: api_url: https://api.atlascloud.ai/v1/models fetcher: atlascloud pricing_currency: USD - notes: "Multi-modal aggregator; image/video heavy (Grok Imagine, Kling, ByteDance, Vidu). Public OpenAI-compatible /v1/models endpoint exposes per-token pricing including cache-read." + notes: + en: "Multi-modal aggregator; image/video heavy (Grok Imagine, Kling, ByteDance, Vidu). Public OpenAI-compatible /v1/models endpoint exposes per-token pricing including cache-read." + zh-TW: "多模態聚合平台;影像/影片模型多(Grok Imagine、Kling、ByteDance、Vidu)。公開 OpenAI 相容 `/v1/models` 含 cache-read 計價。" + zh-CN: "多模态聚合平台;图像/视频模型多(Grok Imagine、Kling、ByteDance、Vidu)。公开 OpenAI 兼容 `/v1/models` 含 cache-read 计价。" - name: Relaydance url: https://relaydance.com @@ -231,7 +270,10 @@ global_gateways: api_url: https://relaydance.com/api/pricing fetcher: relaydance pricing_currency: USD - notes: "新-API (Calcium-Ion fork) operator focused on xAI Grok + ByteDance Doubao. Public /api/pricing returns ratio-based pricing (model_ratio × $2 / 1M tokens)." + notes: + en: "新-API (Calcium-Ion fork) operator focused on xAI Grok + ByteDance Doubao. Public /api/pricing returns ratio-based pricing (model_ratio × $2 / 1M tokens)." + zh-TW: "基於 new-api 的中文介面海外站,主打 xAI Grok + 字節跳動 Doubao。`/api/pricing` 公開倍率計價(model_ratio × $2/1M tokens)。" + zh-CN: "基于 new-api 的中文界面海外站,主打 xAI Grok + 字节跳动 Doubao。`/api/pricing` 公开倍率计价(model_ratio × $2/1M tokens)。" - name: LiteLLM url: https://litellm.ai @@ -244,7 +286,10 @@ global_gateways: entity_registered: true supports_stream: true supports_tools: true - notes: "Open-source gateway + enterprise tier. Self-hosted; not retail." + notes: + en: "Open-source gateway + enterprise tier. Self-hosted; not retail." + zh-TW: "開源閘道(100+ 供應商)+ 企業版。自架,自帶 Key。" + zh-CN: "开源网关(100+ 供应商)+ 企业版。自托管,自带 Key。" - name: Helicone url: https://helicone.ai @@ -256,7 +301,10 @@ global_gateways: entity_registered: true supports_stream: true supports_tools: true - notes: "LLM observability gateway; logging/analytics focus." + notes: + en: "LLM observability gateway; logging/analytics focus." + zh-TW: "LLM 可觀測性閘道;日誌/成本分析。" + zh-CN: "LLM 可观测性网关;日志/成本分析。" - name: AIMLAPI url: https://aimlapi.com @@ -270,7 +318,10 @@ global_gateways: entity_registered: true supports_stream: true supports_tools: unknown - notes: "Prepaid from $20; crypto support implies payment-friction workaround." + notes: + en: "Prepaid from $20; crypto support implies payment-friction workaround." + zh-TW: "400+ 模型,$20 起預付;支援加密貨幣暗示繞支付障礙。" + zh-CN: "400+ 模型,$20 起预付;支持加密货币暗示绕支付障碍。" # --------------------------------------------------------------------------- # Self-hosted alternatives (自架閘道,供參考對比 — 非「中轉站」) @@ -285,7 +336,10 @@ self_hosted_alternatives: entity_registered: false supports_stream: true supports_tools: true - notes: "Popular Go-based self-hosted multi-vendor gateway; the de-facto OSS template behind many relay stations." + notes: + en: "Popular Go-based self-hosted multi-vendor gateway; the de-facto OSS template behind many relay stations." + zh-TW: "流行的 Go 多廠商閘道;多數中轉站的底層 OSS 模板。" + zh-CN: "流行的 Go 多厂商网关;多数中转站的底层 OSS 模板。" - name: new-api url: https://github.com/Calcium-Ion/new-api @@ -296,4 +350,7 @@ self_hosted_alternatives: entity_registered: false supports_stream: true supports_tools: true - notes: "Fork of One-API with extra channel types; same self-hosted model — you supply keys." + notes: + en: "Fork of One-API with extra channel types; same self-hosted model — you supply keys." + zh-TW: "One-API 的 fork,多了幾種通道類型;同樣自架、自帶 key。" + zh-CN: "One-API 的 fork,多了几种通道类型;同样自托管、自带 key。" diff --git a/data/schema.md b/data/schema.md index a34effd..e552fa6 100644 --- a/data/schema.md +++ b/data/schema.md @@ -19,7 +19,7 @@ Unverifiable claims must be marked with `(claimed)` or `status: unverified`. | `entity_registered` | no | `true`, `false`, or `unknown`. Is a registered company / ICP filing publicly visible. | | `supports_stream` | no | `true`, `false`, or `unknown`. SSE / streaming responses available. | | `supports_tools` | no | `true`, `false`, or `unknown`. Function-calling / tools API compatibility. | -| `notes` | no | One sentence. Factual. No marketing language. | +| `notes` | no | One factual sentence, no marketing. **May be a string OR a dict `{en, zh-TW, zh-CN}` for bilingual entries.** Missing translations fall back to `en`. Required key when dict: `en`. | | `pricing` | no | Block. See below — present when this provider has an automated fetcher. | ## `pricing` block (optional, schema v3) diff --git a/scripts/build_provider_tables.py b/scripts/build_provider_tables.py new file mode 100644 index 0000000..b4350c6 --- /dev/null +++ b/scripts/build_provider_tables.py @@ -0,0 +1,215 @@ +"""Auto-generate provider tables in the three READMEs from data/providers.yaml. + +Fixes two long-standing problems at once: +1. The China relays table was 7 columns, which squeezed Notes into 3-4 lines per + row on GitHub's render. Reduces to 5 columns (Station / Type / Payment / + Trust / Notes) — Notes now reads in one line for most entries. +2. Every prior provider PR had to hand-edit three READMEs alongside + providers.yaml. Now PRs only touch providers.yaml; tables regenerate. + +`notes` in providers.yaml can be either a string (English-only) or a dict +{en, zh-TW, zh-CN} for bilingual entries. Missing translations fall back to en. + +Tables sit between `` and `:end -->` markers +in each README. Sections supported: china_relays, global_gateways, +self_hosted_alternatives, comparison_tools. + +Run after editing providers.yaml. Idempotent. +""" + +from __future__ import annotations + +import yaml +from rich.console import Console + +from ._paths import PROVIDERS_YAML, READMES, REPO_ROOT + +console = Console() + +LANGS_BY_FILE = { + "README.md": "en", + "README.zh-TW.md": "zh-TW", + "README.zh-CN.md": "zh-CN", +} + +PAYMENT_LABELS = { + "en": { + "alipay": "Alipay", "wechat": "WeChat", "card": "Card", + "crypto": "Crypto", "enterprise-invoice": "Invoice", + }, + "zh-TW": { + "alipay": "支付寶", "wechat": "微信", "card": "卡", + "crypto": "加密貨幣", "enterprise-invoice": "對公", + }, + "zh-CN": { + "alipay": "支付宝", "wechat": "微信", "card": "卡", + "crypto": "加密货币", "enterprise-invoice": "对公", + }, +} + +SECTION_HEADERS = { + "china_relays": { + "en": ["Station", "Type", "Payment", "Trust", "Notes"], + "zh-TW": ["中轉站", "類型", "支付", "信任", "備註"], + "zh-CN": ["中转站", "类型", "支付", "信任", "备注"], + }, + "global_gateways": { + "en": ["Service", "Type", "Payment", "Notes"], + "zh-TW": ["服務", "類型", "支付", "備註"], + "zh-CN": ["服务", "类型", "支付", "备注"], + }, + "self_hosted_alternatives": { + "en": ["Project", "Type", "Notes"], + "zh-TW": ["專案", "類型", "備註"], + "zh-CN": ["项目", "类型", "备注"], + }, + "comparison_tools": { + "en": ["Tool", "Notes"], + "zh-TW": ["工具", "備註"], + "zh-CN": ["工具", "备注"], + }, +} + +TRUST_TEMPLATE = { + "en": { + "active": "active", + "unverified": "unverified", + "inactive": "inactive", + "registered_suffix": " · registered", + "date_prefix": " · ", + }, + "zh-TW": { + "active": "active", "unverified": "unverified", "inactive": "inactive", + "registered_suffix": " · 已註冊", "date_prefix": " · ", + }, + "zh-CN": { + "active": "active", "unverified": "unverified", "inactive": "inactive", + "registered_suffix": " · 已注册", "date_prefix": " · ", + }, +} + + +def _notes_for(entry: dict, lang: str) -> str: + notes = entry.get("notes") or "" + if isinstance(notes, dict): + return notes.get(lang) or notes.get("en") or "" + return notes + + +def _payments_cell(entry: dict, lang: str) -> str: + payments = entry.get("payment") or [] + labels = PAYMENT_LABELS[lang] + if not payments: + return "—" + return "/".join(labels.get(p, p) for p in payments) + + +def _trust_cell(entry: dict, lang: str) -> str: + tmpl = TRUST_TEMPLATE[lang] + status = entry.get("status", "unverified") + parts = [tmpl.get(status, status)] + last_verified = entry.get("last_verified") + if last_verified and status == "active": + parts.append(f"{tmpl['date_prefix']}{last_verified}") + if entry.get("entity_registered") is True: + parts.append(tmpl["registered_suffix"]) + return "".join(parts) + + +def _station_cell(entry: dict) -> str: + return f"[{entry['name']}]({entry['url']})" + + +def _render_china_row(entry: dict, lang: str) -> str: + return "| {station} | {type} | {payment} | {trust} | {notes} |".format( + station=_station_cell(entry), + type=entry.get("type", "?"), + payment=_payments_cell(entry, lang), + trust=_trust_cell(entry, lang), + notes=_notes_for(entry, lang), + ) + + +def _render_global_row(entry: dict, lang: str) -> str: + return "| {svc} | {type} | {payment} | {notes} |".format( + svc=_station_cell(entry), + type=entry.get("type", "?"), + payment=_payments_cell(entry, lang), + notes=_notes_for(entry, lang), + ) + + +def _render_self_hosted_row(entry: dict, lang: str) -> str: + return "| {proj} | {type} | {notes} |".format( + proj=_station_cell(entry), + type=entry.get("type", "?"), + notes=_notes_for(entry, lang), + ) + + +def _render_comparison_row(entry: dict, lang: str) -> str: + return "| {tool} | {notes} |".format( + tool=_station_cell(entry), + notes=_notes_for(entry, lang), + ) + + +ROW_RENDERERS = { + "china_relays": _render_china_row, + "global_gateways": _render_global_row, + "self_hosted_alternatives": _render_self_hosted_row, + "comparison_tools": _render_comparison_row, +} + + +def _render_section(section: str, entries: list[dict], lang: str) -> str: + headers = SECTION_HEADERS[section][lang] + header_row = "| " + " | ".join(headers) + " |" + align_row = "|" + "|".join(["---"] * len(headers)) + "|" + rows = [ROW_RENDERERS[section](e, lang) for e in entries if isinstance(e, dict)] + return "\n".join([header_row, align_row, *rows]) + + +def _update_markers(readme_text: str, section: str, body: str) -> tuple[str, bool]: + start_marker = f"" + end_marker = f"" + if start_marker not in readme_text or end_marker not in readme_text: + return readme_text, False + start = readme_text.index(start_marker) + len(start_marker) + end = readme_text.index(end_marker) + new_text = readme_text[:start] + "\n" + body + "\n" + readme_text[end:] + return new_text, True + + +def main() -> int: + doc = yaml.safe_load(PROVIDERS_YAML.read_text(encoding="utf-8")) + sections_present = [s for s in SECTION_HEADERS if s in doc] + console.print(f"sections to render: {sections_present}") + + updates = 0 + for readme_path in READMES: + lang = LANGS_BY_FILE.get(readme_path.name) + if not lang or not readme_path.exists(): + continue + text = readme_path.read_text(encoding="utf-8") + original = text + for section in sections_present: + entries = doc.get(section) or [] + if not entries: + continue + body = _render_section(section, entries, lang) + text, updated = _update_markers(text, section, body) + if updated: + updates += 1 + if text != original: + readme_path.write_text(text, encoding="utf-8") + console.print(f"[green]updated[/green] {readme_path.relative_to(REPO_ROOT)}") + else: + console.print(f"[yellow]no markers found in[/yellow] {readme_path.relative_to(REPO_ROOT)}") + console.rule() + console.print(f"[bold green]Done.[/bold green] {updates} section block(s) updated across READMEs.") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/scripts/validate.py b/scripts/validate.py index 44246ee..b22fe1a 100644 --- a/scripts/validate.py +++ b/scripts/validate.py @@ -66,6 +66,11 @@ def validate_providers(problems: list[str]) -> None: problems, f"{section}: '{entry['name']}' pricing block missing '{required}'", ) + notes = entry.get("notes") + if notes is not None and not isinstance(notes, (str, dict)): + _problem(problems, f"{section}: '{entry['name']}' notes must be string or dict") + if isinstance(notes, dict) and "en" not in notes: + _problem(problems, f"{section}: '{entry['name']}' bilingual notes must include 'en' key") def validate_canonical(problems: list[str]) -> None: