# YouTube Gaming Rankings

**Use case:** 

Get available YouTube gaming rankings for the worldwide country scope and gaming category using the popularity metric. The task saves ranked channels with their rank, source links, and available count fields.

## Input

```json
{
  "countries": [
    "worldwide"
  ],
  "categories": [
    "gaming"
  ],
  "rankingMetric": "popularity"
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "rankingMetric": {
    "label": "Ranking metric",
    "format": "string"
  },
  "channelName": {
    "label": "Channel name",
    "format": "string"
  },
  "youtubeChannelId": {
    "label": "YouTube channel ID",
    "format": "string"
  },
  "youtubeUrl": {
    "label": "YouTube URL",
    "format": "string"
  },
  "playboardUrl": {
    "label": "Playboard URL",
    "format": "string"
  },
  "sourceRankingPageUrl": {
    "label": "Source ranking page URL",
    "format": "string"
  },
  "subscriberCountDisplayed": {
    "label": "Displayed subscriber count",
    "format": "string"
  },
  "subscriberCount": {
    "label": "Subscriber count",
    "format": "integer"
  },
  "viewCountDisplayed": {
    "label": "Displayed view count",
    "format": "string"
  },
  "viewCount": {
    "label": "View count",
    "format": "integer"
  },
  "videoCountDisplayed": {
    "label": "Displayed video count",
    "format": "string"
  },
  "videoCount": {
    "label": "Video count",
    "format": "integer"
  },
  "superChatEarningsDisplayed": {
    "label": "Displayed SuperChat earnings",
    "format": "string"
  },
  "growthDisplayed": {
    "label": "Displayed growth",
    "format": "string"
  },
  "declineDisplayed": {
    "label": "Displayed decline",
    "format": "string"
  },
  "liveWatchedDisplayed": {
    "label": "Displayed live watched",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Playboard YouTube Channel Ranking Scraper](https://apify.com/maximedupre/playboard.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/playboard.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/maximedupre/playboard.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
