GET
/
api
/
v2
/
tasks
/
{taskId}
Fetch a specific task
curl --request GET \
  --url https://api.vida.dev/api/v2/tasks/{taskId}
{
  "success": true,
  "task": {
    "id": "task1",
    "type": "call",
    "state": "pending"
  }
}

Path Parameters

taskId
string
required

Task ID

Response

Task found

success
boolean
Example:

true

task
object