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

# List contacts

> List contacts

### Path parameters

<ParamField path="id" type="string" required>
  Company ID
</ParamField>

### Responses

<ResponseField name="200" type="ContactResponse[]" />

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.stateset.com/api/v1/companies/{id}/contacts' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "email": null,
      "id": "string",
      "name": "string",
      "title": null
    }
  ]
  ```
</ResponseExample>
