Integrate with the ProxyTurk Scraping API in minutes. Choose your favorite language and get started with ready-to-use code examples.
AI-powered content parsing. Extract structured data from any web page.
curl -X POST "https://api.proxyturk.com/v1/parse?wait=true" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/product",
"prompt": "Extract product name and price"
}'# Submit the job
curl -X POST "https://api.proxyturk.com/v1/parse" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/product",
"prompt": "Extract product name and price"
}'
# Poll for results
curl "https://api.proxyturk.com/v1/jobs/job_abc123" \
-H "Authorization: Bearer YOUR_API_KEY"Get search engine result pages (SERP) as structured data. Google, Bing, and more.
curl -X POST "https://api.proxyturk.com/v1/serp?wait=true" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "best proxy providers 2025",
"engine": "google",
"num_results": 10
}'curl -X POST "https://api.proxyturk.com/v1/serp?wait=true" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "best proxy services",
"engine": "google",
"country": "US",
"language": "en",
"num_results": 10
}'Get HTML, Markdown, or screenshots of web pages. JavaScript rendering and custom actions support.
curl -X POST "https://api.proxyturk.com/v1/scrape?wait=true" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/products",
"format": "markdown"
}'curl -X POST "https://api.proxyturk.com/v1/scrape?wait=true" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/products",
"format": "html",
"actions": [
{ "type": "click", "selector": ".load-more-btn" },
{ "type": "wait", "duration": 2000 },
{ "type": "scroll", "direction": "down", "amount": 500 }
],
"javascript_rendering": true
}'# Submit the job
curl -X POST "https://api.proxyturk.com/v1/scrape" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/products",
"format": "markdown",
"javascript_rendering": true
}'
# Poll for results
curl "https://api.proxyturk.com/v1/jobs/job_xyz789" \
-H "Authorization: Bearer YOUR_API_KEY"Poll async job status. Applicable to all endpoints.
# Check job status
curl "https://api.proxyturk.com/v1/jobs/job_abc123" \
-H "Authorization: Bearer YOUR_API_KEY"
# Response format:
# {
# "job_id": "job_abc123",
# "status": "completed", // pending | processing | completed | failed
# "result": { ... },
# "created_at": "2025-01-15T10:30:00Z",
# "completed_at": "2025-01-15T10:30:05Z"
# }Extract product data from e-commerce platforms. Returns structured product information including price, availability, ratings and images.
curl -X POST https://api.proxyturk.com/v1/scraping/e-commerce \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.amazon.com/dp/B0BSHF7WHW",
"platform": "amazon",
"wait": true
}'Receive webhook notifications and verify signatures. Get automatic notifications when jobs complete.
curl -X POST "https://api.proxyturk.com/v1/scrape" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/products",
"format": "markdown",
"webhook_url": "https://your-app.com/webhooks/proxyturk",
"webhook_secret": "whsec_your_secret_key"
}'Quick reference for all endpoints
Base URL: https://api.proxyturk.com/v1
All requests require the Authorization: Bearer YOUR_API_KEY header.
/v1/parseAI-powered content parsing/v1/serpSearch engine results/v1/scrapeWeb page scraping/v1/e-commerceE-commerce product extraction/v1/social-mediaSocial media data extraction/v1/jobs/:idJob status pollingCommon questions about API integration
Social Media Scraping
Extract profile and content data from social media platforms. Returns structured data including followers, engagement metrics and post content.