Browsable Browsable Docs

List Tasks API

Retrieve all tasks accessible to your team, including public and custom tasks.

GET /v1/tasks/list

Example

curl -X GET "https://api.browsable.app/v1/tasks/list" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "tasks": [
    {
      "id": "task_123",
      "name": "reddit-search",
      "path_template": "reddit/search",
      "http_method": "GET",
      "public": true
    }
  ]
}