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

# List license keys

> Retrieves a list of license keys for the store with optional filtering by status, product ID, or order ID. Supports pagination.

**Usage:** Useful for managing license keys issued to customers, including monitoring their status and usage.



## OpenAPI

````yaml get /license-keys
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:
    get:
      tags:
        - License Keys
      summary: List license keys
      description: >-
        Retrieves a list of license keys for the store with optional filtering
        by status, product ID, or order ID. Supports pagination.


        **Usage:** Useful for managing license keys issued to customers,
        including monitoring their status and usage.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
        - name: status
          in: query
          schema:
            type: string
        - name: product_id
          in: query
          schema:
            type: string
        - name: order_id
          in: query
          schema:
            type: string
      responses:
        '200':
          description: License keys list retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LicenseKeysListResponse'
        '401':
          description: Unauthorized
        '500':
          description: Internal Server Error
components:
  schemas:
    LicenseKeysListResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
        data:
          type: array
          items:
            $ref: '#/components/schemas/LicenseKeyDetail'
    LicenseKeyDetail:
      type: object
      properties:
        id:
          type: string
        store_id:
          type: string
        product_id:
          type: string
        order_id:
          type: string
        customer_id:
          type: string
        key:
          type: string
        activation_limit:
          type: integer
        activations:
          type: integer
        status:
          type: string
        expires_at:
          type: string
          format: date-time
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time

````