Skip to main content

List official bot templates — GET /v3/bots/templates

Returns 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.

Written by Maggie

GET /v3/bots/templates

Returns 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.

Authentication

HTTPBearer

Parameters

  • keyword (query, string, optional) — Search keyword (optional).

  • page (query, integer, optional) — Page number to retrieve (starts at 1).

  • limit (query, integer, optional) — Number of templates per page (max 500).

Responses

200 — Bot templates returned.

{  "items": [    {      "template_id": "string",      "name": "string",      "recommend_desc": "string",      "detail_url": "string"    }  ],  "page": 0,  "limit": 0,  "total_count": 0,  "total_pages": 0}

400 — Bad Request

{  "code": 123,  "msg": "Invalid task_id",  "data": null,  "ts": 1786634400000,  "time": "2026-08-13 18:00:00",  "traceId": "a1b2c3d4e5f6"}

500 — Internal Server Error

{  "code": 123,  "msg": "Invalid task_id",  "data": null,  "ts": 1786634400000,  "time": "2026-08-13 18:00:00",  "traceId": "a1b2c3d4e5f6"}

Did this answer your question?