Skip to main content
REST API live · hosted MCP not available

Give your agent live web access in 5 minutes.

Agents provision their own key from POST /v1/keys/provision and onboard from a SKILL.md. Call the REST API today. Hosted MCP is not available.

Hosted MCP is not available. Use the REST API below.

Free tier · 1,000 credits/mo · no card required

The tools an agent gets

These are the registered MCP tools, not a marketing summary. Each one is directly callable, alongside the full /v1 REST surface and the live connector catalog, auto-wrapped as tools.

scrape

A URL → markdown + structured listing data.

extract

A URL + JSON schema → typed structured data via LLM.

crawl

Walk a site from a start URL, same-domain, up to a page cap.

batch_scrape

Scrape up to 50 URLs concurrently with a pass/fail summary.

search

Web search with ranked results, optionally scraped.

google_maps_search

Local business search via our Maps scraper path (listings + contacts when available). Not a Google-endorsed API; quality varies by target.

yelp_search

Local business search via our Yelp scraper path (ratings + contacts when available). Not a Yelp partner API; quality varies by target.

screenshot

Full-page, viewport, or single-element page capture.

transform

Raw HTML → clean Markdown, offline, no network call.

unblock

Fetch a hard/anti-bot URL through the cheapest working provider.

list_tools

Meta-tool: discover the full catalog and per-parameter schemas on demand.

Two ways to wire it up

Call the REST API today. Hosted MCP is not available. Local stdio MCP is developer-only and does not meter through the hosted API unless you point it at production REST.

Straight over HTTP

Not using MCP? Every tool on this page is a REST endpoint. Nothing to install.

curl -X POST https://api.superscraper.dev/v1/scrape \
  -H "Authorization: Bearer $SUPERSCRAPER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com", "formats": ["markdown"] }'

Manual MCP config

Hosted MCP is not available. Use REST until it is.

# Hosted MCP is not available.
# Use POST https://api.superscraper.dev/v1/scrape with a Bearer key.
MCP is the universal connector

Works with the agents you already run

If a tool speaks MCP, local stdio works from a source checkout. Hosted MCP is not available — call REST for production.

self-onboarding

Your agent onboards itself

Most servers still assume a human sets up the key. This one does not. The agent mints its own free-tier key, reads a SKILL.md to learn the API, and starts pulling the web inside its own loop. No human in the path.

  • POST /v1/keys/provisionThe agent mints its own free-tier key in one call. No dashboard, no signup form to click through first.
  • GET /agent-onboarding/SKILL.mdThe self-onboarding doc. The agent fetches it and wires itself up: key, then calls, then MCP.
  • POST /v1/scrapeHosted MCP is not available. Use the REST API with the key from provision.

Give your agent the live web

Get a key, or let the agent mint its own. Call scrape, extract, and search over REST.