# Ramen Prices at asiafoodland

**Use case:** 

Export every ramen asiafoodland sells: price, price per kilo, brand, pack size and stock. CSV or JSON, no account.

## Input

```json
{
  "operation": "catalog",
  "searchTerms": [
    "ramen"
  ],
  "shelf": "Any",
  "categoryUrls": [
    "https://www.asiafoodland.de/food/gewuerze-pasten/pasten/currypaste/",
    "https://www.asiafoodland.de/sushi-co/sushi-zutaten/"
  ],
  "sortBy": "shopDefault",
  "inStockOnly": true,
  "productUrls": [
    "https://www.asiafoodland.de/food/reis-nudeln/nudeln/reisnudeln/farmer-reisnudeln-s-1mm-reisbandnudeln-400g.html",
    "https://www.asiafoodland.de/food/snacks-suesses/snacks/taro-fisch-snack-bbq-52g.html"
  ],
  "maxItems": 25
}
```

## Output

```json
{
  "productName": {
    "label": "🍜 Product",
    "format": "string"
  },
  "productUrl": {
    "label": "🔗 Product page",
    "format": "string"
  },
  "productId": {
    "label": "🆔 Shop product ID",
    "format": "integer"
  },
  "sku": {
    "label": "🔢 Article number",
    "format": "string"
  },
  "ean": {
    "label": "🏷️ EAN barcode",
    "format": "string"
  },
  "brand": {
    "label": "🏢 Brand",
    "format": "string"
  },
  "priceEur": {
    "label": "💶 Price EUR",
    "format": "number"
  },
  "priceText": {
    "label": "🏷️ Price as shown",
    "format": "string"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "oldPriceEur": {
    "label": "📉 Previous price EUR",
    "format": "number"
  },
  "onSale": {
    "label": "🔥 On offer",
    "format": "boolean"
  },
  "saleEndsAt": {
    "label": "⏰ Offer ends",
    "format": "string"
  },
  "packSize": {
    "label": "📦 Pack size",
    "format": "string"
  },
  "basePriceEur": {
    "label": "⚖️ Price per unit EUR",
    "format": "number"
  },
  "basePriceUnit": {
    "label": "📏 Unit",
    "format": "string"
  },
  "vatNote": {
    "label": "🧾 VAT",
    "format": "string"
  },
  "availability": {
    "label": "📦 Availability",
    "format": "string"
  },
  "inStock": {
    "label": "✅ In stock",
    "format": "boolean"
  },
  "stockQuantity": {
    "label": "🔢 Units on hand",
    "format": "integer"
  },
  "deliveryTime": {
    "label": "🚚 Delivery window",
    "format": "string"
  },
  "ratingPercent": {
    "label": "⭐ Rating %",
    "format": "integer"
  },
  "reviewCount": {
    "label": "💬 Reviews",
    "format": "integer"
  },
  "imageUrl": {
    "label": "🖼️ Image",
    "format": "string"
  },
  "imageUrls": {
    "label": "🖼️ All images",
    "format": "array"
  },
  "categoryPath": {
    "label": "🗂️ Shelf path",
    "format": "string"
  },
  "productDescription": {
    "label": "📝 Description",
    "format": "string"
  },
  "ingredients": {
    "label": "🥗 Ingredients",
    "format": "string"
  },
  "countryOfOrigin": {
    "label": "🌏 Country of origin",
    "format": "string"
  },
  "allergens": {
    "label": "⚠️ Allergens",
    "format": "string"
  },
  "packContent": {
    "label": "📦 Content",
    "format": "string"
  },
  "storageNote": {
    "label": "🧊 Storage",
    "format": "string"
  },
  "manufacturer": {
    "label": "🏭 Manufacturer or importer",
    "format": "string"
  },
  "attributes": {
    "label": "🧬 All shop attributes",
    "format": "object"
  },
  "operation": {
    "label": "🎛️ Mode",
    "format": "string"
  },
  "searchTerm": {
    "label": "🔍 Search term",
    "format": "string"
  },
  "sourceShelf": {
    "label": "📂 Read from",
    "format": "string"
  },
  "listingPosition": {
    "label": "#️⃣ Position on page",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "🕒 Read at",
    "format": "string"
  },
  "errorMessage": {
    "label": "❗ Note",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [asiafoodland Scraper - German Asia Shop Prices](https://apify.com/sian.agency/asiafoodland-product-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/asiafoodland-product-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/sian.agency/asiafoodland-product-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).
