v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
OpenMeter LLM Cost

Create LLM cost override

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

Create a per-namespace price override.

post/v3/openmeter/llm-cost/overrides

Request body

providerstring required

Provider/vendor of the model.

model_idstring required

Canonical model identifier.

model_namestring

Human-readable model name.

currencystring required

Currency code.

effective_fromstring date-time required

When this override becomes effective.

effective_tostring date-time

When this override expires.

Example request

{
  "currency": "USD",
  "effective_from": "2023-01-01T01:01:01.001Z",
  "effective_to": "2023-01-01T01:01:01.001Z"
}

Response

Price created response.

idstring required

Unique identifier.

currencystring required

Currency code (currently always "USD").

source'manual' | 'system' required

Where this price came from.

effective_fromstring date-time required

When this price becomes effective.

effective_tostring date-time

When this price expires. Omitted when the price is currently effective.

created_atstring date-time required

Creation timestamp.

updated_atstring date-time required

Last update timestamp.

Example response

{
  "id": "01G65Z755AFWAKHE12NY0CQ9FH",
  "currency": "USD",
  "effective_from": "2023-01-01T01:01:01.001Z",
  "effective_to": "2023-01-01T01:01:01.001Z",
  "created_at": "2023-01-01T01:01:01.001Z",
  "updated_at": "2023-01-01T01:01:01.001Z"
}