Skip to main content
GET
/
v2
/
workflow
/
get-workflow
Retrieve a workflow
curl --request GET \
  --url https://api.browseract.com/v2/workflow/get-workflow \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "create_at": "2023-11-07T05:31:56Z",
  "publish_at": "2023-11-07T05:31:56Z",
  "input_parameters": [
    {
      "name": "keyword",
      "default_enabled": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

workflow_id
string
required

Workflow ID.

Response

OK

Full workflow configuration.

id
string

Workflow ID

name
string

Workflow name

description
string

Workflow description

create_at
string<date-time>

Workflow creation time

publish_at
string<date-time>

Workflow publish time

input_parameters
object[]

Input parameters required to run this workflow.