## linkedin/company-affiliated-pages

`GET /v1/linkedin/company-affiliated-pages`

A company's affiliated and showcase pages: id, name, handle, URL, type, speciality, follower count and logo. Not paged upstream.

*LinkedIn company affiliated pages*

| Parameter | Required | Description |
| --- | --- | --- |
| `company_id` | yes | The numeric LinkedIn company id (as linkedin/company answers it) or a company URL carrying it — e.g. `1441` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 3 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/linkedin/company-affiliated-pages?company_id=1441" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "company_id": "example",
  "count": 0,
  "has_more": false,
  "items": [
    {
      "followers": 0,
      "handle": "example",
      "id": "example",
      "logo": "example",
      "name": "example",
      "speciality": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ]
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/linkedin/company-affiliated-pages#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/linkedin/company-affiliated-pages.json)
