# Track Etsy prices daily

**Use case:** 

Ready-to-run example: put a list of Etsy listings on a schedule and get price, quantity and favourites back in the same shape every run.

## Input

```json
{
  "mode": "listings",
  "searchTerms": [
    "handmade ceramic mug",
    "personalized leather wallet"
  ],
  "shopNames": [
    "CordovanLeather"
  ],
  "keywordSeeds": [
    "leather wallet"
  ],
  "listingUrls": [
    "https://www.etsy.com/listing/4472929892"
  ],
  "locale": "en-US",
  "maxItems": 100,
  "expandWithKeywords": false,
  "maxListingsPerTerm": 100,
  "maxKeywords": 300,
  "keywordModifiers": true,
  "keywordAlphabet": true,
  "keywordRecursionDepth": 0,
  "includeVariations": false,
  "includeDescription": false,
  "shopSummary": false,
  "onlyBestsellers": false,
  "excludeDigital": false,
  "concurrency": 8
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "priceUsd": {
    "label": "Price (USD)",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "price": {
    "label": "Price (local)",
    "format": "number"
  },
  "favorites": {
    "label": "Favourites",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "isBestseller": {
    "label": "Bestseller",
    "format": "boolean"
  },
  "isTopRated": {
    "label": "Top rated",
    "format": "boolean"
  },
  "tags": {
    "label": "SEO tags",
    "format": "array"
  },
  "quantity": {
    "label": "Qty",
    "format": "number"
  },
  "shopName": {
    "label": "Shop",
    "format": "text"
  },
  "categoryPath": {
    "label": "Category",
    "format": "text"
  },
  "materials": {
    "label": "Materials",
    "format": "array"
  },
  "isDigital": {
    "label": "Digital",
    "format": "boolean"
  },
  "isCustomizable": {
    "label": "Customizable",
    "format": "boolean"
  },
  "whenMade": {
    "label": "When made",
    "format": "text"
  },
  "shipsFromCountry": {
    "label": "Ships from",
    "format": "text"
  },
  "imageCount": {
    "label": "Images",
    "format": "number"
  },
  "images": {
    "label": "Image URLs",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "createdAt": {
    "label": "Created",
    "format": "date"
  },
  "updatedAt": {
    "label": "Updated",
    "format": "date"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "listingId": {
    "label": "Listing id",
    "format": "number"
  },
  "shopId": {
    "label": "Shop id",
    "format": "number"
  },
  "shopUrl": {
    "label": "Shop URL",
    "format": "link"
  },
  "sectionName": {
    "label": "Shop section",
    "format": "text"
  },
  "foundVia": {
    "label": "Found via",
    "format": "text"
  },
  "type": {
    "label": "Row type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Etsy Price Tracker API - Monitor Prices on a Schedule](https://apify.com/vonsensey/etsy-price-tracker-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vonsensey/etsy-price-tracker-api.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/vonsensey/etsy-price-tracker-api.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`).
