Bots
API Reference documentation section imported from BrowserAct Docs.
By Maggie1 author5 articles
- List bots — GET /v3/botsReturns a paginated list of Bots that have a runnable published version. ### Filtering - Use `bot_type` to select a Bot type. The public `agent` value means SkillFlow. - Use…
- Retrieve a bot — GET /v3/bots/{bot_id}Fetches a Bot definition, including its creation time and published schemas. For an unpublished Bot owned by the current company, `published_at`, `input_schema`, and `output_schema` are null; attempting to run it…
- List official bot templates — GET /v3/bots/templatesReturns a paginated list of official Bot templates curated by BrowserAct. Use `keyword` for a case-insensitive template name search. Use the returned `template_id` with the template detail or run endpoint.
- Retrieve an official bot template — GET /v3/bots/templates/{template_id}Fetches an official Bot template, including the standard JSON `input_schema` required when creating a template run. If you only need a list of templates, use `GET /v3/bots/templates`.
- Run an official bot template (create a task) — POST /v3/bots/templates/{template_id}/runsStarts a new task execution from an official Bot template and returns a `task_id`. Use `GET /v3/bots/templates` to discover templates and `GET /v3/bots/templates/{template_id}` to inspect the template `input_schema`. Provide an…
