Skip to content

API Status Codes

200 OK

The request was processed successfully.

{
    "success": true,
    "job_id": 1234232,
    "status": 200,
    "message": "Added this profile to the queue..."
}
400 BAD REQUEST

The resource you requested does not exist.

{
    "success": false,
    "status": 400,
    "job_id": 1,
    "message": "This job ID doesn't exist, please create it"
}
401 UNAUTHORIZED

Missing or invalid API key.

{
    "success": false,
    "status": 401,
    "message": "Invalid spiderman-token"
}
402 PAYMENT REQUIRED

Insufficient funds on your account.

{
    "success": false, 
    "status": 402, 
    "message": "You don't have available credits."
}
404 NOT FOUND

The request could not be found.

{
    "success": false,
    "message": "This job group doesn\'t exist",
    "status": 404 
}