Skip to main content
POST
Fetch a page and get the article body back as Markdown, with the boilerplate stripped out. Useful when you want to run your own processing over a page before sending anything to the other APIs. By default you also get the title, author, published date, and description. Pass a prompt to extract something specific instead.

Request Body

string
required
URL to crawl.
string
Custom extraction instruction. When provided, the response returns plain text matching your instruction and the metadata fields come back as null.

Response

string
The URL that was crawled.
string
Page title. null when prompt was provided.
string
The extracted content. Markdown by default, or plain text matching your instruction when prompt was provided.
string
Published date in ISO 8601. null when prompt was provided, or when the page has no date.
string
Author. null when prompt was provided, or when the page has no author.
string
Page description. null when prompt was provided.
string
When the page was fetched, in ISO 8601.

Extracting one section

Use prompt when you only want part of the page. The metadata fields come back null and markdown holds plain text.