> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peopledatalabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Output Response - Company Search API

## Response Data Structure

Here is an example response from the Company Search API:

```json
{
    "status": 200,
    "data": [
        {
            "id": "tnHcNHbCv8MKeLh92946LAkX6PKg",
            "name": "people data labs",
            ...
        },
        ...
    ],
    "total": 6,
    "scroll_token": "13.312621$543927"
}
```

## Response Fields

### `data.*`

| Type             | Description                                                                                                                  |
| :--------------- | :--------------------------------------------------------------------------------------------------------------------------- |
| `Array (Object)` | The company response objects that match the input query in the format described in our [Company Schema](https://docs.peopledatalabs.com/docs/company-schema). |

The `data` list is made up of objects that contain the entire [PDL profile](https://docs.peopledatalabs.com/docs/company-schema) for each company that matches the Search API request. Any profile field that we do not have data for will have a `null` value.

<br />

### `status`

| Type      | Description                          |
| :-------- | :----------------------------------- |
| `Integer` | The [API response code](https://docs.peopledatalabs.com/docs/errors). |

<br />

### `total`

| Type      | Description                                               |
| :-------- | :-------------------------------------------------------- |
| `Integer` | The total number of records that matched the input query. |

<br />

### `scroll_token`

| Type     | Description                                                               |
| :------- | :------------------------------------------------------------------------ |
| `String` | The scroll token to use to fetch the next batch of results for the query. |

For more information on using `scroll_token`, see [here](https://docs.peopledatalabs.com/docs/input-parameters-company-search-api#scroll_token).

## Errors

Any request that does not return a `200` success response will instead use the format described in [Errors](https://docs.peopledatalabs.com/docs/errors).