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

# Active models for App

> Get a list of the Models which are active for a specific App.



## OpenAPI

````yaml GET /v1/models/active
openapi: 3.1.0
info:
  title: Pulze.ai API
  version: 0.1.0
servers: []
security: []
paths:
  /v1/models/active:
    get:
      tags:
        - models
      summary: Get Active Models For App
      description: Get a list of the Models which are active for a specific App.
      operationId: get_active_models_for_app_v1_models_active_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ModelParts'
                type: array
                title: Response Get Active Models For App V1 Models Active Get
      security:
        - HTTPBearer: []
components:
  schemas:
    ModelParts:
      properties:
        model:
          type: string
          title: Model
          description: The name of the model. Can belong to many providers
        provider:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider
          description: The provider for the model.
        owner:
          anyOf:
            - type: string
            - type: 'null'
          title: Owner
          description: >-
            The owner of the model. Sometimes, for a provider/model combination,
            many instances exist, trained on different data
        namespace:
          type: string
          title: Namespace
          description: The fully qualified (namespaced) model name
        at:
          anyOf:
            - type: string
            - type: 'null'
          title: At
          description: Extra model settings inferred from namespace
      type: object
      required:
        - model
        - namespace
      title: ModelParts
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````