Browsable Browsable Docs

Execute Task API

Execute any task by its canonical task key. Prebuilt tasks may also expose a friendly alias route such as /v1/reddit/search.

POST /v1/tasks/{task_key}/runs

Async vs Sync

Set _run.async to false for synchronous execution (waits up to 25 seconds).

Example

curl -X POST "https://api.browsable.app/v1/tasks/reddit-search/runs" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "openai", "_run": { "async": false }}'

Response