Skip to main content
GET
/
v2
/
workflow
/
list-official-workflow-templates
List official workflow templates
curl --request GET \
  --url https://api.browseract.com/v2/workflow/list-official-workflow-templates \
  --header 'Authorization: Bearer <token>'
{
  "page": 123,
  "limit": 123,
  "items": [
    {
      "templateId": "<string>",
      "name": "<string>",
      "recommendDesc": "<string>",
      "detailUrl": "<string>"
    }
  ],
  "total_pages": 123,
  "total_count": 123
}

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as Bearer <API_KEY>.

Query Parameters

keyword
string

Search keyword (optional).

page
integer

Page number to retrieve (starts at 1).

Required range: x >= 1
limit
integer

Number of templates per page (max 500).

Required range: 1 <= x <= 500

Response

OK

Paginated response containing workflow templates and metadata.

page
integer<int32>

Current page number.

limit
integer<int32>

Number of items per page.

items
object[]

Templates for the current page.

total_pages
integer<int32>

Total number of pages available.

total_count
integer<int32>

Total number of items.