# Collect Instagram campaign liker lists

**Use case:** 

Supply public campaign post and Reel URLs to collect source-labelled liker lists for spreadsheet comparison. Each row retains its media source, and an account may appear for multiple sources. Requires a paid plan for multiple media items. Results are available ranked snapshots; overlap analysis is performed separately.

## Input

```json
{
  "posts": [
    "https://www.instagram.com/p/DN8-GjPkgjS/",
    "https://www.instagram.com/reel/DcVpa0UgHdt/"
  ],
  "resultsLimit": 200
}
```

## Output

```json
{
  "profile_pic_url": {
    "label": "Profile picture",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "id": {
    "label": "User ID",
    "format": "string"
  },
  "full_name": {
    "label": "Full name",
    "format": "string"
  },
  "is_private": {
    "label": "Private account",
    "format": "boolean"
  },
  "is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "rank": {
    "label": "Current rank",
    "format": "integer"
  },
  "total_like_count": {
    "label": "Total likes",
    "format": "integer"
  },
  "available_liker_count": {
    "label": "Available likers",
    "format": "integer"
  },
  "source_url": {
    "label": "Source",
    "format": "string"
  },
  "source_shortcode": {
    "label": "Shortcode",
    "format": "string"
  },
  "source_type": {
    "label": "Source type",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Likers Scraper | $0.50/1K on Starter](https://apify.com/publicsignallabs/instagram-likers-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/publicsignallabs/instagram-likers-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/publicsignallabs/instagram-likers-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`).
