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

# Validate license

> Developer API operation for POST /dev/v1/licenses/validate.



## OpenAPI

````yaml /openapi.json post /dev/v1/licenses/validate
openapi: 3.0.3
info:
  title: Shoppex Developer API
  description: Mintlify-compatible Developer API reference for Shoppex.
  version: 1.0.0
  contact:
    name: Shoppex Support
    email: support@shoppex.io
    url: https://shoppex.io
servers:
  - url: https://api.shoppex.io
security:
  - bearerAuth: []
paths:
  /dev/v1/licenses/validate:
    post:
      tags:
        - Licenses
      summary: Validate license
      description: Developer API operation for POST /dev/v1/licenses/validate.
      operationId: postDevV1LicensesValidate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
              example:
                key: ABC-123
                product_id: prod_1
                hardware_id: HWID-1
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    additionalProperties: true
                example:
                  data:
                    id: '1'
                    uniqid: lic_1
                    shop_id: shop_1
                    product_id: prod_1
                    invoice_id: inv_1
                    license_key: ABC-123
                    hardware_id: HWID-1
                    uses: 2
                    expires_at: '2030-01-01T00:00:00.000Z'
                    created_at: '2026-01-01T00:00:00.000Z'
                    updated_at: '2026-01-02T00:00:00.000Z'
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Use your Shoppex API key in the Authorization header.

````