# LLM Pricing Tracker

> Free tool #5

Every verified price change on record — dated, sourced, and diffed against the registry’s own history.

## Three ways to use it

**Web** — the interactive page: https://telemeter.ai/tools/pricing-tracker

**MCP** — a `tools/call` on the public MCP server at https://telemeter.ai/mcp (tool name: `pricing-tracker`), read-only, no key required.

**REST** — `POST https://telemeter.ai/api/tools/pricing-tracker` with a JSON body matching the input schema below:

```json
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "model": {
      "type": "string",
      "minLength": 1
    },
    "days": {
      "default": 90,
      "type": "integer",
      "minimum": 1,
      "maximum": 365
    }
  },
  "required": [
    "days"
  ],
  "additionalProperties": false
}
```

[Open the interactive page](https://telemeter.ai/tools/pricing-tracker) · [Every tool and doc, machine-readable](https://telemeter.ai/llms.txt)
