# Etsy keyword research from a seed term

**Use case:** 

Ready-to-run example: expand one seed into hundreds of real Etsy shopper phrases, each with the rank Etsy itself gives it.

## Input

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

## Output

```json
{
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "etsyRank": {
    "label": "Etsy rank",
    "format": "number"
  },
  "seed": {
    "label": "Seed",
    "format": "text"
  },
  "source": {
    "label": "Found by",
    "format": "text"
  },
  "categories": {
    "label": "Etsy categories",
    "format": "array"
  },
  "locale": {
    "label": "Locale",
    "format": "text"
  },
  "type": {
    "label": "Row type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Etsy Keyword Research Tool - Ranked Search Suggestions](https://apify.com/vonsensey/etsy-keyword-research-tool.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vonsensey/etsy-keyword-research-tool.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-keyword-research-tool.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`).
