> ## Documentation Index
> Fetch the complete documentation index at: https://narev.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# LiteLLM-compatible pricing map

> Full LiteLLM-format model cost map with narev's own pricing kept current for every model narev prices. Point LiteLLM's LITELLM_MODEL_COST_MAP_URL at this endpoint as a drop-in replacement to keep its cost map up to date.



## OpenAPI

````yaml platform/api-reference/openapi.json GET /v1/model_prices_and_context_window.json
openapi: 3.0.0
info:
  title: Models Pricing API
  version: 1.0.0
servers:
  - url: https://api.narev.ai
security: []
paths:
  /v1/model_prices_and_context_window.json:
    get:
      tags:
        - Models
      summary: LiteLLM-compatible pricing map
      description: >-
        Full LiteLLM-format model cost map with narev's own pricing kept current
        for every model narev prices. Point LiteLLM's LITELLM_MODEL_COST_MAP_URL
        at this endpoint as a drop-in replacement to keep its cost map up to
        date.
      responses:
        '200':
          description: Merged LiteLLM cost map.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LiteLLMPricingMapResponse'
components:
  schemas:
    LiteLLMPricingMapResponse:
      type: object
      additionalProperties:
        type: object
        additionalProperties:
          nullable: true
      description: >-
        LiteLLM-format model cost map keyed by model id (e.g. "openai/gpt-4o",
        "gemini/gemini-2.0-flash", or a bare id like "claude-opus-4-8" for
        direct-API providers).

````