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

# Retrieve license key details

> Fetch complete details of a license key using its ID, including status, activations, product, and customer information. Requires `x-store-id` for authentication and confirmation of ownership.



## OpenAPI

````yaml get /license-keys/{id}
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /license-keys/{id}:
    get:
      tags:
        - License Keys
      summary: Retrieve license key details
      description: >-
        Fetch complete details of a license key using its ID, including status,
        activations, product, and customer information. Requires `x-store-id`
        for authentication and confirmation of ownership.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: License key details retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LicenseKeyDetailResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    LicenseKeyDetailResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            key:
              type: string
            status:
              type: string
            activations:
              type: integer
            activation_limit:
              type: integer
            expires_at:
              type: string
              format: date-time
            product:
              type: object
              properties:
                id:
                  type: string
                name:
                  type: string
            customer:
              type: object
              properties:
                id:
                  type: string
                name:
                  type: string
                email:
                  type: string
            order:
              type: object
              properties:
                id:
                  type: string
                amount:
                  type: number
                created_at:
                  type: string
                  format: date-time

````