Browsable Browsable Docs

List Tasks API

Discover the tasks available to your team, including prebuilt tasks and your own generated tasks.

GET /v1/tasks

This is the main discovery endpoint for humans, generated clients, and LLM-based tooling. It includes the user-facing metadata you need to discover and choose tasks: friendly alias routes, canonical endpoints, parameter summaries, auth requirements, docs URLs, and pricing metadata. For the full machine-readable contract, fetch a single task with GET /v1/tasks/{task_key}.

Query Parameters

  • limit controls page size.
  • cursor continues from a previous page.
  • type filters tasks to custom or prebuilt.

By default, your own custom tasks are returned first, followed by prebuilt tasks.

Example

curl -X GET "https://api.browsable.app/v1/tasks?limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"

Response

Use GET /v1/tasks/{task_key} when you need the full metadata for a single task. Custom tasks may return null for alias_endpoint and docs_url when they do not have a public-friendly alias or docs page.