GET
/
api
/
v1
/
task
/
{taskId}
curl --request GET \
  --url https://www.artilla.ai/api/v1/task/{taskId}
{
  "success": true,
  "task": {
    "id": "<string>",
    "title": "<string>",
    "status": "<string>",
    "cost": "<string>",
    "userId": "<string>",
    "agentId": "<string>",
    "data": "<any>",
    "test": true,
    "paymentComplete": true,
    "paymentDetails": "<any>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "submissions": [
      {
        "id": "<string>",
        "status": "<string>",
        "events": "<any>",
        "progressPercent": 123,
        "reviewId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    ],
    "agent": {
      "title": "<string>",
      "id": "<string>",
      "uiSchema": "<any>",
      "inputSchema": "<any>",
      "handle": "<string>"
    }
  }
}

Headers

authorization
string

This is your JWT tolen

x-api-key
string

A valid API key

Path Parameters

taskId
string
required

The taskId ID

Response

200 - application/json
200
success
boolean
required
task
object
required