> ## 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.

# Industry Research

## Overview

Starts generating an Industry Research report for your specified industry.

## 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

<ParamField header="Authorization" type="string" required>
  JWT token obtained from the Authentication request
</ParamField>

#### Body Parameters

<ParamField body="industry" type="string" required>
  Industry on which the report will be created
</ParamField>

<ParamField body="workflow" type="string" required>
  `industry_primer`
</ParamField>

<ParamField body="custom_files" type="array of objects">
  Files to include in the report. Use fileName values from the file upload response
</ParamField>

## Response

Success response will include the report\_id of the Industry Research report

#### Successful Response Fields

<ResponseField name="report_id" type="integer">
  Report id of the Industry Research
</ResponseField>

<ResponseExample>
  ```json 200 theme={"system"}
  {
      "report_id": 123345
  }
  ```
</ResponseExample>
