# List followed accounts

### List followed accounts

`GET /api/v1/instagram/following`

Operation ID: `listInstagramFollowing`

Returns the accounts one account follows, or the ones the connected account follows when identity is omitted.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `identity` (string, optional): Whose followed accounts 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**: Followed accounts.

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