Keymint API Reference
Integrate simple, powerful license management into your software.
✓RESTful API
✓JSON Responses
✓Secure Token Auth
Quick Start: Activate a License
Activate a license key for a specific device using a simple POST request.
curl -X POST https://api.keymint.dev/activate-key \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"productId": "your_product_id_123...",
"licenseKey": "xxxxx-xx...",
"hostId": "unique-device-id-123"
}'
Example Success Response (200 OK):
{
"code": 0,
"message": "License valid",
"licensee_name": "Jane Doe",
"licensee_email": "jane.doe@example.com"
}
Explore API Resources
Manage your software licenses and understand API fundamentals using these key resources.
Licenses
Create, activate and manage software licenses.
API Fundamentals
Authentication, error handling, and usage guidelines.
Ready to Integrate?
Explore the detailed documentation or sign up to get your API token.