Zara Product Description avatar

Zara Product Description

Pricing

from $6.00 / 1,000 results

Go to Apify Store
Zara Product Description

Zara Product Description

Extract complete Zara.com product data from any product URL: price, colors (with hex codes), sizes, images, materials, category and stock status. Structured JSON with a defined output schema — ready for apps, dashboards, and AI agents to consume directly.

Pricing

from $6.00 / 1,000 results

Rating

5.0

(1)

Developer

Pinto Studio

Pinto Studio

Maintained by Community

Actor stats

3

Bookmarked

14

Total users

0

Monthly active users

2 days ago

Last modified

Share

Zara Product Description Scraper

Turn any Zara.com product URL into clean, structured JSON — name, price, colors, sizes, images, materials, stock status and more. Built on Apify, with a defined input/output schema so it plugs straight into scripts, dashboards, and AI agents (Claude, GPT, and any LLM tool-caller via the Apify MCP Server).


Why use this Actor

  • One input, full product record. Give it a Zara product URL, get back pricing, colors (with hex codes), size availability, images, materials, categories, and stock in one call.
  • Works across Zara's global storefronts. Handles regional currencies, languages, and locale-specific catalogs automatically.
  • Agent-ready by design. Ships with a machine-readable output schema (​.actor/output_schema.json + dataset_schema.json), so AI agents and orchestration frameworks know exactly what fields to expect without guesswork.
  • Batch or single. Pass one URL or hundreds — each result streams to the dataset as soon as it's scraped.
  • No maintenance required. Runs on Apify's infrastructure with automatic retries and proxy handling.

What you get (output fields)

FieldDescription
idZara internal product ID
nameProduct name
descriptionFull product description
brandBrand information
referenceProduct reference / SKU
displayReferenceReference shown on-site
pricingCurrent price, currency, and discount data
colorsAvailable colors, incl. hex codes
imagesProduct image URLs (multiple angles)
detailedCompositionMaterials and care instructions
section / sectionNameStore section (e.g. Woman, Man, Kids)
familyId / familyNameProduct family / category
subfamilyId / subfamilyNameProduct subcategory
kind / type / stateProduct classification and availability state
keywordURL-friendly product keyword/slug
relatedProductsRelated/cross-sell products
firstVisibleDateDate the product first went live

Input

Just one field — an array of Zara product URLs:

{
"productUrls": [
{ "url": "https://www.zara.com/us/en/ruched-asymmetric-top-p01131347.html" },
{ "url": "https://www.zara.com/us/en/sequin-mini-dress-p04772368.html" }
]
}
FieldTypeRequiredDescription
productUrlsArray<Object>YesList of { "url": "..." } objects — any Zara product page URL, any locale

Example output

{
"id": "551557623",
"name": "LEATHER SPORTS SHOE",
"description": "Leather sports shoe. Topstitching detail on the upper...",
"reference": "1301/700",
"pricing": { "price": 5990, "currency": "USD" },
"colors": [{ "name": "BLACK", "hexCode": "#000000" }],
"sectionName": "HOME",
"familyName": "FLAT SHOES",
"state": "visible"
}

Using this Actor with AI agents

This Actor declares a formal output schema (actorOutputSchemaVersion) and dataset schema, which means agentic tools — Claude via the Apify MCP Server, GPT-based agents, LangChain/LlamaIndex tool-callers, or any framework that reads Apify Actor metadata — can discover it, understand its inputs/outputs, and call it without custom glue code.

Typical agent prompt this Actor satisfies directly:

"Look up the price, available colors, and materials for this Zara product: https://www.zara.com/..."

Connect it to Claude or another MCP-compatible agent through the Apify MCP Server, or call it directly via the Apify API / official SDKs (JavaScript, Python) from your own agent tools.

Quick start

  1. Grab one or more Zara product URLs.
  2. Paste them into productUrls (use the input UI, API, or an SDK).
  3. Run the Actor — results appear in the dataset in real time, one item per product.
  4. Export as JSON, CSV, Excel, or pull via the API.
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: '<YOUR_API_TOKEN>' });
const run = await client.actor('pintostudio/zara-product-description').call({
productUrls: [{ url: 'https://www.zara.com/us/en/ruched-asymmetric-top-p01131347.html' }],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Sample use cases

  • Price monitoring — track price and discount changes across a Zara catalog for competitive analysis.
  • Inventory & availability tracking — monitor stock and size availability for specific SKUs.
  • Catalog / feed building — populate a product database or comparison site with structured Zara data.
  • Market & trend research — analyze descriptions, materials, and seasonal collections at scale.
  • AI shopping assistants — give an LLM agent live product facts (price, color, stock) to answer shopper questions accurately.

Regional coverage

Zara serves different currencies, languages, and catalogs per country. This Actor reads the locale directly from the URL you provide and preserves all region-specific pricing and availability in the output — no extra configuration needed.

Support

Questions or issues? Reach out: