DocsLicense Managementbrowser_get_license_info

browser_get_license_info

Browser Get License Info

Get comprehensive license information including licensee name, license key (partially masked), features enabled, usage limits, support expiration, and full license metadata.

Usage Example

1234567891011
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context = await browser.create_context()
context_id = context["context_id"]
await browser.get_license_info(
)

Response

Returns a JSON object with the operation result.

{
  "success": true,
  "result": <value>
}