task
Get tasks
task
Get tasks
Get a list of tasks
GET
/
api
/
v1
/
task
curl --request GET \
--url https://www.artilla.ai/api/v1/task/
{
"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
curl --request GET \
--url https://www.artilla.ai/api/v1/task/
{
"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
}