Skip to main content
POST
/fetch

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
url
string<uri>
required

The URL of the webpage you want to fetch.

Example:

"https://docs.linkup.so"

extractImages
default:false

Defines whether the API should extract the images from the webpage in its response.

Example:

false

includeRawHtml
default:false

Defines whether the API should include the raw HTML of the webpage in its response.

Example:

false

renderJs
default:false

Defines whether the API should render the JavaScript of the webpage.

Example:

false

Response

Successful response

markdown
string
required

The clean markdown version of the webpage.

Example:

"Get started for free, no credit card required..."

images
object[]

List of images extracted from the webpage.

Example:
rawHtml
string

The raw HTML version of the webpage.

Example:

"<!DOCTYPE html><html lang=\"en\"><head>...</head><body>...</body></html>"