POST
/
fetch
curl --request POST \
--url https://api.linkup.so/v1/fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"url": "https://example.com/page",
"outputFormat": "html",
"renderJS": false
}'
"<!DOCTYPE html>\n<html>\n<head>\n<title>Hello World!</title>\n</head>\n<body>\n<h1>I'm a title</h1>\n<p>I'm a paragraph</p>\n</body>\n</html>\n"

Get your API key

Create a Linkup account for free to get your API key.
The /fetch endpoint retrieves the raw HTML or markdown of the webpage at the given URL, with the ability to render the Javascript or not.

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

Successful response

The raw HTML of the webpage.