List Tasks API
Discover the tasks available to your team, including prebuilt tasks and your own generated tasks.
/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
limitcontrols page size.cursorcontinues from a previous page.typefilters tasks tocustomorprebuilt.
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.