# Ankorstore products scraper

**Use case:** 

Scrape Ankorstore product listings with brand names, categories, prices, images, wholesale data, and product URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.ankorstore.com/shop/food-drinks-1262/teas-coffee-hot-drinks-1716/coffee-chicory-1735"
    }
  ],
  "searchQueries": [],
  "categoryPaths": [],
  "maxItems": 50,
  "maxPagesPerUrl": 1,
  "includeProductDetails": false,
  "locale": "en"
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "brandName": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Wholesale price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "brandUrl": {
    "label": "Brand URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "madeIn": {
    "label": "Made in",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Ankorstore Products & Brands Scraper](https://apify.com/automation-lab/ankorstore-products-brands-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/ankorstore-products-brands-scraper) to learn more, explore other use cases, and run it yourself.