browser_list_templates
Browser List Templates
List all available JSON extraction templates with their names and descriptions. Use to discover which structured data extraction templates are available for browser_extract_json.
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.list_templates(
)
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}