For Agents
Render any URL to HTML, screenshot, or PDF, scrape structured data, run performance audits, and unblock bot-protected pages — all over a managed Chrome fleet. Useful for content extraction, document generation, and web-research agents.
Get started with Browserless REST API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"render a webpage to PDF"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Browserless REST API API.
Render a URL to fully resolved HTML after JavaScript execution via /content
Extract structured data using a CSS selector schema in a single /scrape call
Generate full-page or viewport screenshots in PNG or JPEG via /screenshot
Convert any URL to a print-quality PDF with custom paper size and margins via /pdf
GET STARTED
Use for: I need to render a URL to HTML after JavaScript has executed, Take a full-page screenshot of a webpage, Generate a PDF of a customer invoice page, Scrape product details from a product listing page
Not supported: Does not handle long-lived Playwright sessions, captcha solving, or proxy rental — use for one-shot REST browser actions like content, scrape, screenshot, PDF, search, unblock, and performance only.
Jentic publishes the only available OpenAPI document for Browserless REST API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Browserless REST API, keeping it validated and agent-ready. Browserless provides managed headless Chrome as a service, with a small set of opinionated REST endpoints that handle the most common browser-automation use cases without requiring a Playwright or Puppeteer client. The v2 API exposes /scrape for structured extraction, /content for raw rendered HTML, /screenshot and /pdf for visual outputs, /search for grounded web search, /unblock for bypassing common bot detections, and /performance for Lighthouse-style audits.
Run a grounded web search and get rendered, parsed results via /search
Bypass common bot-detection layers on protected pages via /unblock
Run Lighthouse-style performance audits and return the JSON report via /performance
Patterns agents use Browserless REST API API for, with concrete tasks.
★ On-Demand HTML to PDF Conversion
Document platforms convert web pages to PDF for invoicing, contracts, and report archives by sending the source URL to /pdf with paper size and header configuration. Browserless renders the page in a real Chromium instance so JavaScript-driven layouts come out correctly, and the response is the binary PDF. Typical conversion times are under 3 seconds for simple pages.
POST /pdf with the invoice URL and paper format A4 to receive the PDF binary in the response body
Structured Web Scraping
Data teams use /scrape with a JSON schema describing CSS selectors and fields they want extracted. Browserless renders the page, applies the selectors, and returns structured JSON ready to ingest into a warehouse. This replaces in-house Puppeteer code and DOM parsing for the long tail of one-off scrape jobs that don't justify a dedicated robot.
POST /scrape with the target URL and an elements schema specifying selectors for product name, price, and availability
Page Performance Auditing in CI
Front-end teams run /performance on every preview deploy to catch regressions in Largest Contentful Paint, Cumulative Layout Shift, and Total Blocking Time. The endpoint returns the full Lighthouse JSON which the CI job parses and compares against a baseline. This is a managed alternative to running Lighthouse CI containers in your own pipeline.
POST /performance with the preview deploy URL and parse the returned categories.performance.score field, failing the build if it drops below 0.85
AI Web-Research Agent Through Jentic
An AI research agent uses Jentic to fetch and parse pages without holding the Browserless token. It searches for 'render a webpage and extract structured data', loads the /scrape schema, and executes the call. Combined with /search and /unblock, the agent can run a full grounded research loop — search, fetch, parse — entirely through Browserless's managed browsers.
Use Jentic to search 'render a webpage and extract structured data', load the browserless.io /scrape operation, and execute it for the research target URL
7 endpoints — jentic publishes the only available openapi specification for browserless rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/content
Render a URL to resolved HTML
/scrape
Extract structured data using a selector schema
/screenshot
Capture a screenshot of a URL
Render a URL to PDF
/search
Run a grounded web search
/unblock
Bypass bot-detection layers on a target URL
/performance
Run a Lighthouse-style performance audit
/content
Render a URL to resolved HTML
/scrape
Extract structured data using a selector schema
/screenshot
Capture a screenshot of a URL
Render a URL to PDF
/search
Run a grounded web search
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Browserless token is stored encrypted in the Jentic vault. Agents receive scoped execution tokens; the raw token never enters prompts or logs.
Intent-based discovery
Agents search by intent such as 'render a webpage to PDF' or 'extract structured data from a webpage' and Jentic returns the matching Browserless operation with its parameter schema, so the agent can call it without browsing the Browserless docs.
Time to first call
Direct Browserless integration: a few hours per endpoint to model request and response. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
BrowserCat
Managed Chromium accessible over websocket for Playwright and Puppeteer
Choose BrowserCat when you want raw browser access via your own Playwright scripts rather than Browserless's opinionated REST endpoints
ZenRows
Scraping-focused headless browser API with built-in proxy rotation
Choose ZenRows when scraping anti-bot protected sites at scale is the priority and you need rotating residential proxies
Browse AI
No-code scraping robots trained in a UI
Use Browse AI for repeatable trained scrapes and Browserless for ad-hoc rendering and document conversion
Specific to using Browserless REST API API through Jentic.
Why is there no official OpenAPI spec for Browserless REST API?
Browserless does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Browserless REST API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Browserless REST API use?
Browserless uses a token passed as a query parameter (`tokenAuth`); the same token works against /content, /scrape, /screenshot, /pdf, /search, /unblock, and /performance. Through Jentic, the token is stored encrypted in the MAXsystem vault and the agent receives a scoped execution token instead of the raw value.
Can I generate a PDF of any web page with Browserless?
Yes. POST /pdf accepts a URL plus PDF options like format, margin, landscape, and printBackground, and returns the binary PDF in the response body. You can also pass HTML directly when you don't have a hosted page to point at.
How do I scrape structured data through Jentic?
Search Jentic for 'extract structured data from a webpage', load the browserless.io /scrape schema, and pass the URL plus an elements array describing the CSS selectors and fields you want. The response is structured JSON ready to ingest.
What are the rate limits for Browserless?
The OpenAPI spec does not declare explicit rate limits. Browserless instead limits concurrent sessions per plan; check your plan's concurrency cap before launching large parallel jobs and use /performance for one-off audits rather than tight loops.
Does /unblock guarantee bypassing every bot challenge?
No. /unblock handles common bot-detection layers and challenges, but determined anti-bot vendors evolve continuously. For known-difficult targets, expect to iterate or fall back to a paid scraping API with proxy rotation.
/unblock
Bypass bot-detection layers on a target URL
/performance
Run a Lighthouse-style performance audit