Execute Task API
Execute any custom task by its path template.
POST
/v1/{task_path} Async vs Sync
Add ?async=false for synchronous execution (waits up to 25 seconds).
Example
curl -X POST "https://api.browsable.app/v1/custom-scraper?async=false" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Response
{
"run_id": "run_abc123",
"task_id": "task_456",
"status": "queued"
}