cURL
curl --request GET \ --url https://spideriq.di-atomic.com/api/v1/jobs/spiderMaps/campaigns \ --header 'Authorization: Bearer <token>'
{ "campaigns": [ { "campaign_id": "<string>", "status": "<string>", "query": "<string>", "country_code": "<string>", "total_locations": 123, "completed_locations": 123, "created_at": "<string>" } ], "total": 123, "page": 123, "page_size": 123, "total_pages": 123 }
List all campaigns for the current client
active
paused
completed
stopped
Show Campaign Properties
curl https://spideriq.di-atomic.com/api/v1/jobs/spiderMaps/campaigns \ -H "Authorization: Bearer <your_token>"
{ "campaigns": [ { "campaign_id": "camp_lu_restaurants_abc123", "status": "completed", "query": "restaurants", "country_code": "LU", "total_locations": 12, "completed_locations": 12, "created_at": "2025-12-22T17:13:02Z" }, { "campaign_id": "camp_de_hotels_def456", "status": "active", "query": "hotels", "country_code": "DE", "total_locations": 14, "completed_locations": 5, "created_at": "2025-12-22T17:15:18Z" } ], "total": 2, "page": 1, "page_size": 20, "total_pages": 1 }
curl "https://spideriq.di-atomic.com/api/v1/jobs/spiderMaps/campaigns?status=active" \ -H "Authorization: Bearer <your_token>"
curl "https://spideriq.di-atomic.com/api/v1/jobs/spiderMaps/campaigns?country_code=FR" \ -H "Authorization: Bearer <your_token>"