outputFormat
parameter controls the format of the scraped content returned in the response.
html
– raw page HTML (default DOM output)text
– plain text version of the pagemarkdown
– converted Markdown output (good for LLMs and readability)json
– not a content format, but a wrapper to return all requested formats in a structured JSON response"html"
or "text"
, the API returns just that content directly as a string.json
, it tells the API to wrap the response in a structured JSON object (even for a single format).json
is not a content type — it controls the response structuremarkdown
or text
inside a JSON response, add json
to the list"json"
explicitly listed