# Fashion Nova Products Scraper (`parseforge/fashion-nova-scraper`) Actor

Scrape Fashion Nova products from any collection page: name, price, currency, SKU, image, colour, sizes, availability, category and product URL. Export to CSV, JSON, Excel or XML.

- **URL**: https://apify.com/parseforge/fashion-nova-scraper.md
- **Developed by:** [ParseForge](https://apify.com/parseforge) (community)
- **Categories:** E-commerce, Automation
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.70 / 1,000 product scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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).

# README

[![ParseForge](https://raw.githubusercontent.com/ParseForge/apify-assets/main/banner.jpg)](https://apify.com/parseforge?fpr=vmoqkp)

### Fashion Nova Products Scraper

**Scrape Fashion Nova products from any collection page, up to a million per run.** Every product comes with its name, price, currency, colour, available sizes, stock status, image, and direct URL. No login or API key. Export to CSV, JSON, Excel, or XML.

Fashion Nova's official API does not exist, and manual copying from their site is slow and error-prone. This reads the public product collection pages directly, so you can pull the full catalog or a filtered subset in minutes. Each product is returned as one flat row, ready for your spreadsheet or database.

| Who uses it | What they scrape Fashion Nova for |
|---|---|
| E-commerce analysts | Track Fashion Nova's product catalog and pricing changes over time |
| Dropshippers | Build a product feed for their own store from Fashion Nova's catalog |
| Market researchers | Analyze Fashion Nova's product mix, styles, and price points |
| Price monitoring tools | Keep a daily snapshot of Fashion Nova's prices for competitive analysis |

### What it does

This Actor collects Fashion Nova products from collection pages, visits each product page for its colour, sizes and stock status, and returns each one as a flat row.

- 🔗 **Collection pages:** start from any Fashion Nova collection URL, like the all products page or a category page. Add several URLs to scrape them in one run.
- 📊 **Flat rows:** each product is returned as one row with name, price, currency, colour, sizes, availability, category, image, and URL.
- 💵 **US prices:** every run goes through a US exit, so prices are always in USD.
- ⚙️ **Max items:** set a limit from 1 to 1,000,000 products per run.
- 💾 **Export formats:** download your data as CSV, JSON, Excel, or XML.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

### What you can do with Fashion Nova data

**📈 Monitor Fashion Nova's catalog.**

An e-commerce analyst runs the scraper weekly on the all products collection to track new arrivals and delisted items.

**💰 Build a price comparison dataset.**

A market researcher scrapes Fashion Nova's product prices to compare against competitors and spot pricing trends.

**🛒 Feed a dropshipping store.**

A dropshipper scrapes Fashion Nova's products and imports the titles, prices, and images into their own storefront.

**🔍 Research product details.**

A product analyst scrapes a specific collection to gather product titles and prices for a category deep dive.

### Why choose this scraper

| | What you get |
|---|---|
| **No API key** | Fashion Nova has no public API, so this scrapes the site directly |
| **Flat schema** | Every product is one row, easy to import into any tool |
| **Scalable** | Scrape up to a million products per run on a paid plan |
| **Export ready** | Get your data in CSV, JSON, Excel, or XML |

### Output fields

| Field | Example |
|---|---|
| `name` | Georgia Mock Neck Maxi Dress |
| `price` | 25 |
| `currency` | USD |
| `color` | Black/combo |
| `size` | \["XS", "S", "M", "L", "XL", "1X", "2X", "3X"] |
| `availability` | InStock |
| `category` | Dresses |
| `breadcrumb` | \["Home", "Collections", "Dresses"] |
| `productId` | DC3489 |
| `sku` | DC3489 |
| `imageUrl` | https://cdn.shopify.com/s/files/1/0293/9277/files/... |
| `productUrl` | https://www.fashionnova.com/products/georgia-mock-neck-maxi-dress |
| `scrapedAt` | 2026-09-07T15:56:30.452Z |
| `error` | null |

`price` is the lowest variant price on the product page. `size` lists the sizes the product page offers, and `availability` is InStock when at least one of them can be bought.

### Configure the run

Drive the Actor from one or more Fashion Nova collection URLs, and set a maximum number of products to scrape. The Input tab lists every parameter.

A first run with the defaults:

```json
{
 "startUrls": [
 "https://www.fashionnova.com/collections/all"
 ],
 "maxItems": 10
}
```

A larger pull:

```json
{
 "startUrls": [
 "https://www.fashionnova.com/collections/all"
 ],
 "maxItems": 200
}
```

Several collections at once:

```json
{
 "startUrls": [
 "https://www.fashionnova.com/collections/dresses",
 "https://www.fashionnova.com/collections/jeans"
 ],
 "maxItems": 500
}
```

### Free users

Free-plan runs return up to 10 results as a preview. [Upgrade your Apify plan](https://console.apify.com/sign-up?fpr=vmoqkp) to collect up to 1,000,000 results per run.

### Run it

1. [Create a free Apify account with $5 in credit](https://console.apify.com/sign-up?fpr=vmoqkp).
2. Open the [Fashion Nova Products Scraper](https://apify.com/parseforge/fashion-nova-scraper?fpr=vmoqkp).
3. Set your inputs and any filters, then click **Start**.
4. Export the results as CSV, Excel, JSON, or XML from the **Dataset** tab.

Run it programmatically through the [Apify API](https://docs.apify.com/api/v2) (`run-sync-get-dataset-items`) or the [ApifyClient](https://docs.apify.com/api/client/js) for JavaScript and Python.

### Use with AI agents (MCP)

Give an AI agent live access to Fashion Nova through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

```bash
claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/fashion-nova-scraper"
```

Then prompt it in plain language to run the scraper and read back the results.

### Troubleshooting

**Why am I getting no results?**

Check that your start URLs are valid Fashion Nova collection pages and that they are publicly accessible. Also make sure maxItems is set to at least 1.

**Why did the run stop after 10 products?**

Free users are limited to 10 products per run. Upgrade to a paid plan to scrape more.

**Why are some products missing?**

The scraper reads the products Fashion Nova lists on the collection page at the time of the run and pages through the collection until it ends. Products that are not listed there are not scraped.

**Can I scrape multiple collection pages in one run?**

Yes. Add multiple start URLs in the input, and the scraper will process them all.

**Why does the price differ from what I see on the site?**

The scraper returns the lowest variant price in USD. Fashion Nova shows local currency and prices to visitors from some countries, so a browser in Sweden or the EU will see a different figure.

### FAQ

| Question | Answer |
|---|---|
| Do I need a Fashion Nova API key? | No. Fashion Nova does not offer a public API, so this Actor scrapes the public collection pages directly. You only need the collection URLs. |
| Can I scrape all Fashion Nova products? | Yes. Start with the all products collection URL and set maxItems to a high number. On a paid plan you can scrape up to 1,000,000 products per run. |
| What data do I get for each product? | Name, price, currency, colour, sizes, availability, category, breadcrumb, product ID, SKU, image URL, and product URL. See the output fields table above. |
| Can I scrape a specific category? | Yes. Use the URL of any Fashion Nova collection page, such as dresses or jeans, as a start URL. |
| How do I export the data? | After the run finishes, you can download the results as CSV, JSON, Excel, or XML from the Apify dataset. |
| Is there a limit on how many products I can scrape? | Free users are limited to 10 products per run as a preview. Paid users can set maxItems up to 1,000,000. |
| Can I run this on a schedule? | Yes. You can set up a recurring schedule in Apify to run the scraper daily, weekly, or at any interval you need. |
| Does this work with Fashion Nova's mobile site? | The scraper is designed for the desktop collection pages. Use the standard www.fashionnova.com URLs. |
| What if a product is out of stock? | The scraper returns whatever is listed on the collection page. If a product is not shown, it will not be scraped. |
| Can I get product descriptions? | No. The Actor returns sizes, colour and stock status from the product page, but not the description text or reviews. |

### Related actors

Browse the full [ParseForge collection](https://apify.com/parseforge?fpr=vmoqkp) for more scrapers.

🆘 **Need help?** Email parseforge@protonmail.com with your run ID, your input, and what you expected.

⚠️ **Disclaimer.** This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Fashion Nova, LLC. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.

# Actor input Schema

## `startUrls` (type: `array`):

Add one or more Fashion Nova collection pages to scrape, for example the all products collection.

## `maxItems` (type: `integer`):

Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000

## Actor input object example

```json
{
  "startUrls": [
    "https://www.fashionnova.com/collections/all"
  ],
  "maxItems": 10
}
```

# Actor output Schema

## `overview` (type: `string`):

Image, name, price, colour, sizes, availability and URL per product

## `fullData` (type: `string`):

Complete dataset with every field, including SKU, category, breadcrumb and scrape timestamp

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        "https://www.fashionnova.com/collections/all"
    ],
    "maxItems": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("parseforge/fashion-nova-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": ["https://www.fashionnova.com/collections/all"],
    "maxItems": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("parseforge/fashion-nova-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    "https://www.fashionnova.com/collections/all"
  ],
  "maxItems": 10
}' |
apify call parseforge/fashion-nova-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,parseforge/fashion-nova-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/szllOK2zVOcIFN2HM/builds/Cph8fAJKIXDCedgeH/openapi.json
