# Read Pinterest Profiles by Handle, Followers and Bio

**Use case:** 

Give a list of Pinterest handles and get one row each with display name, follower count, following, bio, and the website on the profile. $0.006 per profile.

## Input

```json
{
  "handles": [
    "https://www.pinterest.com/elrickjones/",
    "https://www.pinterest.com/Zoelivelovelift/"
  ],
  "platforms": [
    "pinterest"
  ],
  "us_only": false,
  "escalate_on_block": true,
  "contribute_to_shared_pool": true,
  "source_tag": "creator-profile-reader:read-pinterest-profiles-by-handle"
}
```

## 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"
  },
  "following": {
    "label": "Following",
    "format": "integer"
  },
  "post_count": {
    "label": "Post count",
    "format": "integer"
  },
  "engagement_rate": {
    "label": "Engagement rate",
    "format": "number"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "bio": {
    "label": "Bio",
    "format": "string"
  },
  "bio_link": {
    "label": "Bio link",
    "format": "string"
  },
  "business_email": {
    "label": "Business email",
    "format": "string"
  },
  "country_guess": {
    "label": "Country guess",
    "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 Profile Scraper](https://apify.com/mambalabs/creator-profile-reader.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mambalabs/creator-profile-reader.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-profile-reader.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`).
