# Vinted Seller Watchlist — Daily Profile Snapshots

**Use case:** 

Save a public Vinted seller profile snapshot, then schedule the Task daily and export the snapshots for comparison. Includes visible ratings, counts and profile signals; no built-in cross-run seller delta or automatic schedule.

## Input

```json
{
  "workflowPreset": "SELLER_WATCHLIST",
  "query": "nike air force 1",
  "countries": [
    "fr",
    "de",
    "nl",
    "it",
    "es"
  ],
  "maxItems": 100,
  "mode": "SELLER_PROFILE",
  "itemUrls": [
    "https://www.vinted.fr/items/5765415416-nike-air-max"
  ],
  "sellerUrls": [
    "https://www.vinted.fr/member/18816404-jnn3101"
  ],
  "sortBy": "relevance",
  "includeSellerDetails": false,
  "includePhotos": false,
  "trackingStoreName": "vinted-sell-through-tracker",
  "missingRunsThreshold": 2,
  "emitActiveItems": true,
  "emitRunSummary": true,
  "maxConcurrency": 5,
  "maxRequestRetries": 3,
  "requestDelayMs": 500
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "text"
  },
  "sellerId": {
    "label": "Seller ID",
    "format": "number"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Reviews",
    "format": "number"
  },
  "itemCount": {
    "label": "Active items",
    "format": "number"
  },
  "soldItemCount": {
    "label": "Sold items",
    "format": "number"
  },
  "sellThroughRate": {
    "label": "Sell-through rate",
    "format": "number"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "followingCount": {
    "label": "Following",
    "format": "number"
  },
  "lastSeenAt": {
    "label": "Last seen",
    "format": "date"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Vinted Smart Scraper - Cross-Country Arbitrage Scanner](https://apify.com/kazkn/vinted-smart-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kazkn/vinted-smart-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/kazkn/vinted-smart-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`).
