# Find BookTok and Bookstagram Influencers

**Use case:** 

Targets BookTok and bookstagram by searching book-recommendation keywords on TikTok and Instagram. The scraper returns each book influencer with audience metrics and contact details.

## Input

```json
{
  "platforms": [
    "youtube",
    "tiktok",
    "instagram"
  ],
  "searchKeywords": [
    "booktok",
    "book recommendations"
  ],
  "channels": [
    "@mkbhd"
  ],
  "profiles": [
    "gymshark"
  ],
  "usernames": [
    "gymshark"
  ],
  "crossPlatformDiscovery": true,
  "discoverRelated": false,
  "maxRelatedPerProfile": 10,
  "maxCreators": 20,
  "onlyNewCreators": false,
  "maxResults": 20,
  "delaySeconds": 0,
  "minFollowers": 0,
  "maxFollowers": 0,
  "onlyVerified": false,
  "onlyBusiness": false,
  "skipPrivate": false,
  "onlyWithWebsite": false,
  "onlyWithEmail": true,
  "onlyVerifiedEmail": false,
  "emailDomains": [
    "@gmail.com"
  ],
  "minScore": 0,
  "enrichEmails": true,
  "writeOpeners": false,
  "llmProvider": "openai",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "socialProxyMode": "datacenter_first"
}
```

## Output

```json
{
  "avatar_url": {
    "label": "Avatar",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "engagement_rate_pct": {
    "label": "Engagement",
    "format": "number"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "email_status": {
    "label": "Email status",
    "format": "text"
  },
  "lead_score": {
    "label": "Lead score",
    "format": "number"
  },
  "lead_grade": {
    "label": "Grade",
    "format": "text"
  },
  "matched_keyword": {
    "label": "Matched keyword",
    "format": "text"
  },
  "profile_url": {
    "label": "Profile link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Creator Leads Scraper: YouTube TikTok Creator Emails, Instagram](https://apify.com/flash_scraper/creator-leads-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/flash_scraper/creator-leads-scraper.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/flash_scraper/creator-leads-scraper.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`).
