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

# List models

> The priced model catalog routing candidates are drawn from. `pricing.in` and `pricing.out` are the provider cost basis in USD per 1M tokens, before your org markup.


## OpenAPI

```yaml openapi.json get /v1/models
openapi: 3.1.0
info:
  title: Ocean One API
  version: 2.1.0
servers:
  - url: https://api.plungeai.com
paths:
  /v1/models:
    get:
      summary: Model catalog (proxied to inference-gateway) — the priced list routing candidates are drawn from.
      security:
        - skOcean: []
      responses:
        "200":
          description: Priced model catalog
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ModelCatalog"
        "401":
          description: Missing/invalid sk-ocean- key
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Error"
        "503":
          description: money_plane_unavailable — INFERENCE_GATEWAY_SERVICE not bound on this tier
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Error"
components:
  schemas:
    Error:
      type: object
      description: Standard error envelope. Every error response also carries an `X-Error-Code` response header equal to error.code, so a client branches on the header regardless of the negotiated body format (json | yaml | markdown | text). When the request created an execution, the `X-Execution-Id` response header is also set. Errors follow the negotiated format like success bodies.
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
          additionalProperties: true
      required:
        - error
    ModelCatalog:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            type: object
            description: Priced model catalog entry (id, pricing, provider)
      required:
        - object
        - data
  securitySchemes:
    skOcean:
      type: http
      scheme: bearer
      description: sk-ocean- inference key (money plane, forwarded downstream)
```
