---
title: "Get LLM cost price"
method: GET
path: "/v3/openmeter/llm-cost/prices/{priceId}"
tags: ["OpenMeter LLM Cost"]
---

# Get LLM cost price

`GET /v3/openmeter/llm-cost/prices/{priceId}`

**Pre-release Endpoint**
This endpoint is currently in beta and is subject to change.

Get a specific LLM cost price by ID. Returns the price with overrides applied if
any.

## Path parameters

- `priceId` string, required — ULID (Universally Unique Lexicographically Sortable Identifier).

## Response `200`

The request has succeeded.

- LLMCostPrice — An LLM cost price record, representing the cost per token for a specific model from a specific provider.
  - `id` string, required — Unique identifier.
  - `provider` object, required — Provider of the model.
    - `id` string, required — Identifier of the provider, e.g., "openai", "anthropic".
    - `name` string, required — Name of the provider, e.g., "OpenAI", "Anthropic".
  - `model` object, required — The model.
    - `id` string, required — Identifier of the model, e.g., "gpt-4", "claude-3-5-sonnet".
    - `name` string, required — Name of the model, e.g., "GPT-4", "Claude 3.5 Sonnet".
  - `pricing` object, required — Token pricing data.
    - `input_per_token` string, required — Input price per token (USD).
    - `output_per_token` string, required — Output price per token (USD).
    - `cache_read_per_token` string — Cache read price per token (USD).
    - `cache_write_per_token` string — Cache write price per token (USD).
    - `reasoning_per_token` string — Reasoning output price per token (USD).
  - `currency` string, required — Currency code (currently always "USD").
  - `source` 'manual' | 'system', required — Where this price came from.
  - `effective_from` string, date-time, required — When this price becomes effective.
  - `effective_to` string, date-time — When this price expires. Omitted when the price is currently effective.
  - `created_at` string, date-time, required — Creation timestamp.
  - `updated_at` string, date-time, required — Last update timestamp.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

[API](https://skmtc.net/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.net/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/versions/f920f418f552/schema)
