# All 13 Etsy tags for a search term

**Use case:** 

Ready-to-run example: pull all 13 SEO tags from every listing matching your term, with title, category and favourites beside them.

## Input

```json
{
  "mode": "search",
  "searchTerms": [
    "boho wall art"
  ],
  "shopNames": [
    "CordovanLeather"
  ],
  "keywordSeeds": [
    "leather wallet"
  ],
  "listingUrls": [
    "https://www.etsy.com/listing/4472929892"
  ],
  "locale": "en-US",
  "maxItems": 300,
  "expandWithKeywords": true,
  "maxListingsPerTerm": 100,
  "maxKeywords": 5,
  "keywordModifiers": true,
  "keywordAlphabet": true,
  "keywordRecursionDepth": 0,
  "includeVariations": false,
  "includeDescription": false,
  "shopSummary": true,
  "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 Tags Scraper - All 13 Tags From Any Listing](https://apify.com/vonsensey/etsy-tags-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vonsensey/etsy-tags-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/vonsensey/etsy-tags-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
