> ## 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 Type

> Retrieve details for a specific type with associated brands and enhanced data.



## OpenAPI

````yaml /openapi.json get /api/v2/types/{type_uuid}
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/types/{type_uuid}:
    get:
      tags:
        - Taxonomy
      summary: Get Type
      description: >-
        Retrieve details for a specific type with associated brands and enhanced
        data.
      parameters:
        - name: type_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: 95e42d6b-7c4f-11ef-a623-02595575faeb
      responses:
        '200':
          description: Type retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Type fetched successfully
                  category:
                    type: string
                    enum:
                      - SUCCESS
                    example: SUCCESS
                  data:
                    type: object
                    properties:
                      uuid:
                        type: string
                        format: uuid
                      name:
                        type: string
                      active:
                        type: boolean
                      sides:
                        type: array
                        items:
                          type: string
                      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
                      side_details:
                        type: array
                        items: {}
                      brands:
                        type: array
                        items:
                          type: object
                          properties:
                            uuid:
                              type: string
                              format: uuid
                            name:
                              type: string
                            media:
                              type: string
                              nullable: true
                            active:
                              type: boolean
                  rc_hit:
                    type: boolean
                    description: Indicates if the response was served from cache
                    example: true
                required:
                  - message
                  - category
                  - data
              example:
                message: Type fetched successfully
                category: SUCCESS
                data:
                  uuid: 95e42d6b-7c4f-11ef-a623-02595575faeb
                  name: Crossbody
                  active: true
                  sides: []
                  media: >-
                    https://cdn.legitmark.com/types/95e42d6b-7c4f-11ef-a623-02595575faeb.png
                  feature: false
                  ordinal: 0
                  created_at: '2024-09-26T20:43:23.000Z'
                  updated_at: '2026-01-15T03:48:34.000Z'
                  side_details: []
                  brands:
                    - uuid: 9dd17453-353a-4dc1-9bdc-c08cca38942a
                      name: Alexander McQueen
                      media: https://cdn.legitmark.com/brands/alexander_mcqueen.png
                      active: true
                    - uuid: 6fce28f2-b59d-11ef-b98d-06fb0f2a63e5
                      name: Brunello Cucinelli
                      media: https://cdn.legitmark.com/brands/brunello_cucinelli.png
                      active: true
                rc_hit: true
        '404':
          description: Type not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: integer
            timestamp:
              type: string
              format: date-time
            message:
              type: string
            details:
              type: string
  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

````