Skip to main content
GET
/
v2
/
workflow
/
list-workflows
List workflows
curl --request GET \
  --url https://api.browseract.com/v2/workflow/list-workflows \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "limit": 20,
  "items": [
    {
      "id": "wf_123456789",
      "name": "Price Monitor",
      "description": "Scrape product prices and export CSV.",
      "create_at": "2023-11-07T05:31:56Z",
      "publish_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total_pages": 5,
  "total_count": 87
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Page number to retrieve (starts at 1).

Required range: x >= 1
limit
integer

Number of workflows per page (max 500).

Required range: 1 <= x <= 500

Response

OK

Paginated response containing items and metadata.

page
integer<int32>

Current page number.

Example:

1

limit
integer<int32>

Number of items per page.

Example:

20

items
object[]

Items for the current page.

total_pages
integer<int32>

Total number of pages available.

Example:

5

total_count
integer<int32>

Total number of items.

Example:

87