read
Fetch a web page and return its main content as clean Markdown (headings, links, lists, code preserved; nav/ads/scripts stripped). Also handles plain text, JSON and XML, extracts structured data (format=data), and normalizes any ATS/job-board feed into a unified jobs[] array (format=jobs). Use this whenever you need to read the actual content of a URL. No signup, no API key.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute http(s) URL to read, e.g. https://example.com/post | |
| links | No | Keep hyperlinks as [text](url). Default true. Set false for plainer prose. | |
| format | No | Output format. 'markdown' (default) = clean readable content; 'text' = plain prose, no link markup; 'data' = extract the page's embedded structured data (schema.org JSON-LD, OpenGraph, Twitter card, meta) as JSON; 'jobs' = normalize any ATS/job-board feed (Greenhouse, Lever, Ashby, Workable, SmartRecruiters, Recruitee) or a careers page with JSON-LD JobPosting into a unified jobs[] array (title, url, location, department, employment_type, updated_at, remote) — ideal for job aggregation with no per-provider parsing. | |
| render | No | JS rendering for client-side/SPA pages. 'auto' (default) renders with a headless browser only when the server HTML looks empty; 'js' forces a full browser render; 'off' never renders. The response 'rendered' field says whether a browser was used. | |
| max_chars | No | Optional cap on returned characters (content is truncated if longer). |