# YouTube TikTok Twitter stats scraper

**Use case:** 

Extract public profile statistics for selected YouTube, TikTok, and Twitter accounts with usernames, URLs, and error handling.

## Input

```json
{
  "profiles": [
    {
      "platform": "youtube",
      "username": "mkbhd"
    },
    {
      "platform": "tiktok",
      "username": "natgeo"
    },
    {
      "platform": "twitter",
      "username": "NASA"
    }
  ],
  "continueOnError": true,
  "requestTimeoutSecs": 30
}
```

## 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.