Skip to main content

Fetch, normalise, snapshot, and diff official LLM API token pricing.

Project description

llm-price-tracker

llm-price-tracker fetches official published API token prices for major LLM providers, normalises them into one schema, and supports JSON snapshots and snapshot diffs.

Prices are collected from official provider pages only. Provider page structures can change without notice, so review fetched prices before using them for production billing or customer-facing estimates.

Supported providers

Installation

pip install llm-price-tracker

For local development:

python3 -m pip install -e ".[dev]"

Python 3.10 or newer is required.

Python usage

from llm_price_tracker import (
    diff_snapshots,
    fetch_all_prices,
    fetch_provider_prices,
    load_snapshot,
    save_snapshot,
)

prices = fetch_all_prices()
openai_prices = fetch_provider_prices("openai")
save_snapshot(prices, "prices.json")

old = load_snapshot("prices-old.json")
new = load_snapshot("prices.json")
diff = diff_snapshots(old, new)

CLI usage

llm-price-tracker list-providers
llm-price-tracker fetch --provider openai --output openai-prices.json
llm-price-tracker fetch --provider all --output prices.json
llm-price-tracker diff --old prices-old.json --new prices.json
llm-price-tracker diff --old prices-old.json --new prices.json --fail-on-change

The CLI exits non-zero when fetching, parsing, validation, or diff --fail-on-change checks fail. Use --ignore-errors with fetch --provider all to write successful providers while reporting skipped provider errors.

Output schema

Snapshots are JSON arrays of ModelPrice objects. Decimal prices are serialized as strings to avoid floating-point precision loss.

[
  {
    "provider": "openai",
    "model": "gpt-4.1",
    "input_per_1m": "2.00",
    "output_per_1m": "8.00",
    "cached_input_per_1m": "0.50",
    "cache_write_5m_per_1m": null,
    "cache_write_1h_per_1m": null,
    "cache_storage_per_1m_hour": null,
    "currency": "USD",
    "unit": "1M tokens",
    "source_url": "https://openai.com/api/pricing/",
    "source_type": "html",
    "fetched_at": "2026-06-12T09:00:00Z",
    "modality": null,
    "billing_tier": null,
    "price_condition": null,
    "notes": null
  }
]

Some providers publish tiered or modality-specific prices. Those variants use optional modality, billing_tier, and price_condition fields instead of inventing new model names.

Provider adapters include lightweight required-model sanity checks for current official pages. Those checks are adapter arguments so downstream users can override them when providers rename, add, or deprecate models.

Development

python3 -m pip install -e ".[dev]"
pytest
ruff check .
black --check .

Normal tests use saved fixtures and do not call live provider pages. Live tests, when added, should be opt-in:

LLM_PRICE_TRACKER_LIVE_TESTS=1 pytest tests/live

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llm_price_tracker-2026.6.121346.tar.gz (21.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llm_price_tracker-2026.6.121346-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file llm_price_tracker-2026.6.121346.tar.gz.

File metadata

File hashes

Hashes for llm_price_tracker-2026.6.121346.tar.gz
Algorithm Hash digest
SHA256 7d5c5bbc4124368a73c30284f56e585b920d656429a2ebfe0e62f9c46585006c
MD5 bfa7cd14ac6b0ec43a6127d480f1a8a7
BLAKE2b-256 87bfe7a0ba7229cc0eb16cbf0c3eaf06267385d695802174bc4bb849c3fa3c59

See more details on using hashes here.

File details

Details for the file llm_price_tracker-2026.6.121346-py3-none-any.whl.

File metadata

File hashes

Hashes for llm_price_tracker-2026.6.121346-py3-none-any.whl
Algorithm Hash digest
SHA256 6b2c5a6177ce5ce25048fb74dde0abda085a5fd1df57ecbee5a4961e99374f33
MD5 f57b3f85608bfd1ef101d2e9901d7ac1
BLAKE2b-256 5cd844c17b6c09b0f9ad0e942e9606b0b30155e9ea6be2624f63663c0163756e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page