Fetch raw license details without triggering validation side effects using GET /api/v1/license/:key.
curl --request GET \
--url https://api.keyport.sbs/api/v1/license/{key} \
--header 'Authorization: Bearer <token>'{
"id": "license_uuid",
"organization_id": "org_uuid",
"product_id": "product_uuid",
"global_customer_id": "customer_uuid",
"license_key": "ABCD-EFGH-IJKL-MNOP",
"status": "active",
"expires_at": null,
"is_lifetime": true,
"ip_system_enabled": true,
"max_ips": 1,
"current_unique_ip_count": 1,
"notes": null,
"version_pin_mode": null,
"version_pinned": null,
"version_range_min": null,
"version_range_max": null,
"revoked_at": null,
"created_at": "2026-04-07T00:00:00.000Z",
"updated_at": "2026-04-07T00:00:00.000Z",
"customer_email": "customer@example.com",
"customer_name": "Example Customer",
"customer_discord_id": null
}POST /api/v1/validate, this endpoint is read-only and has no side effects.
GET https://api.keyport.sbs/api/v1/license/:key
:key with the license key you want to look up (e.g. ABCD-EFGH-IJKL-MNOP).
Authorization: Bearer kp_live_xxxxxxxxxxxxxxxxxxxxxxxxx
Authorization header as the validate endpoint.active, revoked, expired).null for lifetime licenses.true if the license never expires.null if the IP system is disabled.null if none were set.null if the version module is disabled.null if it has not been revoked.curl --request GET \
--url https://api.keyport.sbs/api/v1/license/ABCD-EFGH-IJKL-MNOP \
--header 'Authorization: Bearer kp_live_xxxxxxxxxxxxxxxxxxxxxxxxx'
Use your product API key in the Authorization header.
"ABCD-EFGH-IJKL-MNOP"
License details returned successfully.
"license_uuid"
"org_uuid"
"product_uuid"
"customer_uuid"
"ABCD-EFGH-IJKL-MNOP"
"active"
null
true
true
1
1
null
null
null
null
null
null
"2026-04-07T00:00:00.000Z"
"2026-04-07T00:00:00.000Z"
"customer@example.com"
"Example Customer"
null
curl --request GET \
--url https://api.keyport.sbs/api/v1/license/{key} \
--header 'Authorization: Bearer <token>'{
"id": "license_uuid",
"organization_id": "org_uuid",
"product_id": "product_uuid",
"global_customer_id": "customer_uuid",
"license_key": "ABCD-EFGH-IJKL-MNOP",
"status": "active",
"expires_at": null,
"is_lifetime": true,
"ip_system_enabled": true,
"max_ips": 1,
"current_unique_ip_count": 1,
"notes": null,
"version_pin_mode": null,
"version_pinned": null,
"version_range_min": null,
"version_range_max": null,
"revoked_at": null,
"created_at": "2026-04-07T00:00:00.000Z",
"updated_at": "2026-04-07T00:00:00.000Z",
"customer_email": "customer@example.com",
"customer_name": "Example Customer",
"customer_discord_id": null
}