Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Security / Cryptolens Web API
Cryptolens Web API logo

Cryptolens Web API

Agent-ready OpenAPI document · curated by JenticSecuritySecrets ManagementapiKey10 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Activate, block, and extend Cryptolens license keys, and manage the customers and products attached to them.

Use for: I need to activate a Cryptolens license on a new customer machine, Deactivate a license that was activated on a returned laptop, Block a license key after a chargeback was filed against the order, Unblock a license once the support ticket is resolved

Not supported: Does not handle code obfuscation, payment processing, or DRM at the binary level - use for license key issuance, activation, and lifecycle management only.

Jentic publishes the only available OpenAPI specification for Cryptolens Web API, keeping it validated and agent-ready. Cryptolens is a software licensing platform that issues per-customer license keys, activates them on machines, and exposes lifecycle controls like blocking, unblocking, and extending licenses. The catalogued slice covers the key, customer, and product resources with ten endpoints, and authentication is by access token passed as a query string parameter.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Cryptolens Web API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Cryptolens Web API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcryptolens.io%2Fcryptolens" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fcryptolens.io%2Fcryptolens" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Cryptolens Web API.

Activate a Cryptolens license key on a customer machine and return a signed activation payload

Deactivate a license key on a specific machine to free an activation slot when hardware changes

Block a license key immediately after a chargeback or fraudulent purchase

Unblock a previously blocked license once the dispute is resolved

Extend a license expiry by a number of days when a customer renews or pays for an upgrade

Create a new license key for a product with the desired feature flags and validity

Add a customer record and tie it to one or more license keys for support attribution

Use Cases

Patterns agents use Cryptolens Web API for, with concrete tasks.

★ Per-Order License Provisioning

When an order is fulfilled in a payment processor like Stripe, the Cryptolens API issues a fresh license key, attaches it to the customer record, and returns a key string the order email template embeds. The licensing service handles activation enforcement client-side, and the API call slots cleanly into a webhook handler. Integration is small because the licensing flow only depends on the key, customer, and product resources.

Call /key/CreateKey with productId and the customer email to issue a key, then return the key field to the order fulfilment workflow.

Hardware Switch Self-Service

Let customers move their software activation from an old laptop to a new one without a support ticket. The agent calls /key/Deactivate against the old machine fingerprint, then /key/Activate against the new one, returning the signed activation response that the desktop client stores. Because activation count limits are enforced server-side, the customer cannot exceed their entitled seats.

Call /key/Deactivate with the old MachineCode, then /key/Activate with the new MachineCode, and return the signed activation payload.

Chargeback and Fraud Response

When a chargeback is filed, the support team needs to disable access immediately while the dispute is investigated. The Cryptolens API exposes /key/BlockKey for instant revocation and /key/UnblockKey to restore access if the dispute is resolved in the customer's favour. This avoids forcing engineering to manually update license records in a database.

Call /key/BlockKey with the productId and key string when the chargeback webhook fires, and /key/UnblockKey if the dispute is reversed.

AI Agent License Self-Service

An AI agent in a customer success workflow can resolve common licensing tickets like activation, deactivation, and expiry extension without engineering involvement. Through Jentic the agent searches for the right Cryptolens operation, loads its schema, and executes against the access token stored in the vault. The query-string auth is invisible to the agent because Jentic appends it during execution.

Search Jentic for 'activate a Cryptolens license', load the /key/Activate operation, and execute it with productId, key, and MachineCode supplied by the customer.

Key Endpoints

10 endpoints — jentic publishes the only available openapi specification for cryptolens web api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/key/Activate

Activate a license key on a machine

POST

/key/Deactivate

Deactivate a license key on a machine

POST

/key/BlockKey

Block a license key

POST

/key/UnblockKey

Unblock a previously blocked key

POST

/key/ExtendLicense

Extend the expiry date of a license

POST

/key/CreateKey

Create a new license key

POST

/key/GetKey

Retrieve a license key and its status

POST

/customer/AddCustomer

Create a customer record

POST

/key/Activate

Activate a license key on a machine

POST

/key/Deactivate

Deactivate a license key on a machine

POST

/key/BlockKey

Block a license key

POST

/key/UnblockKey

Unblock a previously blocked key

POST

/key/ExtendLicense

Extend the expiry date of a license

POST

/key/CreateKey

Create a new license key

POST

/key/GetKey

Retrieve a license key and its status

POST

/customer/AddCustomer

Create a customer record

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Cryptolens Web API by hand means threading its access token into the token query parameter on every call, targeting the api.cryptolens.io/api host, and handling retries yourself across license operations. Through Jentic you install once, import the Cryptolens Web API from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

Cryptolens takes the license key in the request body rather than the URL path, so limit the agent to the operations it needs, such as activating a key or reading a key. You choose which operations are in scope, so destructive ones like blocking a key or deactivating a license are not included unless you add them.

Credential management

Credential isolation

Your Cryptolens access token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'activate a software license' or 'create a license key', and Jentic returns the matching Cryptolens operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Cryptlex Web API

→

Software licensing platform with bearer JWT auth and richer policy controls

Choose Cryptlex when the workload needs floating or consumption-based licenses and a larger surface area of activation analytics.

Complementary

Stripe API

Subscription billing and payment processing

Use Stripe alongside Cryptolens when subscription state in Stripe should drive license validity in Cryptolens via webhooks.

Complementary

Paddle API

→

Merchant of record for SaaS and software sales with built-in tax handling

Use Paddle when the seller wants tax compliance handled and Cryptolens to manage the resulting license keys.

FAQs

Specific to using Cryptolens Web API through Jentic.

Why is there no official OpenAPI spec for Cryptolens Web API?

Cryptolens does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Cryptolens Web API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Cryptolens Web API use?

Cryptolens uses an access token supplied as the query string parameter named token. Tokens are issued from the Cryptolens dashboard. Through Jentic the token is stored in the vault and appended at execution time so it never appears in the agent context.

Can I extend a license expiry through the Cryptolens Web API?

Yes. Call /key/ExtendLicense with the productId, key, and the number of days to add. The API returns the updated license expiry date, which the client app verifies on next activation.

What are the rate limits for the Cryptolens Web API?

Cryptolens does not publish a hard request rate limit; activation throughput is governed by the plan's monthly activation quota. Inspect the dashboard for plan-level limits before bulk operations.

How do I activate a license through Jentic?

Search Jentic for 'activate a Cryptolens license' and execute the loaded operation against /key/Activate with productId, key, and the MachineCode produced by the desktop client. Jentic injects the token query parameter from the vault.

Is the Cryptolens Web API free?

Cryptolens has a free tier and paid plans that scale with active licenses. The Web API is included in every plan; pricing is published at https://cryptolens.io/pricing.

How do I block a license after a refund?

Call /key/BlockKey with the productId and key when the refund webhook fires. The next call to /key/Activate from the client returns a blocked status, which the desktop app uses to disable access.

Can I limit what my agent is allowed to do with the Cryptolens Web API?

Yes. Jentic One is self-hosted by you, so your own rules decide which Cryptolens operations and credentials the agent may use. You can grant only the endpoints the workflow needs, such as /key/Activate to activate a key or /key/GetKey to read one, while leaving destructive operations like /key/BlockKey and /key/Deactivate out of scope. Because Cryptolens takes the license key in the request body rather than the URL path, scoping is done at the operation level, and the access token stays with your instance and is injected only for the operations you allow.

GET STARTED

Start building with Cryptolens Web API

Explore with Jentic One
View OpenAPI Document