# Find Bilibili and Douyin creator contacts

**Use case:** 

Chinese creators mostly have no website — the business contact is a WeChat or QQ ID written into the profile bio, and that bio never appears in search results. Anything that only reads links reports these creators as unreachable when they are not. Give it the profile link instead: it fetches the profile, reads the bio and returns the ID, labelled by where it came from.

## Input

```json
{
  "websites": [
    "https://www.smart-trucking.com",
    "seattlecoffeegear.com"
  ],
  "texts": [
    "Business enquiries: hello (at) mysite (dot) com · IG @coffeeguy · 商务微信：coffee2026"
  ],
  "profileUrls": [
    "https://space.bilibili.com/314767915",
    "https://www.douyin.com/user/MS4wLjABAAAAUT_tvNpyI5-tObkvU2xaaqyeDpek5UJXLG8mePjYxTQ"
  ],
  "names": [
    "Smart Trucking",
    "Seattle Coffee Gear"
  ],
  "deepCheck": false,
  "checkEmailDomains": false,
  "verifyEmails": false,
  "readSocialProfiles": false,
  "maxPagesPerSite": 3,
  "strictOwnDomain": true,
  "respectRobots": true
}
```

## Output

```json
{
  "name": {
    "label": "Who",
    "format": "text"
  },
  "emailsOnOwnDomain": {
    "label": "Emails on their own domain",
    "format": "array"
  },
  "emailsElsewhere": {
    "label": "Other emails (may be a sponsor)",
    "format": "array"
  },
  "messengers": {
    "label": "WeChat / QQ / Kakao / LINE",
    "format": "array"
  },
  "socials": {
    "label": "Social profiles",
    "format": "array"
  },
  "handles": {
    "label": "Handles written as text",
    "format": "array"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "pagesRead": {
    "label": "Pages read",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Contact Details Scraper — Emails, Socials, WeChat & Kakao 联系方式](https://apify.com/lexonia/contact-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lexonia/contact-finder.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/lexonia/contact-finder.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`).
