top of page

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:

Github Repository

Find our API documentation and sample code in our GitHub repository

image.png

Developer Account

image.png

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

Partner Account

image.png

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

White Paper

image.png

If you are interested in learning how we built Pendless, take a look at our White Paper.

Not finding the information you need? 

Want to receive news and updates?

bottom of page