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

# Get Lookup Types

> Retrieves a list of lookup types, optionally filtered by a specific `LutTypeID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/lookupTypes
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/lookupTypes:
    get:
      tags:
        - Lookups
      summary: Get Lookup Types
      description: >-
        Retrieves a list of lookup types, optionally filtered by a specific
        `LutTypeID`.
      operationId: get-lookup-types
      parameters:
        - name: LutTypeID
          in: query
          description: The unique identifier of the lookup type to filter the results.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of lookup types matching the specified criteria.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LookupType'
components:
  schemas:
    LookupType:
      type: object
      description: >-
        Represents the details of a lookup type, including its identifier,
        description, and additional metadata.
      properties:
        LutTypeID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the lookup type.
        LutTypeDescription:
          type: string
          nullable: true
          description: A brief description of the lookup type.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the lookup type was last updated.
        LutTypeCode:
          type: string
          nullable: true
          description: >-
            A unique code associated with the lookup type for identification or
            reference.
        CKey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the lookup type for additional
            identification or reference.
        RequiredLutCodeBit:
          type: boolean
          nullable: true
          description: Indicates whether a lookup code is required for this type.
        LutStatus:
          type: integer
          format: int32
          nullable: true
          description: The status of the lookup type, represented as an integer.
        LinkedLutTypeId:
          type: integer
          format: int32
          nullable: true
          description: The identifier of a related or linked lookup type.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````