# LinkedIn Company

Scrape LinkedIn company page information.

- **Documentation:** [https://scrappa.co/docs/linkedin-api/linkedin_company](https://scrappa.co/docs/linkedin-api/linkedin_company)
- **API group:** LinkedIn API
- **Endpoint:** `GET https://scrappa.co/api/linkedin/company`

## Authentication

Send your Scrappa API key in the `X-API-KEY` request header. Paid endpoints also support accountless x402 payments when called without an API key.

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `url` | string | Yes | LinkedIn company URL |
| `use_cache` | boolean | No | Whether to use cached results (default: false) |
| `maximum_cache_age` | integer | No | Maximum age of cached results in seconds |

## Example request

```bash
#!/bin/bash

curl -X GET \
    -H "x-api-key: YOUR_API_KEY_HERE" \
    "https://scrappa.co/api/linkedin/company?url=https%3A%2F%2Fwww.linkedin.com%2Fcompany%2Fmicrosoft%2F"
```

## Example response

```json
{
    "company": []
}
```

## Errors

| Status | Error | Description |
| --- | --- | --- |
| 422 | Validation Error | The url parameter is missing or is not a valid LinkedIn company URL. |
| 404 | Company Not Found | The company page was not found, private, or not publicly accessible. |
| 503 | LinkedIn Temporarily Unavailable | The upstream service is temporarily unavailable. Please retry shortly. |
| 504 | LinkedIn Timeout | LinkedIn did not respond within the endpoint time budget. |

## More Scrappa resources

- [API documentation](https://scrappa.co/docs)
- [Full LLM-readable API reference](https://scrappa.co/llms-full.txt)
- [OpenAPI specification](https://scrappa.co/docs/api.json)
- [Pricing](https://scrappa.co/pricing)
