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

# Peer Comparison

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

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

#### Body Parameters

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

<ParamField body="websites" type="An array of strings" required>
  Array of company websites to compare
</ParamField>

<ParamField body="workbook_name" type="(string)">
  Name with which the workbook will be saved
</ParamField>

**Sample payload**

```json theme={"system"}
{
    "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

<ResponseField name="report_id" type="integer">
  Report id for the initiated Peer Comparison Report
</ResponseField>

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