Using Templates
Get started quickly with pre-built scraping templates for popular websites.
Templates are pre-configured scraping jobs for popular websites and use cases. They include tested queries, optimal rate limits, and recommended settings - saving you hours of configuration.
Why Use Templates?
Faster Setup
Skip the trial and error of writing queries. Templates are tested and ready to use.
Best Practices
Templates include recommended rate limits and settings for reliable scraping.
Regular Updates
We update templates when websites change their structure.
Fully Customizable
Start from a template and modify it to fit your specific needs.
Available Categories
E-Commerce
Amazon, eBay, Shopify stores
Social Media
LinkedIn, Twitter, Instagram
Real Estate
Zillow, Realtor, Redfin
Job Boards
Indeed, LinkedIn Jobs, Glassdoor
News & Media
Google News, RSS feeds, news sites
Business Data
Yellow Pages, Yelp, Google Maps
How to Use Templates
- Navigate to Templates in the sidebar
- Browse or search for a template that matches your needs
- Click Use Template to create a new job
- Customize the job name and source URLs
- Optionally modify queries or settings
- Save and run your job
Template Structure
Example: Amazon Product Template
{
"name": "Amazon Product",
"description": "Extract product details from Amazon product pages",
"source_pattern": "https://www.amazon.com/dp/{ASIN}",
"queries": [
{
"name": "title",
"type": "xpath",
"query": "//span[@id='productTitle']/text()"
},
{
"name": "price",
"type": "xpath",
"query": "//span[@class='a-price-whole']/text()"
},
{
"name": "rating",
"type": "css",
"query": "#acrPopover span.a-size-base::text"
},
{
"name": "reviews_count",
"type": "xpath",
"query": "//span[@id='acrCustomerReviewText']/text()"
},
{
"name": "availability",
"type": "xpath",
"query": "//div[@id='availability']//span/text()"
}
],
"rate_limit": 5,
"render_config": {
"enabled": true,
"wait_strategy": "domcontentloaded"
}
}Creating Your Own Templates
Save any job configuration as a template to reuse later:
- Create and test a job until it works correctly
- Open the job settings
- Click Save as Template
- Give it a name and description
- Choose to keep it private or share with your team
Pro Tip
Templates with placeholder patterns like {ASIN} or{SKU} make it easy to scrape multiple items - just replace the placeholder with your target values.
Template Limitations
Keep in mind that websites change frequently. If a template stops working:
- Check for template updates in the marketplace
- Inspect the target page to find new selectors
- Report broken templates to help us update them