Troubleshooting Guide
Solutions for common issues when using Scrapezy API. Learn how to debug extraction problems, handle rate limits, and optimize your scraping performance.
Common Issues
1. Extraction Not Working
Problem
Data isn't being extracted as expected.
Solutions
- Check Your Prompt
# ❌ Vague prompt
POST https://scrapezy.com/api/extract
{
"prompt": "Get the data"
}
# ✅ Specific prompt
POST https://scrapezy.com/api/extract
{
"prompt": "Extract product titles from all elements with class 'product-title', including their prices from the nearby '.price' elements"
}