
Developers
Since Pendless operates fully autonomously, you can create prompts directly from your application and rely on it to complete tasks while providing feedback.
// Enqueue a browser automation like this
curl -X POST https://app.pendless.com/api/enqueue/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"procedure": "enqueue",
"title": "Browser Automation: Login",
"url": "https://example.com/login",
"prompt": "Enter username admin and password 1234"
}'
// You'll enqueue a task in the Pendless queue

// Retrieve a task status like this
curl -X POST https://pendless.atomian.com/api/enqueue/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"procedure": "status",
"uuid": "YOUR_TASK_UUID"
}'
// You'll get a structure like this
{
"status": "success",
"data": {
"uuid": "YOUR_TASK_UUID",
"creation date": "2025-11-11 14:32:10",
"execution date": "2025-11-11 14:41:23",
"status": "pending",
"feedback": null,
"result": null
},
"message": "Task status retrieved successfully"
}
What's Next:

Developer Account

Create a developer account. You will receive a username, a password and a developer passcode for the API access.
Partner Account

If your customer base could benefit from Pendless, chances are you’ll want to become a reseller as well.

