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

# List Models

> List unified models enabled for the caller's organization. Use the returned `slug` as the `model` field when creating custom fields or mappings.



## OpenAPI

````yaml get /api/v1/lookup/models
openapi: 3.1.0
info:
  title: Bindbee APIs
  version: 0.1.0
servers:
  - url: https://api.bindbee.dev
  - url: https://api-eu.bindbee.dev
security: []
paths:
  /api/v1/lookup/models:
    get:
      tags:
        - Lookup
      summary: List Models
      description: >-
        List unified models enabled for the caller's organization. Use `slug` as
        `model` when creating custom fields or mappings.
      operationId: list_models_api_v1_lookup_models_get
      parameters:
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/Category'
              - type: 'null'
            description: Filter to models in this category.
            examples:
              - HRIS
            title: Category
          description: Filter to models in this category.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    Category:
      type: string
      enum:
        - HRIS
        - ATS
        - LMS
      title: Category
    ModelListResponse:
      properties:
        models:
          items:
            $ref: '#/components/schemas/ModelListItem'
          type: array
          title: Models
      type: object
      required:
        - models
      title: ModelListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ModelListItem:
      properties:
        slug:
          type: string
          title: Slug
          description: >-
            Stable identifier for the model. Use this as `model` when creating
            custom fields or mappings.
          examples:
            - employee
        display_name:
          type: string
          title: Display Name
          description: Human-readable name of the model.
          examples:
            - Employee
        category:
          $ref: '#/components/schemas/Category'
          description: Category this model belongs to.
          examples:
            - HRIS
      type: object
      required:
        - slug
        - display_name
        - category
      title: ModelListItem
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````