Claw API
Claw API is a fast, reliable REST API that lets you extract structured content from any public web page — no browser automation or complex setup required. Send a URL and get back exactly what you need: * HTML – Full raw HTML of the page, ready for parsing with your preferred library. * Text – Visible text content only, stripped of all HTML tags. Ideal for NLP or content analysis. * Links – All…
Claw API endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
Scrape HTML /scrape/html |
Returns the full raw HTML of the target URL. Useful for parsing with libraries like BeautifulSoup or lxml. Supports geo-targeting, and automatic retries. |
| POST |
Scrape HTML JS /scrape/html/js |
Returns the full raw HTML of the target URL. Useful for parsing with libraries like BeautifulSoup or lxml. Supports geo-targeting, and automatic retries, and JavaScript rendering. |
| POST |
Scrape Text /scrape/text |
Returns only the visible text content of the target URL, stripped of all HTML tags. Ideal for content analysis, NLP pipelines, or reading articles programmatically. |
| POST |
Scrape Text JS /scrape/text/js |
Returns only the visible text content of the target URL, stripped of all HTML tags. JavaScript rendering. |
| POST |
Scrape Links /scrape/links |
Extracts and returns all absolute URLs (href attributes) found on the target page, deduplicated. Useful for site mapping, link analysis, or crawling pipelines. |
| POST |
Scrape Links JS /scrape/links/js |
Extracts and returns all absolute URLs (href attributes) found on the target page, deduplicated. Supports JavaScript rendering. |
| GET |
Scrape Metadata /scrape/meta |
Extracts metadata from the target URL including page title, meta description, and Open Graph tags (og:title, og:description, og:image). Accepts the URL as a query parameter. |
Claw API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $25 / month | 30 / minute |
|
| ULTRA | $75 / month | 60 / minute |
|
| MEGA | $150 / month | 120 / minute |
|