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

> This endpoint fetches detailed information about a specific license key using the provided `id` path parameter. The request requires verification via the `x-store-id` header to ensure that the key is associated with the correct store. It returns detailed information including the key status, product details, customer information, and associated order data.



## OpenAPI

````yaml /api-reference/blink-api.json 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:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /license-keys/{id}:
    get:
      tags:
        - Deliverables
      summary: Retrieve License Key Details
      description: >-
        This endpoint fetches detailed information about a specific license key
        using the provided `id` path parameter. The request requires
        verification via the `x-store-id` header to ensure that the key is
        associated with the correct store. It returns detailed information
        including the key status, product details, customer information, and
        associated order data.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: ID of the license key.
      responses:
        '200':
          description: License key details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LicenseKeyDetails'
        '401':
          description: Unauthorized - Store ID header missing.
        '404':
          description: License key not found.
      security:
        - storeIdHeader: []
components:
  schemas:
    LicenseKeyDetails:
      type: object
      properties:
        id:
          type: string
        store_id:
          type: string
        key:
          type: string
        status:
          type: string
        activations:
          type: integer
        activation_limit:
          type: integer
        expires_at:
          type: string
          format: date-time
        created_at:
          type: string
          format: date-time
        updated_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
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````