Templates

Every scraper ships with a working starter template — a pre-filled input you can run as-is or tweak. Copy the JSON, or open the scraper and hit run.

Website Content Crawler

hyperscrape/website-content-crawler

Free
{
  "startUrls": [
    "https://news.ycombinator.com"
  ],
  "maxPages": 15,
  "maxDepth": 1
}

Universal Web Scraper

hyperscrape/web-scraper

Free
{
  "urls": [
    "https://quotes.toscrape.com"
  ],
  "fields": [
    "[]quotes: .quote .text",
    "[]authors: .quote .author"
  ]
}

News & Article Extractor

hyperscrape/article-extractor

Free
{
  "urls": [
    "https://blog.cloudflare.com/ddos-threat-report-2026-h1/"
  ]
}

Universal Product Scraper

hyperscrape/ecommerce-product-scraper

Free
{
  "urls": [
    "https://www.scrapingcourse.com/ecommerce/product/abominable-hoodie"
  ]
}

Product Price Monitor

hyperscrape/price-monitor

Free
{
  "productUrls": [
    "https://www.scrapingcourse.com/ecommerce/product/abominable-hoodie"
  ]
}

Amazon Product Scraper

hyperscrape/amazon-product-scraper

Premium
{
  "products": [
    "B09B8V1LZ3"
  ],
  "domain": "amazon.com"
}

Amazon Search Scraper

hyperscrape/amazon-search-scraper

Premium
{
  "keywords": [
    "mechanical keyboard"
  ],
  "domain": "amazon.com",
  "maxPages": 1
}

Amazon Reviews Scraper

hyperscrape/amazon-reviews-scraper

Premium
{
  "products": [
    "B09B8V1LZ3"
  ],
  "domain": "amazon.com",
  "maxReviews": 30
}

Google Search Results (SERP)

hyperscrape/google-search-scraper

Premium
{
  "queries": [
    "best web scraping api"
  ],
  "resultsPerQuery": 10,
  "countryCode": "us"
}

Google Maps Places Scraper

hyperscrape/google-maps-scraper

Premium
{
  "queries": [
    "coffee shops in Austin, TX"
  ],
  "maxPerQuery": 20
}

Google News Scraper

hyperscrape/google-news-scraper

Free
{
  "queries": [
    "web scraping"
  ],
  "topics": [
    "TECHNOLOGY"
  ],
  "language": "en",
  "country": "US",
  "maxPerFeed": 25
}

Google Play App Scraper

hyperscrape/google-play-app-scraper

Free
{
  "apps": [
    "com.spotify.music"
  ],
  "language": "en"
}

Apple App Store Scraper

hyperscrape/app-store-scraper

Free
{
  "mode": "search",
  "queries": [
    "notes app"
  ],
  "country": "us",
  "limitPerSearch": 15
}

Instagram Profile Scraper

hyperscrape/instagram-profile-scraper

Premium
{
  "usernames": [
    "nasa"
  ],
  "includeRecentPosts": true
}

TikTok Profile Scraper

hyperscrape/tiktok-profile-scraper

Premium
{
  "usernames": [
    "tiktok"
  ],
  "includeRecentVideos": true
}

Twitter / X Profile Scraper

hyperscrape/twitter-profile-scraper

Premium
{
  "handles": [
    "nasa"
  ]
}

LinkedIn Company Scraper

hyperscrape/linkedin-company-scraper

Premium
{
  "companies": [
    "microsoft"
  ]
}

Indeed Jobs Scraper

hyperscrape/indeed-jobs-scraper

Premium
{
  "queries": [
    "data engineer"
  ],
  "location": "Remote",
  "maxPerQuery": 25
}

Glassdoor Company Scraper

hyperscrape/glassdoor-company-scraper

Premium
{
  "companyUrls": [
    "https://www.glassdoor.com/Overview/Working-at-Example.htm"
  ]
}

Yelp Business Scraper

hyperscrape/yelp-business-scraper

Premium
{
  "businessUrls": [
    "https://www.yelp.com/biz/the-french-laundry-yountville"
  ]
}

Trustpilot Reviews Scraper

hyperscrape/trustpilot-reviews-scraper

Premium
{
  "companies": [
    "apify.com"
  ],
  "maxReviews": 40
}

Zillow Property Scraper

hyperscrape/zillow-property-scraper

Premium
{
  "propertyUrls": [
    "https://www.zillow.com/homedetails/example"
  ]
}

Booking.com Hotel Scraper

hyperscrape/booking-hotel-scraper

Free
{
  "hotelUrls": [
    "https://www.booking.com/hotel/gb/the-savoy.en-gb.html"
  ]
}

On-Page SEO Analyzer

hyperscrape/seo-page-analyzer

Free
{
  "urls": [
    "https://example.com"
  ]
}

Sitemap URL Extractor

hyperscrape/sitemap-extractor

Free
{
  "url": "https://www.apify.com/sitemap.xml",
  "maxUrls": 500
}

Broken Link Checker

hyperscrape/broken-link-checker

Free
{
  "startUrl": "https://example.com",
  "maxPages": 10,
  "onlyBroken": false
}

Contact Details Scraper

hyperscrape/contact-info-extractor

Free
{
  "websites": [
    "https://www.iana.org"
  ],
  "crawlContactPages": true,
  "maxPagesPerSite": 3
}

Website Tech Stack Detector

hyperscrape/tech-stack-detector

Free
{
  "urls": [
    "https://vercel.com",
    "https://wordpress.org"
  ]
}

RSS & Atom Feed Reader

hyperscrape/rss-feed-reader

Free
{
  "feedUrls": [
    "https://hnrss.org/frontpage"
  ],
  "maxItemsPerFeed": 25
}

Hacker News Scraper

hyperscrape/hacker-news-scraper

Free
{
  "feed": "top",
  "limit": 30
}

Reddit Subreddit Scraper

hyperscrape/reddit-scraper

Premium
{
  "subreddits": [
    "programming"
  ],
  "sort": "top",
  "timeframe": "week",
  "limit": 25
}

Stack Overflow Questions Scraper

hyperscrape/stackoverflow-scraper

Free
{
  "tags": [
    "web-scraping"
  ],
  "sort": "votes",
  "limit": 20,
  "includeAnswers": true
}

Wikipedia Article Scraper

hyperscrape/wikipedia-scraper

Free
{
  "titles": [
    "Web scraping",
    "Data mining"
  ],
  "language": "en"
}

GitHub Repository Scraper

hyperscrape/github-repo-scraper

Free
{
  "repos": [
    "vercel/next.js",
    "supabase/supabase"
  ],
  "includeLanguages": true,
  "includeContributors": true
}

YouTube Video Metadata

hyperscrape/youtube-video-metadata

Free
{
  "videos": [
    "https://www.youtube.com/watch?v=aqz-KE-bpKQ"
  ]
}

arXiv Paper Scraper

hyperscrape/arxiv-scraper

Free
{
  "query": "large language models",
  "sortBy": "relevance",
  "maxItems": 25
}

Bitcoin Address Scraper

hyperscrape/bitcoin-address-scraper

Free
{
  "addresses": [
    "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
  ],
  "includeTransactions": true,
  "maxTransactions": 10
}

CoinGecko Coins Scraper

hyperscrape/coingecko-coins-scraper

Free
{
  "coinIds": [],
  "vsCurrency": "usd",
  "maxItems": 100
}

CoinPaprika Scraper

hyperscrape/coinpaprika-scraper

Free
{
  "coinIds": [],
  "quoteCurrency": "USD",
  "includeDetails": false,
  "maxItems": 100
}

Crates.io Package Scraper

hyperscrape/crates-io-scraper

Free
{
  "crates": [
    "serde",
    "tokio",
    "clap"
  ],
  "includeDailyDownloads": false
}

Crossref DOI Metadata Scraper

hyperscrape/crossref-scraper

Free
{
  "query": "machine learning drug discovery",
  "sort": "relevance",
  "maxItems": 25
}

Crypto Price History Scraper

hyperscrape/crypto-price-history-scraper

Free
{
  "coinIds": [
    "bitcoin"
  ],
  "vsCurrency": "usd",
  "days": 30,
  "maxItems": 100
}

Deezer Artist

hyperscrape/deezer-artist-scraper

Free
{
  "artists": [
    "Daft Punk"
  ],
  "maxTopTracks": 10,
  "maxAlbums": 15
}

DefiLlama TVL Scraper

hyperscrape/defillama-scraper

Free
{
  "protocols": [],
  "category": "",
  "chain": "",
  "maxItems": 100
}

Docker Hub Repository Scraper

hyperscrape/dockerhub-scraper

Free
{
  "repositories": [
    "nginx",
    "grafana/grafana"
  ],
  "tagsPerRepo": 5
}

Exchange Rates Scraper

hyperscrape/exchange-rates-scraper

Free
{
  "baseCurrency": "USD",
  "targetCurrencies": [
    "EUR",
    "GBP",
    "JPY",
    "CHF"
  ],
  "historyDays": 30
}

GitHub Issues Scraper

hyperscrape/github-issues-scraper

Free
{
  "repos": [
    "vercel/next.js"
  ],
  "state": "open",
  "sort": "comments",
  "maxItemsPerRepo": 20
}

GitHub Releases Scraper

hyperscrape/github-releases-scraper

Free
{
  "repos": [
    "cli/cli",
    "ollama/ollama"
  ],
  "maxReleasesPerRepo": 5
}

GitHub Repository Search Scraper

hyperscrape/github-repo-search-scraper

Free
{
  "query": "web scraping",
  "language": "python",
  "minStars": 500,
  "sort": "stars",
  "maxItems": 25
}

GitHub Trending Scraper

hyperscrape/github-trending-scraper

Free
{
  "language": "",
  "since": "daily",
  "limit": 25
}

GitHub User Scraper

hyperscrape/github-user-scraper

Free
{
  "usernames": [
    "torvalds",
    "gaearon"
  ],
  "includeActivity": true
}

Hacker News Comments Scraper

hyperscrape/hn-comments-scraper

Free
{
  "stories": [
    "https://news.ycombinator.com/item?id=1"
  ],
  "maxComments": 100,
  "maxDepth": 10
}

App Store Reviews (iTunes)

hyperscrape/itunes-reviews-scraper

Free
{
  "appIds": [
    "310633997"
  ],
  "maxReviewsPerApp": 20,
  "countries": [
    "us",
    "gb"
  ]
}

Lobsters Scraper

hyperscrape/lobsters-scraper

Free
{
  "feed": "hottest",
  "limit": 25
}

MusicBrainz Artist

hyperscrape/musicbrainz-artist-scraper

Free
{
  "artists": [
    "Radiohead"
  ],
  "maxReleasesPerArtist": 15
}

npm Package Scraper

hyperscrape/npm-package-scraper

Free
{
  "packages": [
    "express",
    "axios",
    "@babel/core"
  ],
  "includeDownloads": true
}

OpenAlex Works Scraper

hyperscrape/openalex-scraper

Free
{
  "query": "climate change adaptation",
  "maxItems": 25
}

Packagist Package Scraper

hyperscrape/packagist-package-scraper

Free
{
  "packages": [
    "monolog/monolog",
    "laravel/framework",
    "symfony/console"
  ]
}

Podcast Episodes

hyperscrape/podcast-episodes-scraper

Free
{
  "feedUrls": [
    "https://feeds.npr.org/510318/podcast.xml"
  ],
  "maxEpisodesPerFeed": 20
}

Podcast Search (Apple Podcasts)

hyperscrape/podcast-search-scraper

Free
{
  "queries": [
    "technology news"
  ],
  "maxResultsPerQuery": 10,
  "country": "us"
}

PubMed Article Scraper

hyperscrape/pubmed-scraper

Free
{
  "query": "crispr gene editing",
  "sort": "relevance",
  "maxItems": 25
}

PyPI Package Scraper

hyperscrape/pypi-package-scraper

Free
{
  "packages": [
    "requests",
    "numpy",
    "flask"
  ],
  "includeDownloads": true
}

Reddit Comments Scraper

hyperscrape/reddit-comments-scraper

Premium
{
  "postUrls": [
    "https://www.reddit.com/r/programming/top.json"
  ],
  "sort": "top",
  "maxComments": 50,
  "maxDepth": 4
}

Reddit Search Scraper

hyperscrape/reddit-search-scraper

Premium
{
  "queries": [
    "web scraping"
  ],
  "sort": "relevance",
  "timeframe": "year",
  "limit": 25
}

Reddit User Scraper

hyperscrape/reddit-user-scraper

Premium
{
  "usernames": [
    "spez"
  ],
  "includePosts": true,
  "maxPosts": 10
}

RubyGems Package Scraper

hyperscrape/rubygems-package-scraper

Free
{
  "gems": [
    "rails",
    "sinatra",
    "nokogiri"
  ],
  "includeVersionHistory": true
}

Semantic Scholar Paper Scraper

hyperscrape/semantic-scholar-scraper

Free
{
  "query": "graph neural networks",
  "maxItems": 25
}

Stock Price History (OHLC)

hyperscrape/stock-price-history-scraper

Free
{
  "symbols": [
    "AAPL"
  ],
  "range": "1mo",
  "interval": "1d",
  "maxItemsPerSymbol": 100
}

YouTube Playlist Scraper

hyperscrape/youtube-playlist-scraper

Free
{
  "playlists": [
    "https://www.youtube.com/playlist?list=PLBCF2DAC6FFB574DE"
  ],
  "maxVideos": 25
}

YouTube Search Scraper

hyperscrape/youtube-search-scraper

Free
{
  "queries": [
    "typescript tutorial"
  ],
  "maxResults": 10,
  "sortBy": "relevance"
}

Bing Search Scraper

hyperscrape/bing-search-scraper

Free
{
  "queries": [
    "web scraping tools"
  ],
  "pagesPerQuery": 1,
  "maxResults": 20
}

DuckDuckGo Search Scraper

hyperscrape/duckduckgo-search-scraper

Free
{
  "queries": [
    "web scraping"
  ],
  "maxResults": 20
}

Google Autocomplete Scraper

hyperscrape/google-autocomplete-scraper

Free
{
  "keywords": [
    "web scraping"
  ],
  "languages": [
    "en"
  ],
  "country": "us",
  "expandAlphabet": false
}

Wikipedia Search Scraper

hyperscrape/wikipedia-search-scraper

Free
{
  "queries": [
    "artificial intelligence"
  ],
  "language": "en",
  "resultsPerQuery": 10
}

YouTube Suggest Scraper

hyperscrape/youtube-suggest-scraper

Free
{
  "keywords": [
    "how to edit videos"
  ],
  "language": "en",
  "country": "us"
}

eBay Search Results

hyperscrape/ebay-search-scraper

Free
{
  "queries": [
    "mechanical keyboard"
  ],
  "maxItemsPerQuery": 10
}

eBay Product Details

hyperscrape/ebay-product-scraper

Free
{
  "urls": [
    "https://www.ebay.com/itm/397144516304"
  ]
}

Etsy Listing Scraper

hyperscrape/etsy-product-scraper

Free
{
  "urls": [
    "https://www.etsy.com/listing/285428763/custom-hardwood-cutting-board"
  ]
}

AliExpress Product Details

hyperscrape/aliexpress-product-scraper

Premium
{
  "urls": [
    "https://www.aliexpress.com/item/3256802148877629.html"
  ]
}

Shopify Store Products

hyperscrape/shopify-products-scraper

Free
{
  "storeUrls": [
    "https://colourpop.com"
  ],
  "maxProducts": 20
}

Remote OK Jobs Scraper

hyperscrape/remoteok-jobs-scraper

Free
{
  "tag": "",
  "search": "",
  "limit": 25
}

We Work Remotely Jobs Scraper

hyperscrape/weworkremotely-jobs-scraper

Free
{
  "categoryFeed": "programming",
  "limit": 20,
  "fetchJobPages": false
}

HN Who Is Hiring Scraper

hyperscrape/hn-hiring-scraper

Free
{
  "storyId": "",
  "query": "",
  "limit": 30
}

Greenhouse Jobs Scraper

hyperscrape/greenhouse-jobs-scraper

Free
{
  "boards": [
    "gitlab"
  ],
  "titleSearch": "",
  "limit": 50
}

Lever Jobs Scraper

hyperscrape/lever-jobs-scraper

Free
{
  "companies": [
    "zoox"
  ],
  "titleSearch": "",
  "limit": 50
}

Certificate Expiry Monitor

hyperscrape/certificate-expiry-monitor

Free
{
  "domains": [
    "example.com",
    "anthropic.com"
  ]
}

Keyword Monitor

hyperscrape/keyword-monitor

Free
{
  "sources": [
    "https://news.ycombinator.com",
    "https://hnrss.org/frontpage"
  ],
  "keywords": [
    "AI",
    "open source"
  ]
}

Meta Tags Scraper

hyperscrape/meta-tags-scraper

Free
{
  "urls": [
    "https://www.mozilla.org/en-US/"
  ]
}

Page Change Monitor

hyperscrape/page-change-monitor

Free
{
  "urls": [
    "https://example.com",
    "https://www.iana.org/help/example-domains"
  ],
  "selector": "h1"
}

Uptime Checker

hyperscrape/uptime-checker

Free
{
  "urls": [
    "https://example.com",
    "https://www.wikipedia.org"
  ],
  "containsText": ""
}

WHOIS RDAP Scraper

hyperscrape/whois-rdap-scraper

Free
{
  "domains": [
    "google.com",
    "wikipedia.org"
  ]
}

DNS Records Scraper

hyperscrape/dns-records-scraper

Free
{
  "domains": [
    "anthropic.com"
  ],
  "recordTypes": [
    "A",
    "MX",
    "TXT",
    "NS"
  ]
}

SSL Certificate Scraper

hyperscrape/ssl-cert-scraper

Free
{
  "domains": [
    "anthropic.com"
  ],
  "maxCertsPerDomain": 10
}

Redirect Tracker

hyperscrape/redirect-tracker-scraper

Free
{
  "urls": [
    "http://github.com",
    "http://www.wikipedia.org"
  ]
}

OpenGraph & Twitter Card Scraper

hyperscrape/opengraph-scraper

Free
{
  "urls": [
    "https://github.com/microsoft/vscode",
    "https://www.mozilla.org/en-US/"
  ]
}

Schema.org Structured Data Scraper

hyperscrape/schema-org-scraper

Free
{
  "urls": [
    "https://en.wikipedia.org/wiki/Lasagne",
    "https://quotes.toscrape.com/"
  ]
}

Google Trends — Trending Searches

hyperscrape/google-trends-scraper

Free
{
  "geos": [
    "US"
  ],
  "maxPerGeo": 10
}

Bing News Scraper

hyperscrape/bing-news-scraper

Free
{
  "queries": [
    "artificial intelligence",
    "climate change"
  ],
  "maxPerFeed": 10
}

GDELT Global News Scraper

hyperscrape/gdelt-news-scraper

Free
{
  "queries": [
    "\"artificial intelligence\""
  ],
  "timespan": "1w",
  "sort": "DateDesc",
  "maxPerQuery": 25
}

Front-Page Headlines Scraper

hyperscrape/frontpage-headlines-scraper

Free
{
  "outlets": [
    "bbc",
    "guardian",
    "npr"
  ],
  "maxPerOutlet": 10
}

RSS Feed Discovery

hyperscrape/rss-discovery-scraper

Free
{
  "urls": [
    "https://techcrunch.com",
    "https://www.theverge.com"
  ],
  "probeCommonPaths": true,
  "maxFeedsPerSite": 3
}

Yellow Pages Search Scraper

hyperscrape/yellowpages-scraper

Premium
{
  "searchTerms": [
    "plumber"
  ],
  "location": "New York, NY",
  "maxResults": 10
}

BBB Business Profile Scraper

hyperscrape/bbb-business-scraper

Premium
{
  "profileUrls": [
    "https://www.bbb.org/us/wa/seattle/profile/ecommerce/amazoncom-1296-7039385"
  ]
}

Clutch Agency Directory Scraper

hyperscrape/clutch-agencies-scraper

Premium
{
  "directoryUrls": [
    "https://clutch.co/web-developers"
  ],
  "maxAgencies": 10
}

Email Finder & Pattern Detector

hyperscrape/email-finder-scraper

Free
{
  "domain": "mozilla.org",
  "names": [
    "Mitchell Baker"
  ],
  "maxPages": 4
}

Company Enrichment Scraper

hyperscrape/company-enrichment-scraper

Free
{
  "domains": [
    "https://www.mozilla.org"
  ],
  "maxPagesPerDomain": 3
}

URL to Markdown

hyperscrape/url-to-markdown-scraper

Free
{
  "urls": [
    "https://en.wikipedia.org/wiki/CommonMark"
  ],
  "mainContentOnly": false
}

Docs Crawler

hyperscrape/docs-crawler-scraper

Free
{
  "startUrl": "https://docs.python.org/3/tutorial/",
  "maxPages": 5
}

FAQ Extractor

hyperscrape/faq-extractor-scraper

Free
{
  "urls": [
    "https://www.firefox.com/en-US/more/faq/",
    "https://docs.python.org/3/faq/general.html"
  ]
}

llms.txt Generator

hyperscrape/llms-txt-generator

Free
{
  "siteUrl": "https://hono.dev",
  "maxPages": 8
}

Readability Batch

hyperscrape/readability-batch-scraper

Free
{
  "urls": [
    "https://blog.cloudflare.com/ddos-threat-report-2026-h1/",
    "https://en.wikipedia.org/wiki/Readability",
    "https://www.w3.org/WAI/media/av/av-description.pdf"
  ],
  "maxTextChars": 20000
}

Docker Hub Search Scraper

hyperscrape/dockerhub-search-scraper

Free
{
  "queries": [
    "redis",
    "postgres"
  ],
  "maxPerQuery": 10,
  "includeDetails": true
}

VS Code Marketplace Scraper

hyperscrape/vscode-marketplace-scraper

Free
{
  "queries": [
    "python",
    "docker"
  ],
  "maxPerQuery": 10,
  "sortBy": "installs"
}

Chrome Web Store Scraper

hyperscrape/chrome-webstore-scraper

Free
{
  "extensions": [
    "https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm",
    "aapbdbdomjkkjkaonfhkkikfgjllcleb"
  ]
}

GitLab Projects Scraper

hyperscrape/gitlab-projects-scraper

Free
{
  "queries": [
    "inkscape/inkscape",
    "terraform"
  ],
  "maxPerQuery": 10,
  "orderBy": "similarity"
}

Stack Exchange Answers Scraper

hyperscrape/stackexchange-answers-scraper

Free
{
  "questions": [
    "https://stackoverflow.com/questions/11227809/why-is-processing-a-sorted-array-faster-than-processing-an-unsorted-array",
    "927358"
  ],
  "site": "stackoverflow"
}

IMDb Title Scraper

hyperscrape/imdb-title-scraper

Premium
{
  "titles": [
    "https://www.imdb.com/title/tt0111161/",
    "tt0468569"
  ],
  "maxItems": 10
}

IMDb Search Scraper

hyperscrape/imdb-search-scraper

Free
{
  "queries": [
    "inception",
    "tom hanks"
  ],
  "titlesOnly": false,
  "maxResultsPerQuery": 8
}

Rotten Tomatoes Scraper

hyperscrape/rottentomatoes-scraper

Free
{
  "movies": [
    "https://www.rottentomatoes.com/m/the_dark_knight",
    "m/interstellar_2014"
  ],
  "maxItems": 10
}

Goodreads Book Scraper

hyperscrape/goodreads-book-scraper

Free
{
  "books": [
    "https://www.goodreads.com/book/show/5107.The_Catcher_in_the_Rye"
  ],
  "maxItems": 10
}

Open Library Books Scraper

hyperscrape/openlibrary-books-scraper

Free
{
  "queries": [
    "the hobbit"
  ],
  "resultsPerQuery": 5,
  "includeWorkDetails": true
}

SEC Filings Full-Text Search Scraper

hyperscrape/sec-filings-scraper

Free
{
  "query": "\"climate risk\"",
  "forms": "10-K",
  "maxItems": 30
}

SEC Company Facts (XBRL) Scraper

hyperscrape/sec-company-facts-scraper

Free
{
  "identifiers": [
    "AAPL"
  ],
  "concepts": [
    "Revenues",
    "NetIncomeLoss",
    "Assets"
  ],
  "pointsPerConcept": 8,
  "maxItems": 100
}

Federal Register Document Scraper

hyperscrape/federal-register-scraper

Free
{
  "query": "artificial intelligence",
  "documentType": "",
  "maxItems": 25
}

Yahoo Finance Quote Scraper

hyperscrape/yahoo-finance-quote-scraper

Free
{
  "tickers": [
    "AAPL",
    "MSFT",
    "BTC-USD"
  ]
}

Finviz Stock Screener Scraper

hyperscrape/finviz-screener-scraper

Free
{
  "filters": "cap_mega",
  "order": "-marketcap",
  "maxItems": 20
}

Telegram Channel Scraper

hyperscrape/telegram-channel-scraper

Free
{
  "channels": [
    "telegram"
  ],
  "postsPerChannel": 15,
  "includeChannelInfo": true
}

Mastodon Profile Scraper

hyperscrape/mastodon-profile-scraper

Free
{
  "accounts": [
    "Gargron@mastodon.social"
  ],
  "statusesPerAccount": 10,
  "excludeReplies": true
}

Bluesky Profile Scraper

hyperscrape/bluesky-profile-scraper

Free
{
  "actors": [
    "bsky.app"
  ],
  "postsPerActor": 10,
  "feedFilter": "posts_no_replies"
}

Pinterest Search Scraper

hyperscrape/pinterest-search-scraper

Premium
{
  "queries": [
    "minimalist desk setup"
  ],
  "pinsPerQuery": 20
}

Twitch Channel Scraper

hyperscrape/twitch-channel-scraper

Premium
{
  "channels": [
    "riotgames"
  ]
}

App Store Reviews Scraper

hyperscrape/app-store-reviews-scraper

Free
{
  "apps": [
    "544007664",
    "310633997"
  ],
  "country": "us",
  "maxReviewsPerApp": 15
}

Capterra Reviews Scraper

hyperscrape/capterra-reviews-scraper

Premium
{
  "products": [
    "https://www.capterra.com/p/186596/Notion/"
  ],
  "maxReviewsPerProduct": 25
}

G2 Reviews Scraper

hyperscrape/g2-reviews-scraper

Premium
{
  "products": [
    "notion"
  ],
  "maxReviewsPerProduct": 25
}

Google Play Reviews Scraper

hyperscrape/google-play-reviews-scraper

Free
{
  "apps": [
    "com.whatsapp"
  ],
  "maxReviewsPerApp": 40,
  "sort": "newest",
  "language": "en",
  "country": "US"
}

Sitejabber Reviews Scraper

hyperscrape/sitejabber-reviews-scraper

Free
{
  "businesses": [
    "amazon.com"
  ],
  "maxReviewsPerBusiness": 20
}

Instagram Hashtag Scraper

hyperscrape/instagram-hashtag-scraper

Premium
{
  "hashtags": [
    "nature"
  ],
  "maxPosts": 12
}

Instagram Posts Scraper

hyperscrape/instagram-posts-scraper

Premium
{
  "usernames": [
    "natgeo"
  ],
  "maxPostsPerProfile": 6
}

TikTok Hashtag Scraper

hyperscrape/tiktok-hashtag-scraper

Premium
{
  "hashtags": [
    "funny"
  ],
  "maxVideos": 10
}

TikTok Video Scraper

hyperscrape/tiktok-video-scraper

Premium
{
  "videoUrls": [
    "https://www.tiktok.com/@tiktok/video/7231338487075638570"
  ]
}

Twitter (X) Search Scraper

hyperscrape/twitter-search-scraper

Premium
{
  "queries": [
    "#nasa"
  ],
  "maxTweets": 10,
  "latest": false
}

Walmart Product Scraper

hyperscrape/walmart-product-scraper

Premium
{
  "urls": [
    "https://www.walmart.com/ip/Great-Value-Whole-Vitamin-D-Milk-Gallon-128-fl-oz/10450114",
    "https://www.walmart.com/ip/Apple-AirPods-Pro-2-Wireless-Earbuds-Active-Noise-Cancellation-Hearing-Aid-Feature/5689919121"
  ]
}

Walmart Search Scraper

hyperscrape/walmart-search-scraper

Premium
{
  "queries": [
    "coffee maker"
  ],
  "maxItemsPerQuery": 20
}

Target Product Scraper

hyperscrape/target-product-scraper

Premium
{
  "urls": [
    "https://www.target.com/p/lego-classic-large-creative-brick-box-build-your-own-creative-toys-kids-building-kit-10698/-/A-17093867"
  ]
}

Best Buy Product Scraper

hyperscrape/bestbuy-product-scraper

Premium
{
  "urls": [
    "https://www.bestbuy.com/site/apple-airpods-pro-2-wireless-earbuds-with-active-noise-cancellation-white/6447382.p",
    "https://www.bestbuy.com/site/sony-wh-1000xm5-wireless-noise-canceling-over-the-ear-headphones-black/6505727.p"
  ]
}

Home Depot Product Scraper

hyperscrape/homedepot-product-scraper

Premium
{
  "urls": [
    "https://www.homedepot.com/p/DEWALT-20V-MAX-Cordless-Drill-Driver-Kit-2-Ah-DCD771C2/204279858"
  ]
}

Realtor.com Listings Scraper

hyperscrape/realtor-listings-scraper

Premium
{
  "searchUrls": [
    "https://www.realtor.com/realestateandhomes-search/Austin_TX"
  ],
  "maxItems": 20
}

Redfin Property Scraper

hyperscrape/redfin-property-scraper

Premium
{
  "propertyUrls": [
    "https://www.redfin.com/TX/Austin/6604-Argentia-Rd-78757/home/31478569"
  ]
}

Apartments.com Listings Scraper

hyperscrape/apartments-listings-scraper

Premium
{
  "urls": [
    "https://www.apartments.com/austin-tx/"
  ],
  "maxItems": 25
}

Craigslist Search Scraper

hyperscrape/craigslist-search-scraper

Free
{
  "city": "austin",
  "category": "sss",
  "query": "desk",
  "maxItems": 20
}

Airbnb Listings Scraper

hyperscrape/airbnb-listings-scraper

Premium
{
  "searchUrls": [
    "https://www.airbnb.com/s/Austin--TX--United-States/homes"
  ],
  "maxItems": 20
}

Need a custom starting point?

Every template is just the scraper's input schema. Read the API reference to build your own automation on top.

Browse all scrapers