# Get the connected account profile

### Get the connected account profile

`GET /api/v1/instagram/me`

Operation ID: `getInstagramAccountProfile`

Returns the profile of the connected account itself, including its follower, following and post counts.

**Query parameters**

- `connectedAccountId` (string · uuid, required): Connected account to act as

**200**: Connected account profile.

- `profile` (object, required)
  - `username` (string | null, required)
  - `profileUrl` (string | null, required)
  - `firstName` (string | null, required): Split out of fullName, the one name a profile carries.
  - `lastName` (string | null, required)
  - `fullName` (string | null, required)
  - `biography` (string | null, required)
  - `category` (string | null, required): Business and creator accounts only.
  - `location` (string | null, required): City, on business accounts only.
  - `imageUrl` (string | null, required)
  - `imageUrlLarge` (string | null, required)
  - `backgroundImageUrl` (string | null, required)
  - `followerCount` (number | null, required)
  - `followingCount` (number | null, required)
  - `postCount` (number | null, required)
  - `externalLinks` (string[], required): Links in the biography.
  - `isPrivate` (boolean, required): True when only a follower can read the posts and followers.
  - `isVerified` (boolean, required)

**Errors**

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