Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.discovr.media/llms.txt

Use this file to discover all available pages before exploring further.

true if a profile has been selected and a session JWT is held (ready to call API methods).

Returns

boolean / Bool — true if a profile is active and session is ready.

Example

if (client.hasActiveProfile()) {
  const page = await client.createPage();
} else {
  console.log("Select a profile first");
}