# Follow an Instagram user

### Follow an Instagram user

`POST /api/v1/instagram/follows`

Operation ID: `followInstagramUser`

**Request body** (required)

- `connectedAccountId` (string · uuid, required): Connected account to act as
- `identity` (string, required): Username, provider id, or profile URL
- `dryRun` (boolean, optional)

**201**: Follow result.

- `result` (object | null, required)
  - `providerInvitationId` (string | null, required)
  - `sentAt` (string · date-time, required)
- `remainingToday` (integer, required)

**Errors**

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