ScrapeWise API Documentation
Access your scraping jobs and results programmatically using our RESTful API.
Base URL
https://yourdomain.com/api/
Authentication
Use your API key or JWT token in the Authorization
header.
Endpoints
GET /api/jobs
List all your scraping jobs
List all your scraping jobs
GET /api/jobs/{id}
Get details of a specific job
Get details of a specific job
POST /api/jobs
Create a new scraping job
Create a new scraping job
GET /api/results/{jobId}
Get results for a job
Get results for a job
GET /api/tags
List all tags
List all tags
Example: Get All Jobs
curl -H "Authorization: Bearer <your_token>" https://yourdomain.com/api/jobs
For more details, see the Help & Examples page.