# List followers

### List followers

`GET /api/v1/instagram/followers`

Operation ID: `listInstagramFollowers`

Returns the followers of an account, or of the connected account when identity is omitted.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `identity` (string, optional): Whose followers to read. Omit for the connected account.
- `cursor` (string, optional)
- `limit` (integer, optional): Page size, up to 25. A page can hold fewer, so follow cursor until it comes back null.

**200**: Followers.

- `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
