DocsDemographics & Contextbrowser_get_demographics

browser_get_demographics

Browser Get Demographics

Get comprehensive user demographics and context based on IP geolocation. Returns location, timezone, weather, date/time, and locale information. Useful for location-aware operations and personalizing interactions.

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_demographics(
)

Response

Returns a JSON object with the operation result.

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