# Competitor social audience audit

**Use case:** 

Audit competitor social audiences across multiple profiles with timeout and continue-on-error settings for repeatable reporting.

## Input

```json
{
  "profiles": [
    {
      "platform": "youtube",
      "username": "Nike"
    },
    {
      "platform": "youtube",
      "username": "adidas"
    },
    {
      "platform": "twitter",
      "username": "Nike"
    },
    {
      "platform": "twitter",
      "username": "adidas"
    },
    {
      "platform": "tiktok",
      "username": "nike"
    }
  ],
  "continueOnError": true,
  "requestTimeoutSecs": 45
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "displayName": {
    "label": "Display Name",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "posts": {
    "label": "Posts",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Social Media Stats Checker](https://apify.com/automation-lab/social-media-stats-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/social-media-stats-checker) to learn more, explore other use cases, and run it yourself.