Skip to main content
POST
/
api
/
workflow_manager
/
start
Company Research
curl --request POST \
  --url https://api.wokelo.ai/api/workflow_manager/start/ \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "industry": "<string>",
  "permalink": "<string>",
  "website": "<string>",
  "workflow": "<string>",
  "custom_files": {}
}
'
{
    "report_id": 123345
}

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

Starts generating a Company Research report for a specific company.

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

industry
string
Company’s industry. If not provided, Wokelo will auto-detect the industry
Crunchbase permalink of the company
website
string
required
website of the company
workflow
string
required
company_primer
custom_files
array of objects
Files to include in the report. Use fileName values from the file upload response
Note: Either of company’s permalink or website is required for the company-based workflows

Response

Successful response will include the report_id of the Company Research report

Successful Response Fields

report_id
integer
Report id for the initiated Company Research report
{
    "report_id": 123345
}