Skip to main content
GET
/
api
/
v2
/
tasks
Fetch all tasks
curl --request GET \
  --url https://api.vida.dev/api/v2/tasks
{
  "success": true,
  "total": 123,
  "tasks": [
    {
      "id": "task1",
      "type": "call",
      "state": "pending",
      "target": "+15551234567",
      "createdAt": 1712345678
    }
  ]
}

Query Parameters

limit
integer
offset
integer
since
integer
until
integer
sort
string
order
string

Response

success
boolean
Example:
total
number
Example:
tasks
object[]