# YouTube SocialBlade profile extractor

**Use case:** 

Extract a YouTube creator's public SocialBlade grade, subscribers, views, global ranks, linked socials, and 15-day history.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://socialblade.com/youtube/handle/mrbeast"
    }
  ],
  "profiles": [
    {
      "platform": "youtube",
      "username": "mrbeast"
    }
  ],
  "includeHistory": true,
  "maxProfiles": 1,
  "maxConcurrency": 2,
  "directFirst": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "text"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "displayName": {
    "label": "Display name",
    "format": "text"
  },
  "profileId": {
    "label": "Profile ID",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "audience": {
    "label": "Subscribers / followers",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "uploads": {
    "label": "Uploads",
    "format": "number"
  },
  "grade": {
    "label": "Grade",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "ranks": {
    "label": "Ranks",
    "format": "object"
  },
  "historyIncluded": {
    "label": "History included",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [SocialBlade Creator Stats Scraper](https://apify.com/automation-lab/socialblade-creator-stats-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/socialblade-creator-stats-scraper) to learn more, explore other use cases, and run it yourself.