# Male Chaturbate Profile Scraper

**Use case:** 

Extract bio, follower counts and social media links from a list of male Chaturbate performers.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://chaturbate.com/emilio_brandon/"
    },
    {
      "url": "https://chaturbate.com/travonidas/"
    },
    {
      "url": "https://chaturbate.com/jodogs/"
    },
    {
      "url": "https://chaturbate.com/mellpup/"
    },
    {
      "url": "https://chaturbate.com/twiinknico/"
    },
    {
      "url": "https://chaturbate.com/nick_owner/"
    }
  ],
  "requireInstagram": false,
  "minFollowers": 0,
  "maxConcurrency": 5,
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "realName": {
    "label": "Real Name",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "instagramFollowers": {
    "label": "IG Followers",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Chaturbate Profile Scraper](https://apify.com/trev0n/chaturbate-profile-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/trev0n/chaturbate-profile-scraper) to learn more, explore other use cases, and run it yourself.