# Fintech TikTok Profile Email Extractor

**Use case:** 

Extract emails from TikTok profiles of major fintech companies. Get detailed contact information and follower stats in CSV or JSON format.

## Input

```json
{
  "profiles": [
    "paypal",
    "cashapp",
    "venmo",
    "robinhood",
    "coinbase",
    "chime",
    "sofi",
    "affirm",
    "klarna",
    "stripe"
  ],
  "onlyWithEmail": true,
  "maxConcurrency": 8,
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "nickname": {
    "label": "Name",
    "format": "text"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "heartCount": {
    "label": "Likes",
    "format": "number"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  }
}
```

## About this Actor

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