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

# List models from catalog



## OpenAPI

````yaml /api-reference/services_documented/cloud_api.yaml get /cloud/v3/inference/models
openapi: 3.1.0
info:
  title: Gcore OpenAPI – Cloud API
  description: >-
    This OpenAPI is an aggregated OpenAPI specification that unifies all Gcore
    products into a single file. It covers Cloud, CDN, DNS, WAAP, DDoS
    Protection, Object Storage, Streaming, and FastEdge services.
  version: '2026-05-14T07:00:22.640261+00:00'
servers:
  - url: https://api.gcore.com
security:
  - APIKey: []
tags:
  - name: Bare Metal
    x-displayName: Bare Metal
  - name: Container as a Service
    x-displayName: Container as a Service
  - name: Cost Reports
    x-displayName: Cost Reports
  - name: DDoS Protection
    x-displayName: DDoS Protection
  - name: Everywhere Inference
    x-displayName: Everywhere Inference
  - name: Everywhere Inference Apps
    x-displayName: Everywhere Inference Apps
  - name: File Shares
    x-displayName: File Shares
  - name: Floating IPs
    x-displayName: Floating IPs
  - name: Function as a Service
    x-displayName: Function as a Service
  - name: GPU Bare Metal
    x-displayName: GPU Bare Metal
  - name: GPU Virtual
    x-displayName: GPU Virtual
  - name: IP Ranges
    x-displayName: IP Ranges
  - name: Images
    x-displayName: Images
  - name: Instances
    x-displayName: Instances
  - name: Load Balancers
    x-displayName: Load Balancers
  - name: Logging
    x-displayName: Logging
  - name: Managed Kubernetes
    x-displayName: Managed Kubernetes
  - name: Managed PostgreSQL
    x-displayName: Managed PostgreSQL
  - name: Networks
    x-displayName: Networks
  - name: Placement Groups
    x-displayName: Placement Groups
  - name: Projects
    x-displayName: Projects
  - name: Quotas
    x-displayName: Quotas
  - name: Regions
    x-displayName: Regions
  - name: Registry
    x-displayName: Registry
  - name: Reservations
    x-displayName: Reservations
  - name: Reserved IPs
    x-displayName: Reserved IPs
  - name: Routers
    x-displayName: Routers
  - name: SSH Keys
    x-displayName: SSH Keys
  - name: Secrets
    x-displayName: Secrets
  - name: Security Groups
    x-displayName: Security Groups
  - name: Snapshot Schedules
    x-displayName: Snapshot Schedules
  - name: Snapshots
    x-displayName: Snapshots
  - name: Tasks
    x-displayName: Tasks
  - name: User Actions
    x-displayName: User Actions
  - name: User Role Assignments
    x-displayName: User Role Assignments
  - name: Volumes
    x-displayName: Volumes
paths:
  /cloud/v3/inference/models:
    get:
      tags:
        - Everywhere Inference
      summary: List models from catalog
      operationId: MLModelCatalogListHandlerV3.get
      parameters:
        - in: query
          name: limit
          required: false
          description: Optional. Limit the number of returned items
          schema:
            default: 1000
            description: Optional. Limit the number of returned items
            example: 1000
            examples:
              - 1000
            exclusiveMinimum: 0
            maximum: 1000
            title: Limit
            type: integer
        - in: query
          name: offset
          required: false
          description: >-
            Optional. Offset value is used to exclude the first set of records
            from the result
          schema:
            default: 0
            description: >-
              Optional. Offset value is used to exclude the first set of records
              from the result
            example: 0
            examples:
              - 0
            minimum: 0
            title: Offset
            type: integer
        - in: query
          name: order_by
          required: false
          description: Order instances by transmitted fields and directions
          schema:
            $ref: '#/components/schemas/MLCatalogOrderByChoices'
            default: name.asc
            description: Order instances by transmitted fields and directions
            examples:
              - name.desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MLCatalogModelCardListSerializerV3'
components:
  schemas:
    MLCatalogOrderByChoices:
      enum:
        - name.asc
        - name.desc
      title: MLCatalogOrderByChoices
      type: string
    MLCatalogModelCardListSerializerV3:
      properties:
        count:
          description: Number of objects
          example: 1
          examples:
            - 1
          minimum: 0
          title: Count
          type: integer
        results:
          description: Objects
          items:
            $ref: '#/components/schemas/MLCatalogModelCardSerializerV3'
          title: Results
          type: array
      required:
        - count
        - results
      title: MLCatalogModelCardListSerializerV3
      type: object
    MLCatalogModelCardSerializerV3:
      properties:
        category:
          anyOf:
            - type: string
            - type: 'null'
          description: Category of the model.
          examples:
            - Text Classification
          title: Category
        default_flavor_name:
          anyOf:
            - type: string
            - type: 'null'
          description: Default flavor for the model.
          examples:
            - inference-16vcpu-232gib-1xh100-80gb
          title: Default Flavor Name
        description:
          description: Description of the model.
          example: My first model
          examples:
            - My first model
          title: Description
          type: string
        developer:
          anyOf:
            - type: string
            - type: 'null'
          description: Developer of the model.
          examples:
            - Stability AI
          title: Developer
        documentation_page:
          anyOf:
            - type: string
            - type: 'null'
          description: Path to the documentation page.
          examples:
            - /docs
          title: Documentation Page
        eula_url:
          anyOf:
            - type: string
            - type: 'null'
          description: URL to the EULA text.
          examples:
            - https://example.com/eula
          title: Eula Url
        example_curl_request:
          anyOf:
            - type: string
            - type: 'null'
          description: Example curl request to the model.
          examples:
            - 'curl -X POST http://localhost:8080/predict -d ''{"data": "sample"}'''
          title: Example Curl Request
        has_eula:
          description: Whether the model has an EULA.
          example: true
          examples:
            - true
          title: Has Eula
          type: boolean
        id:
          description: Model ID.
          example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
          examples:
            - 3fa85f64-5717-4562-b3fc-2c963f66afa6
          format: uuid
          title: Id
          type: string
        image_registry_id:
          anyOf:
            - type: string
            - type: 'null'
          description: Image registry of the model.
          examples:
            - 123e4567-e89b-12d3-a456-426614174999
          title: Image Registry Id
        image_url:
          description: Image URL of the model.
          example: registry.hub.docker.com/my_model:latest
          examples:
            - registry.hub.docker.com/my_model:latest
          title: Image Url
          type: string
        inference_backend:
          anyOf:
            - type: string
            - type: 'null'
          description: Describing underlying inference engine.
          examples:
            - torch
            - tensorflow
          title: Inference Backend
        inference_frontend:
          anyOf:
            - type: string
            - type: 'null'
          description: Describing model frontend type.
          examples:
            - gradio
            - vllm
            - triton
          title: Inference Frontend
        model_id:
          anyOf:
            - type: string
            - type: 'null'
          description: Model name to perform inference call.
          examples:
            - mistralai/Pixtral-12B-2409
          title: Model Id
        name:
          description: Name of the model.
          example: model1
          examples:
            - model1
          title: Name
          type: string
        openai_compatibility:
          anyOf:
            - type: string
            - type: 'null'
          description: OpenAI compatibility level.
          examples:
            - full
            - partial
            - none
          title: Openai Compatibility
        port:
          description: Port on which the model runs.
          example: 8080
          examples:
            - 8080
          title: Port
          type: integer
        version:
          anyOf:
            - type: string
            - type: 'null'
          description: Version of the model.
          examples:
            - v0.1
          title: Version
      required:
        - id
        - name
        - description
        - image_registry_id
        - image_url
        - port
        - default_flavor_name
        - example_curl_request
        - version
        - developer
        - category
        - has_eula
        - eula_url
        - model_id
        - inference_frontend
        - inference_backend
        - openai_compatibility
        - documentation_page
      title: MLCatalogModelCardSerializerV3
      type: object
  securitySchemes:
    APIKey:
      description: >-
        API key for authentication. Make sure to include the word `apikey`,
        followed by a single space and then your token.

        Example: `apikey 1234$abcdef`
      type: apiKey
      in: header
      name: Authorization

````