---
title: "Scrape webpage content"
method: POST
path: "/v1/scrape"
tags: ["Browser Tools"]
---

# Scrape webpage content

`POST /v1/scrape`

Extracts content from a specified URL.

## Request body

- ScrapeRequest
  - `delay` number — Delay before scraping (in milliseconds)
  - `format` string[] — Desired format(s) for the scraped content. Default is `html`.
  - `pdf` boolean — Include a PDF in the response
  - `projectId` string, uuid — Project to execute the scrape in.
  - `region` unknown
  - `screenshot` boolean — Include a screenshot in the response
  - `url` string, required — URL of the webpage to scrape
  - `useProxy` boolean — Use a Steel-provided residential proxy for the scrape

## Response `200`

Response from a successful scrape request

- ScrapeResponse — Response from a successful scrape request
  - `content` object, required
    - `cleaned_html` string — Cleaned HTML content of the webpage
    - `html` string — Raw HTML content of the webpage
    - `markdown` string — Webpage content converted to Markdown
    - `readability` object — Webpage content in Readability format
  - `links` object[], required
    - `text` string, required — Text content of the link
    - `url` string, required — URL of the link
  - `metadata` object, required
    - `articleAuthor` string — Author of the article content
    - `author` string — Author of the webpage content
    - `canonical` string — Canonical URL of the webpage
    - `description` string — Description of the webpage
    - `favicon` string — Favicon URL of the website
    - `jsonLd` unknown
    - `keywords` string — Keywords associated with the webpage
    - `language` string — Detected language of the webpage
    - `modifiedTime` string — Last modification time of the content
    - `ogDescription` string — Open Graph description
    - `ogImage` string — Open Graph image URL
    - `ogSiteName` string — Open Graph site name
    - `ogTitle` string — Open Graph title
    - `ogUrl` string — Open Graph URL
    - `publishedTime` string — Publication time of the content
    - `statusCode` integer, required — HTTP status code of the response
    - `timestamp` string, date-time — Timestamp when the scrape was performed
    - `title` string — Title of the webpage
    - `urlSource` string — Source URL of the scraped page
  - `pdf` object
    - `url` string, required — URL of the generated PDF
  - `screenshot` object
    - `url` string, required — URL of the screenshot image

## Other responses

- `503` — An error response from the API

---

[API](https://skmtc.net/steel-dev/apis/steel-api.md) · [All operations](https://skmtc.net/steel-dev/apis/steel-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/steel-dev/steel-api/versions/2248d956188a/schema)
