# German Car Brand Instagram Profiles (Germany)

**Use case:** 

Scrape Instagram profiles of Germany's top car brands: follower counts, engagement, recent posts, and bios. Export to JSON, CSV, or Excel.

## Input

```json
{
  "urls": [
    "https://www.instagram.com/bmw/",
    "https://www.instagram.com/mercedesbenz/",
    "https://www.instagram.com/audi/",
    "https://www.instagram.com/porsche/",
    "https://www.instagram.com/volkswagen/"
  ]
}
```

## Output

```json
{
  "account": {
    "label": "Account",
    "format": "string"
  },
  "full_name": {
    "label": "Full Name",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "following": {
    "label": "Following",
    "format": "integer"
  },
  "posts_count": {
    "label": "Posts Count",
    "format": "integer"
  },
  "avg_engagement": {
    "label": "Average Engagement",
    "format": "number"
  },
  "is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "biography": {
    "label": "Biography",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Profile Scraper ⚡ No Login Required](https://apify.com/vulnv/instagram-profile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vulnv/instagram-profile-scraper) to learn more, explore other use cases, and run it yourself.