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

# List available models for confidential inference

> Get a list of models available for confidential (rvenc) inference

## Confidential catalog

This endpoint returns the models that your API key can use for confidential inference. Use [`GET /openai/models`](/api-reference/zdr-list-models) for the [Zero Data Retention](/zdr/overview) catalog.

```bash theme={"system"}
curl "https://gateway.prem.io/rvenc/models?type=CHAT" \
  -H "Authorization: Bearer $PREM_API_KEY"
```

The `regions` field of each entry shows the confidential regions that give the model.


## OpenAPI

````yaml get /rvenc/models
openapi: 3.1.0
info:
  title: Prem API
  description: Reference documentation for the Prem API.
  version: 1.0.0
  termsOfService: https://prem.io/terms
  contact:
    name: API Support
    url: https://help.prem.io
    email: support@premai.io
servers:
  - url: https://gateway.prem.io
    description: Production API server
security: []
paths:
  /rvenc/models:
    get:
      tags:
        - Models
      summary: List available models for confidential inference
      description: Get a list of models available for confidential (rvenc) inference
      operationId: listRvencModels
      parameters:
        - name: type
          in: query
          description: Filter models by type
          required: false
          schema:
            type: string
            enum:
              - CHAT
              - AUDIO_TRANSCRIPTION
              - AUDIO_SPEECH
              - IMAGE
      responses:
        '200':
          $ref: '#/components/responses/listModelsResponse'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
      security:
        - BearerAuth: []
          ApiKeyAuth: []
components:
  responses:
    '401':
      description: Access token is missing or invalid
      content:
        application/json:
          schema:
            allOf:
              - type: object
                properties:
                  status:
                    type: integer
                    enum:
                      - 400
                      - 401
                      - 403
                      - 404
                      - 429
                      - 502
                      - 503
                    description: Status code of the response
                  data:
                    type:
                      - object
                      - 'null'
                    description: Response data containing the requested object
                  error:
                    type:
                      - string
                      - 'null'
                    examples:
                      - Some error message
                    description: Error message of the response, human readable
                  message:
                    type: 'null'
                  env:
                    type: string
                    enum:
                      - development
                      - production
                    description: API environment
                  log:
                    type:
                      - string
                      - object
                      - 'null'
                    examples:
                      - request_id: req_1234567890
                      - Some pertinent log message
                    description: >-
                      Useful informaiton, not always present, to debug the
                      response
                  validator:
                    type:
                      - object
                      - array
                      - 'null'
                    examples:
                      - email: Invalid email address
                        password: Password is required
                    description: >-
                      Validator response object, each key is the field name and
                      value is the error message
                  support_id:
                    type:
                      - string
                      - 'null'
                    format: uuid
                    examples:
                      - support_uuidv7-something-else
                    description: >-
                      Support ID linked to the response, used to identify it
                      when talking with our team
                required:
                  - status
                  - error
                  - message
                  - env
                  - log
                  - support_id
                additionalProperties: false
              - properties:
                  status:
                    type: integer
                    enum:
                      - 401
    '403':
      description: You do not have the required permissions to access this resource
      content:
        application/json:
          schema:
            allOf:
              - type: object
                properties:
                  status:
                    type: integer
                    enum:
                      - 400
                      - 401
                      - 403
                      - 404
                      - 429
                      - 502
                      - 503
                    description: Status code of the response
                  data:
                    type:
                      - object
                      - 'null'
                    description: Response data containing the requested object
                  error:
                    type:
                      - string
                      - 'null'
                    examples:
                      - Some error message
                    description: Error message of the response, human readable
                  message:
                    type: 'null'
                  env:
                    type: string
                    enum:
                      - development
                      - production
                    description: API environment
                  log:
                    type:
                      - string
                      - object
                      - 'null'
                    examples:
                      - request_id: req_1234567890
                      - Some pertinent log message
                    description: >-
                      Useful informaiton, not always present, to debug the
                      response
                  validator:
                    type:
                      - object
                      - array
                      - 'null'
                    examples:
                      - email: Invalid email address
                        password: Password is required
                    description: >-
                      Validator response object, each key is the field name and
                      value is the error message
                  support_id:
                    type:
                      - string
                      - 'null'
                    format: uuid
                    examples:
                      - support_uuidv7-something-else
                    description: >-
                      Support ID linked to the response, used to identify it
                      when talking with our team
                required:
                  - status
                  - error
                  - message
                  - env
                  - log
                  - support_id
                additionalProperties: false
              - properties:
                  status:
                    type: integer
                    enum:
                      - 403
    listModelsResponse:
      description: Models list retrieved successfully
      content:
        application/json:
          schema:
            allOf:
              - $ref: '#/components/schemas/Response200'
              - $ref: '#/components/schemas/listModelsResponse'
  schemas:
    Response200:
      type: object
      properties:
        status:
          type: integer
          enum:
            - 200
            - 201
            - 202
          description: Status code of the response
        data:
          type:
            - object
            - array
            - 'null'
          description: Response data containing the requested object
        error:
          type:
            - string
            - 'null'
          examples:
            - Invalid email address
          description: Error message of the response, human readable
        message:
          type:
            - string
            - 'null'
          examples:
            - Resource created successfully
          description: Message of the response, human readable
        env:
          type: string
          enum:
            - development
            - production
          description: API environment
        log:
          type:
            - string
            - object
            - 'null'
          examples:
            - request_id: req_1234567890
            - Some pertinent log message
          description: Useful informaiton, not always present, to debug the response
        validator:
          type:
            - object
            - array
            - 'null'
          examples:
            - email: Invalid email address
              password: Password is required
          description: >-
            Validator response object, each key is the field name and value is
            the error message
        support_id:
          type:
            - string
            - 'null'
          format: uuid
          examples:
            - support_uuidv7-something-else
          description: >-
            Support ID linked to the response, used to identify it when talking
            with our team
      required:
        - status
        - data
        - message
        - env
      examples:
        - status: 200
          data:
            id: '123'
          error: null
          log: null
          validator: null
          support_id: null
          message: Resource created successfully
          env: development
    listModelsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/chatsModel'
      required:
        - data
      examples:
        - data:
            - id: 3
              model: openai/gpt-oss-120b
              name: GPT OSS 120B
              description: >-
                A large 120B open-source model offering high-quality, adaptable
                conversational performance.
              type: CHAT
              input_modalities:
                - text
              price_config:
                standard:
                  eu:
                    prompt_price_per_k: 1
                    completion_price_per_k: 4
                    reasoning_price_per_k: 2
                    audio_price_per_min: 0
                  default:
                    prompt_price_per_k: 1
                    completion_price_per_k: 4
                    reasoning_price_per_k: 2
                    audio_price_per_min: 0
                confidential:
                  default:
                    prompt_price_per_k: 1
                    completion_price_per_k: 4
                    reasoning_price_per_k: 2
                    audio_price_per_min: 0
              regions:
                - ch
              requires_auth: 1
              usage_mode: ALL
              visible_in_dashboard: 1
              likes_count: 0
              dislikes_count: 0
              total_reviews: 0
              rating_percent: null
            - id: 4
              model: zai-org/GLM-4.6-FP8
              name: GLM 4.6 358B
              description: >-
                A massive 358B open-source model designed for powerful,
                flexible, and high-fidelity language generation.
              type: CHAT
              input_modalities:
                - text
              price_config:
                standard:
                  eu:
                    prompt_price_per_k: 1
                    completion_price_per_k: 6
                    reasoning_price_per_k: 2
                    audio_price_per_min: 0
                  default:
                    prompt_price_per_k: 1
                    completion_price_per_k: 6
                    reasoning_price_per_k: 2
                    audio_price_per_min: 0
              regions: []
              requires_auth: 1
              usage_mode: API
              visible_in_dashboard: 1
              likes_count: 0
              dislikes_count: 0
              total_reviews: 0
              rating_percent: null
    chatsModel:
      type: object
      properties:
        id:
          type: integer
          description: Model ID
        model:
          type: string
          description: >-
            Unique public model identifier (slug), used for lookup and returned
            at GET /models
        name:
          type: string
          description: Human-readable model name
        description:
          type:
            - string
            - 'null'
          description: Model description
        type:
          type: string
          description: Model type
          enum:
            - CHAT
            - AUDIO_TRANSCRIPTION
            - AUDIO_SPEECH
            - IMAGE
        input_modalities:
          type: array
          description: Input modalities supported by the model
          items:
            type: string
        price_config:
          type:
            - object
            - 'null'
          description: >-
            Pricing nested by inference type then region. Each type maps region
            codes to a rate object, plus a 'default' rate. Rate keys:
            prompt_price_per_k, completion_price_per_k, reasoning_price_per_k,
            audio_price_per_min.
          properties:
            standard:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/chatsModelRate'
            confidential:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/chatsModelRate'
          additionalProperties: false
        regions:
          type: array
          description: >-
            Region codes the model can be served from for confidential (rvenc)
            inference.
          items:
            type: string
        requires_auth:
          type: integer
          description: Whether the model requires authentication (0 or 1)
          minimum: 0
          maximum: 1
        usage_mode:
          type: string
          description: Usage mode defining how the model can be accessed
          enum:
            - CHAT
            - API
            - ALL
          default: ALL
        visible_in_dashboard:
          type: integer
          description: Whether the model is visible in the model pickers
          minimum: 0
          maximum: 1
        likes_count:
          type: integer
          description: Total number of likes across all users
          minimum: 0
        dislikes_count:
          type: integer
          description: Total number of dislikes across all users
          minimum: 0
        total_reviews:
          type: integer
          description: Total number of feedback entries (likes + dislikes) for this model
          minimum: 0
        rating_percent:
          type:
            - number
            - 'null'
          description: >-
            Percentage of likes among total reviews (0-100), null when no
            reviews
          minimum: 0
          maximum: 100
      required:
        - id
        - model
        - name
        - type
        - input_modalities
        - requires_auth
        - usage_mode
        - visible_in_dashboard
        - likes_count
        - dislikes_count
        - total_reviews
      additionalProperties: false
      examples:
        - id: 3
          model: openai/gpt-oss-120b
          name: GPT OSS 120B
          description: >-
            A large 120B open-source model offering high-quality, adaptable
            conversational performance.
          type: CHAT
          input_modalities:
            - text
          price_config:
            standard:
              eu:
                prompt_price_per_k: 1
                completion_price_per_k: 4
                reasoning_price_per_k: 2
                audio_price_per_min: 0
              default:
                prompt_price_per_k: 1
                completion_price_per_k: 4
                reasoning_price_per_k: 2
                audio_price_per_min: 0
            confidential:
              default:
                prompt_price_per_k: 1
                completion_price_per_k: 4
                reasoning_price_per_k: 2
                audio_price_per_min: 0
          regions:
            - ch
          requires_auth: 1
          usage_mode: ALL
          visible_in_dashboard: 1
          likes_count: 0
          dislikes_count: 0
          total_reviews: 0
          rating_percent: null
    chatsModelRate:
      type: object
      description: Per-model pricing rates. All values are USD.
      properties:
        prompt_price_per_k:
          type: number
        completion_price_per_k:
          type: number
        reasoning_price_per_k:
          type: number
        audio_price_per_min:
          type: number
      additionalProperties: false
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Send your access token as header Authorization: Bearer {accessToken}'
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Your API key that starts with sk_live or sk_test. You can create yours
        at go.prem.io/api-keys.

````