Skip to main content
POST
/
api
/
workflow_manager
/
start
Peer Comparison
curl --request POST \
  --url https://api.wokelo.ai/api/workflow_manager/start/ \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "workflow": "<string>",
  "websites": {},
  "workbook_name": {}
}
'
{
    "report_id": 1002345
}

Documentation Index

Fetch the complete documentation index at: https://docs.wokelo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Generates a comprehensive comparison of up to 5 companies. The report analyzes multiple dimensions including company fundamentals and firmographics, product offerings and business models, employee reviews and satisfaction, hiring trends and workforce data, and online presence and market visibility.

Endpoint Details

  • Method: POST
  • Endpoint: /api/workflow_manager/start/

Authentication requirements

  • Include a valid JWT token in your request header
  • If you don’t have a token yet, you can get one from the /auth/token/ endpoint first.

Request

Request Parameters

Header Parameters

Authorization
string
required
JWT token obtained from the Authentication request

Body Parameters

workflow
string
required
player_comparison
websites
An array of strings
required
Array of company websites to compare
workbook_name
(string)
Name with which the workbook will be saved
Sample payload
{
    "workflow": "player_comparison",
    "websites": [
        "stripe.com",
        "paypal.com"
    ],
    "workbook_name": "Player Comparison Report"
}

Response

Successful response will include the report_id of the Peer Comparison report

Successful Response Fields

report_id
integer
Report id for the initiated Peer Comparison Report
{
    "report_id": 1002345
}