> ## 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 Value by Lookup ID

> Retrieves a specific lookup value identified by `LutID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/lookups/values/{LutID}
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/lookups/values/{LutID}:
    get:
      tags:
        - Lookups
      summary: Get Lookup Value by Lookup ID
      description: Retrieves a specific lookup value identified by `LutID`.
      operationId: get-lookup-value-by-lutid
      parameters:
        - name: LutID
          in: path
          required: true
          description: The unique identifier of the lookup value to be retrieved.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: The lookup value associated with the specified lookup ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Lookup'
components:
  schemas:
    Lookup:
      type: object
      description: >-
        Represents a lookup value, including its identifiers, associated types,
        and additional metadata.
      properties:
        LutTypeRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference to the lookup type, typically used for informational
            purposes.
        LutID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the lookup value.
        LutTypeID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the lookup type associated with this value.
        LutValue:
          type: string
          nullable: true
          description: The actual value of the lookup item.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the lookup value was last updated.
        OrderKey:
          type: integer
          format: int32
          nullable: true
          description: The order or priority key associated with the lookup value.
        LutCode:
          type: integer
          format: int32
          nullable: true
          description: >-
            A code associated with the lookup value, typically used for
            categorization or identification.
        Ckey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the lookup value for additional
            identification or reference.
        ServiceLutId:
          type: integer
          format: int32
          nullable: true
          description: The service-related identifier associated with the lookup value.
        CreatedDT:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the lookup value was created.
        CreatedBT:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user or system that created the lookup value.
        UpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: >-
            The identifier of the user or system that last updated the lookup
            value.
        LinkedLutId:
          type: integer
          format: int32
          nullable: true
          description: The identifier of a related or linked lookup value.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````