
HTML → clean Markdown and structured JSON. Scraping, crawling, AI extraction and more via API.
Available Endpoints
Everything you need to extract web data in a single API.
Scrape
/scrapeConvert a webpage to clean Markdown.
Crawl
/crawlCrawl multiple pages automatically.
Map
/mapMap all links on a website.
Extract
/extractExtract structured data with AI via JSON schema.
Search
/searchGoogle search via stealth browser.
RSS
/rssDiscover and parse RSS/Atom feeds.
Screenshot
/screenshotCapture screenshots in PNG/JPEG.
Change Detection
/change-detectionMonitor content changes with diff.
Batch Scrape
/batch-scrapeSubmit multiple URLs in a single parallel request.
Try Free
Try any endpoint directly in the browser.
API Playground
Extracts the content of a single URL as clean Markdown. Uses the fastest available layer.
- 1Paste the URL above
- 2Adjust optional settings (excluded tags, timeout)
- 3Click Run
- 4Read the Markdown in the result panel
import requests
import json
url = "https://api.scrapetechnology.com/scrape"
api_key = "YOUR_API_KEY"
headers = {
"X-API-KEY": api_key,
"Content-Type": "application/json"
}
data = {
"url": []
}
try:
response = requests.post(url, headers=headers, json=data)
response.raise_for_status()
print(response.json())
except requests.exceptions.HTTPError as http_err:
print(f"Erro HTTP: {http_err}")
print(f"Conteúdo da resposta: {response.text}")
except requests.exceptions.RequestException as req_err:
print(f"Erro na Requisição: {req_err}")
except json.JSONDecodeError:
print(f"Não foi possível decodificar a resposta JSON: {response.text}")Our Plans
Free
500 tokens
$0/month
No credit card required
- 500 tokens
- 10 /scrape per min
- 1 /crawl per min
Basic
3.000 tokens/month
$20/month
Billed monthly
- 3,000 tokens
- 20 /scrape per min
- 3 /crawl per min
- Basic support
Intermediate
100.000 tokens/month
$100/month
Billed monthly
- 100,000 tokens
- 100 /scrape per min
- 10 /crawl per min
- Standard Support
Professional
500.000 tokens/month
$395/month
Billed monthly
- 500,000 tokens
- 1000 /scrape per min
- 50 /crawl per min
- Priority Support
Enterprise
High Volume & Custom Limits
Custom
Tailored solutions for high volume and specific needs.
- High volume credits/tokens
- Dedicated priority support
- SLA options & custom integrations
- Expert consultancy
Credits
Credits per Endpoint
Fixed billing per call. No surprises.
| Endpoint | Credits | |
|---|---|---|
| Light | ||
/scrape | 1 | |
/screenshot | 1 | |
/map | 1 | |
/change-detection | 1 | |
/rss | 1 | |
/rank | 2 | |
| Variable | ||
/crawl | 1 / page | |
/batch-scrape | 1 / URL | |
/dataset | 1 / page | |
| AI | ||
/search | 5 | |
/extract | 5 | |
/prompt-extract | 5 | |
/smart-extract | 5 | |
| Social | ||
/instagram | 1 (profile/post) · 1/10 (feed) | |
/x | 1 (profile/post) · 1/10 (feed) | |
| Heavy AI | ||
/agent | 2 / page | |
/deep-research | 1 / URL | |
/monitor | 1 / check | |