Get your API key
/fetch endpoint retrieves a markdown representation of a webpage at the given URL, with the ability to render the Javascript or not.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
The URL of the webpage you want to fetch.
"https://docs.linkup.so"
Defines whether the API should render the JavaScript of the webpage.
false
Defines whether the API should include the raw HTML of the webpage in its response.
false
Defines whether the API should extract the images from the webpage in its response.
false
Response
Successful response
The clean markdown version of the webpage.
"Get started for free, no credit card required..."
The raw HTML version of the webpage.
"<!DOCTYPE html><html lang=\"en\"><head>...</head><body>...</body></html>"
List of images extracted from the webpage.
[
{
"alt": "Image 1",
"url": "https://example.com/image.jpg"
},
{
"alt": "Image 2",
"url": "https://example.com/image2.jpg"
}
]