Scrape any site with just a prompt
An AI scraper for developers and AI agents
Scrape millions of pages and convert them into
structured data with just one line of code.

How do you want to use FetchFox?
Python
JavaScript
MCP Server
Pydantic
curl
# pip install fetchfox-sdk

from fetchfox_sdk import FetchFox

fox = FetchFox(api_key="YOUR_API_KEY")

data = fox.scrape({
  "pattern": 'https://www.reddit.com/r/*/comments/*',
  "template": "username, comment, points",
})
{
    "username": "BobbyUser",
    "comment_text": "AI + FetchFox = 🤩",
    "points": 888
}
🪦 BeautifulSoup 2004-2025, RIP





Try the API
crawl(pattern)
Find URLs using a pattern
extract(urls, template)
Turn URLs into JSON
scrape(pattern, template)
Find pages and get JSON
The crawl endpoint takes a URL pattern and finds a list of matching URLs.
Fill example:
URL Pattern
URL pattern to crawl for, must contain at least one wildcard (*) operator.



FetchFox is a new
Get free 1:1 support on Discord or at help@fetchfoxai.com