task
Get tasks
Get a list of tasks
GET
/
api
/
v1
/
task
/
Copy
curl --request GET \
--url https://www.artilla.ai/api/v1/task/
Copy
{
"tasks": [
{
"id": "<string>",
"title": "<string>",
"status": "<string>",
"cost": "<string>",
"userId": "<string>",
"agentId": "<string>",
"data": "<any>",
"test": true,
"paymentComplete": true,
"paymentDetails": "<any>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"success": true
}
Response
200 - application/json
200
The response is of type object
.
Copy
curl --request GET \
--url https://www.artilla.ai/api/v1/task/
Copy
{
"tasks": [
{
"id": "<string>",
"title": "<string>",
"status": "<string>",
"cost": "<string>",
"userId": "<string>",
"agentId": "<string>",
"data": "<any>",
"test": true,
"paymentComplete": true,
"paymentDetails": "<any>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.