Public REST APIGet license token public keyGet the public key JWK of a product for verifying license tokens. This endpoint is only available if the product supports license tokens and exposes its public key. GET/api/v1/public/products/{productId}/license-token/public-keySendPath ParametersproductIdRequiredstringThe product ID.cURLJavaScriptGoPythoncurl -X GET "https://keyforge.dev/api/v1/public/products/p_123456/license-token/public-key"200404Success. The public key JWK is returned.Response{ "jwk": { "kty": "EC", "x": "...", "y": "...", "crv": "P-256", "alg": "ES256" } }TypeScriptGet license token POSTGet a new signed token for a license. License tokens need to be configured for the product to use this endpoint.