Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Developer Tools / Browserless REST API
Browserless REST API logo

Browserless REST API

★ Only Publicly Available OpenAPI DocumentDeveloper ToolsTesting QaapiKey7 EndpointsREST

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.

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 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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Browserless REST API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Browserless REST API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Browserless REST 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

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

Use Cases

Patterns agents use Browserless REST 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

Key Endpoints

7 endpoints — jentic publishes the only available openapi specification for browserless rest api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/content

Render a URL to resolved HTML

POST

/scrape

Extract structured data using a selector schema

POST

/screenshot

Capture a screenshot of a URL

POST

/pdf

Render a URL to PDF

POST

/search

Run a grounded web search

POST

/unblock

Bypass bot-detection layers on a target URL

POST

/performance

Run a Lighthouse-style performance audit

POST

/content

Render a URL to resolved HTML

POST

/scrape

Extract structured data using a selector schema

POST

/screenshot

Capture a screenshot of a URL

POST

/pdf

Render a URL to PDF

POST

/search

Run a grounded web search

POST

/unblock

Bypass bot-detection layers on a target URL

POST

/performance

Run a Lighthouse-style performance audit

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

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

Alternative

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

Complementary

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

FAQs

Specific to using Browserless REST 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.

GET STARTED

Start building with Browserless REST API

Explore with Jentic
View OpenAPI Document