igscraper REST API
Automate Instagram scraping with the igscraper REST API. All endpoints use /api/v1 with Bearer token authentication. Submit a job, poll for status, fetch results.
Authentication
All requests require a Bearer token.
Authorization: Bearer YOUR_API_KEYPOST requests must include Content-Type: application/json. Get your key from the API dashboard.
Quickstart
Submit Job
curl -X POST "https://igscraper.co/api/v1/jobs" \
-H "Authorization: Bearer $IGSCRAPER_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: unique-key-per-job" \
-d '{
"external_user_id": "customer-123",
"tool_type": "followers",
"params": {
"usernames": ["nasa"],
"max_followers": 50
}
}'