> ## Documentation Index
> Fetch the complete documentation index at: https://gomodel-docs-benchmark-writeup-and-tooling.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List model pricing overrides

> Lists persisted USD pricing overrides. Selectors support global "/", provider-wide "provider/", model-wide "model", and exact "provider/model" scopes.



## OpenAPI

````yaml /openapi.json get /admin/model-pricing-overrides
openapi: 3.0.0
info:
  description: >-
    AI gateway routing requests to multiple LLM providers (OpenAI, Anthropic,
    Gemini, Groq, OpenRouter, DeepSeek, Z.ai, xAI, MiniMax, Xiaomi MiMo,
    OpenCode Go, Oracle, Ollama, Bailian). Drop-in OpenAI-compatible API.
  title: GoModel API
  contact: {}
  version: '1.0'
servers:
  - url: '{base_url}'
    description: Edit the base URL to point at your GoModel deployment.
    variables:
      base_url:
        default: http://localhost:8080
        description: Your GoModel deployment URL
security: []
paths:
  /admin/model-pricing-overrides:
    get:
      tags:
        - admin
      summary: List model pricing overrides
      description: >-
        Lists persisted USD pricing overrides. Selectors support global "/",
        provider-wide "provider/", model-wide "model", and exact
        "provider/model" scopes.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/pricingoverrides.View'
                maxItems: 10000
                description: Bounded by maxItems=10000.
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.GatewayError'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.GatewayError'
      security:
        - BearerAuth: []
components:
  schemas:
    pricingoverrides.View:
      type: object
      properties:
        created_at:
          type: string
        model:
          type: string
        pricing:
          $ref: '#/components/schemas/pricingoverrides.Pricing'
        provider_name:
          type: string
        scope_kind:
          $ref: '#/components/schemas/pricingoverrides.ScopeKind'
        selector:
          type: string
        updated_at:
          type: string
    core.GatewayError:
      type: object
      properties:
        code:
          type: string
          nullable: true
        message:
          type: string
        param:
          type: string
          nullable: true
        provider:
          type: string
        status_code:
          type: integer
        type:
          $ref: '#/components/schemas/core.ErrorType'
    pricingoverrides.Pricing:
      type: object
      properties:
        audio_input_per_mtok:
          type: number
        audio_output_per_mtok:
          type: number
        batch_input_per_mtok:
          type: number
        batch_output_per_mtok:
          type: number
        cache_write_per_mtok:
          type: number
        cached_input_per_mtok:
          type: number
        input_per_image:
          type: number
        input_per_mtok:
          type: number
        output_per_mtok:
          type: number
        per_character_input:
          type: number
        per_image:
          type: number
        per_page:
          type: number
        per_request:
          type: number
        per_second_input:
          type: number
        per_second_output:
          type: number
        reasoning_output_per_mtok:
          type: number
        tiers:
          type: array
          items:
            $ref: '#/components/schemas/pricingoverrides.PricingTier'
      minProperties: 1
    pricingoverrides.ScopeKind:
      type: string
      enum:
        - global
        - model
        - provider
        - provider_model
      x-enum-varnames:
        - PricingScopeGlobal
        - PricingScopeModel
        - PricingScopeProvider
        - PricingScopeProviderModel
    core.ErrorType:
      type: string
      enum:
        - provider_error
        - rate_limit_error
        - invalid_request_error
        - authentication_error
        - not_found_error
      x-enum-varnames:
        - ErrorTypeProvider
        - ErrorTypeRateLimit
        - ErrorTypeInvalidRequest
        - ErrorTypeAuthentication
        - ErrorTypeNotFound
    pricingoverrides.PricingTier:
      type: object
      properties:
        input_per_mtok:
          type: number
        output_per_mtok:
          type: number
        up_to_mtok:
          type: number
        up_to_tokens:
          type: integer
          minimum: 1
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````