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

# Get Category Types

> Get all types within a specific category with enhanced filtering.



## OpenAPI

````yaml /openapi.json get /api/v2/categories/{category_uuid}/types
openapi: 3.1.0
info:
  title: Legitmark Partner API
  description: Comprehensive partner integration API for Legitmark authentication platform
  version: 2.0.0
  contact:
    name: Legitmark Support
    email: support@legitmark.com
    url: https://legitmark.com
servers:
  - url: https://api.legitmark.com
    description: Production API
security:
  - BearerAuth: []
tags:
  - name: Service Requests
    description: Create, retrieve, and manage authentication service requests.
  - name: Media Management
    description: Upload images for service request authentication.
  - name: Taxonomy
    description: Browse categories, types, brands, models, and services to build requests.
paths:
  /api/v2/categories/{category_uuid}/types:
    get:
      tags:
        - Taxonomy
      summary: Get Category Types
      description: Get all types within a specific category with enhanced filtering.
      parameters:
        - name: category_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: 25ed7133-f230-4d64-850d-0cfc698e2931
      responses:
        '200':
          description: Types retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Types fetched successfully
                  category:
                    type: string
                    enum:
                      - SUCCESS
                    example: SUCCESS
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        uuid:
                          type: string
                          format: uuid
                        name:
                          type: string
                        active:
                          type: boolean
                        sides:
                          type: array
                          items:
                            type: string
                            format: uuid
                        media:
                          type: string
                          nullable: true
                        feature:
                          type: boolean
                        ordinal:
                          type: integer
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                        has_brands:
                          type: boolean
                  total:
                    type: integer
                    description: Total number of types in this category
                required:
                  - message
                  - category
                  - data
              example:
                message: Types fetched successfully
                category: SUCCESS
                total: 12
                data:
                  - uuid: 95e428c2-7c4f-11ef-a623-02595575faeb
                    name: Sneakers
                    active: true
                    sides: []
                    media: >-
                      https://cdn.legitmark.com/types/95e428c2-7c4f-11ef-a623-02595575faeb.png
                    feature: false
                    ordinal: 0
                    created_at: '2024-09-26T19:35:05.000Z'
                    updated_at: '2025-12-04T00:23:36.000Z'
                    has_brands: true
                  - uuid: 95e42aec-7c4f-11ef-a623-02595575faeb
                    name: Boots
                    active: true
                    sides: []
                    media: >-
                      https://cdn.legitmark.com/types/95e42aec-7c4f-11ef-a623-02595575faeb.png
                    feature: false
                    ordinal: 0
                    created_at: '2024-09-26T19:35:05.000Z'
                    updated_at: '2025-12-04T00:23:36.000Z'
                    has_brands: true
      security: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token authentication. Use your API key in the format: Bearer
        leo_xxxxxxxx
      x-default: leo_your_api_key_here

````