Authorizations
Path Parameters
Task ID
Response
200 - */*
Default Response
curl --request GET \
--url https://api.eden.art/v2/tasks/{taskId} \
--header 'X-Api-Key: <api-key>'
{
"task": {
"_id": "<string>",
"user": {
"_id": "<string>",
"userId": "<string>",
"username": "<string>",
"userImage": "<string>"
},
"agent": "<string>",
"tool": "<string>",
"cost": 123,
"output_type": "<string>",
"args": {},
"status": "<string>",
"performance": {},
"result": [
{
"output": [
{
"filename": "<string>",
"url": "<string>",
"thumbnail": "<string>",
"creation": {
"_id": "<string>",
"user": {
"_id": "<string>",
"userId": "<string>",
"username": "<string>",
"userImage": "<string>"
},
"task": {
"_id": "<string>",
"args": {}
},
"tool": "<string>",
"args": {},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"model": {
"_id": "<string>",
"name": "<string>",
"user": {
"_id": "<string>",
"userId": "<string>",
"username": "<string>",
"userImage": "<string>"
},
"task": {
"_id": "<string>",
"args": {}
},
"checkpoint": "<string>",
"public": true,
"slug": "<string>",
"thumbnail": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
],
"intermediate_outputs": {}
}
],
"model": "<string>",
"error": "<string>",
"progress": 123,
"apiKey": "<string>",
"updatedAt": "<string>",
"createdAt": "<string>"
}
}
Retrieve detailed information about a specific task including its status and output.
curl --request GET \
--url https://api.eden.art/v2/tasks/{taskId} \
--header 'X-Api-Key: <api-key>'
{
"task": {
"_id": "<string>",
"user": {
"_id": "<string>",
"userId": "<string>",
"username": "<string>",
"userImage": "<string>"
},
"agent": "<string>",
"tool": "<string>",
"cost": 123,
"output_type": "<string>",
"args": {},
"status": "<string>",
"performance": {},
"result": [
{
"output": [
{
"filename": "<string>",
"url": "<string>",
"thumbnail": "<string>",
"creation": {
"_id": "<string>",
"user": {
"_id": "<string>",
"userId": "<string>",
"username": "<string>",
"userImage": "<string>"
},
"task": {
"_id": "<string>",
"args": {}
},
"tool": "<string>",
"args": {},
"createdAt": "<string>",
"updatedAt": "<string>"
},
"model": {
"_id": "<string>",
"name": "<string>",
"user": {
"_id": "<string>",
"userId": "<string>",
"username": "<string>",
"userImage": "<string>"
},
"task": {
"_id": "<string>",
"args": {}
},
"checkpoint": "<string>",
"public": true,
"slug": "<string>",
"thumbnail": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
],
"intermediate_outputs": {}
}
],
"model": "<string>",
"error": "<string>",
"progress": 123,
"apiKey": "<string>",
"updatedAt": "<string>",
"createdAt": "<string>"
}
}
Task ID
Default Response
Show child attributes