# Find Macro Influencers Above 500K Followers by Keyword

**Use case:** 

Search TikTok and Instagram for macro creators above 500,000 followers. One flat row per creator with handle, profile URL, and follower count. $0.007 each.

## Input

```json
{
  "keywords": [
    "fitness coach",
    "skincare tips"
  ],
  "niche": "custom",
  "max_keywords_per_niche": 10,
  "platforms": [
    "tiktok",
    "instagram"
  ],
  "max_creators_per_keyword": 20,
  "max_creators": 100,
  "follower_min": 500000,
  "follower_max": 5000000,
  "us_only": true,
  "contribute_to_shared_pool": true,
  "source_tag": "creator-finder:find-macro-influencers-over-500k-followers"
}
```

## 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"
  },
  "search_keyword": {
    "label": "Search keyword",
    "format": "string"
  },
  "niche": {
    "label": "Niche",
    "format": "string"
  },
  "similar_creators": {
    "label": "Similar creators",
    "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 Finder](https://apify.com/mambalabs/creator-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/creator-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/mambalabs/creator-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`).
