# Read YouTube Channel Profiles, Subscribers and About

**Use case:** 

Give a list of YouTube handles and get one row each with channel name, subscriber count, video count, description, and the link in the about tab. $0.006 each.

## Input

```json
{
  "handles": [
    "https://www.youtube.com/@JaquanNewsomeChannel",
    "https://www.youtube.com/@CoachVincentFitness"
  ],
  "platforms": [
    "youtube"
  ],
  "us_only": false,
  "escalate_on_block": true,
  "contribute_to_shared_pool": true,
  "source_tag": "creator-profile-reader:read-youtube-channel-profiles"
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "handle": {
    "label": "Handle",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile url",
    "format": "string"
  },
  "display_name": {
    "label": "Display name",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "following": {
    "label": "Following",
    "format": "integer"
  },
  "post_count": {
    "label": "Post count",
    "format": "integer"
  },
  "engagement_rate": {
    "label": "Engagement rate",
    "format": "number"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "bio_link": {
    "label": "Bio link",
    "format": "string"
  },
  "business_email": {
    "label": "Business email",
    "format": "string"
  },
  "country_guess": {
    "label": "Country guess",
    "format": "string"
  },
  "creator_id": {
    "label": "Creator id",
    "format": "string"
  },
  "row_status": {
    "label": "Row status",
    "format": "string"
  },
  "error_reason": {
    "label": "Error reason",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Influencer Profile Scraper](https://apify.com/mambalabs/creator-profile-reader.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/creator-profile-reader.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/mambalabs/creator-profile-reader.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`).
