# List followers

### List followers

`GET /api/v1/linkedin/followers`

Operation ID: `listLinkedinFollowers`

Followers of the connected account, or of the person or company given in identity. A company page is readable only by its admins.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `identity` (string, optional): Whose followers to read: a person (user id or public identifier) or a company (public identifier, numeric id, or company URL). Omit for the connected account; a company page is readable only by its admins.
- `cursor` (string, optional)
- `limit` (integer, optional)

**200**: Followers and an optional cursor.

- `users` (object[], required)
- `cursor` (string | null, required)

**Errors**

- `400`: Bad request
- `401`: Unauthorized: missing or invalid API key
- `403`: Forbidden
- `404`: Not found
- `422`: Invalid request payload
