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

> Retrieve a paginated list of all license keys associated with a store, verified via the `x-store-id` header. Allows filtering by `status`, `product_id`, and `order_id`. Utilizes pagination using `limit` query parameter.



## OpenAPI

````yaml /api-reference/blink-api.json 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:
  - 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:
    get:
      tags:
        - Deliverables
      summary: List License Keys
      description: >-
        Retrieve a paginated list of all license keys associated with a store,
        verified via the `x-store-id` header. Allows filtering by `status`,
        `product_id`, and `order_id`. Utilizes pagination using `limit` query
        parameter.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
          description: Number of keys to retrieve, up to a maximum of 100.
        - name: status
          in: query
          schema:
            type: string
          description: Filter by the status of license keys.
        - name: product_id
          in: query
          schema:
            type: string
          description: Filter by product ID.
        - name: order_id
          in: query
          schema:
            type: string
          description: Filter by order ID.
      responses:
        '200':
          description: License keys retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LicenseKeysList'
        '401':
          description: Unauthorized - Store ID header missing.
      security:
        - storeIdHeader: []
components:
  schemas:
    LicenseKeysList:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
        data:
          type: array
          items:
            $ref: '#/components/schemas/LicenseKeyDetails'
    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

````