# Grailed Scraper (`unfenced-group/grailed-scraper`) Actor

Scrape Grailed designer and streetwear listings with full price-drop history, size, condition, designer and seller reputation. Search, browse by designer or category, filter by price and condition. Sold-archive mode adds sold price and date. The lowest-priced Grailed actor.

- **URL**: https://apify.com/unfenced-group/grailed-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.19 / 1,000 listing results

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Grailed Scraper

Scrape Grailed designer and streetwear listings at scale, including the sold archive for market-value research. Search by keyword, browse by designer or category, and filter by price, condition and department. No API key required.

---

### Why this scraper?

#### 🏷️ Complete listing data
Price, full price-drop history, designer, size, color, condition, category, shipping, and engagement metrics on every result.

#### 📉 Sold-comp data
Switch to the sold archive to get sold price and sold date for any search — the data resellers use to value inventory and price listings. Each sold run also reports an outlier-trimmed median sold price and median markdown percentage in the run summary.

#### 🔍 Powerful filtering
Filter by price range, condition, department, and on-sale status. Sort by relevance, newest, popularity, or price.

#### ⭐ Seller reputation
Seller rating, review count, total sales, and trusted-seller status — without exposing any individual's personal details.

#### 💸 The lowest price on the Store
Flat per-result pricing that undercuts every comparable Grailed actor, with no separate start fees.

---

### Input parameters

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `search` | `search`, `byDesigner`, or `byCategory`. |
| `searchQuery` | string | `nike` | Free-text query (mode = search). |
| `designer` | string | — | Designer name to filter by, e.g. `Nike`, `Supreme`, `Rick Owens`. |
| `category` | string | — | Category to filter by, e.g. `footwear`, `tops`, `outerwear`, `bottoms`, `accessories`. |
| `department` | string | `` | `menswear`, `womenswear`, or any. |
| `condition` | string | `` | `is_new`, `is_gently_used`, `is_used`, `is_worn`, or any. |
| `soldOnly` | boolean | `false` | Scrape the sold archive instead of active listings. |
| `sortBy` | string | `relevance` | `relevance`, `newest`, `most_popular`, `price_low_to_high`, `price_high_to_low`. |
| `minPrice` | integer | — | Only emit listings at or above this price. |
| `maxPrice` | integer | — | Only emit listings at or below this price. |
| `onSaleOnly` | boolean | `false` | Keep only price-dropped listings. |
| `maxResults` | integer | `5` | Cap on results. Set 0 for no cap (max 1000 per query). |
| `maxPages` | integer | `5` | Maximum pages to walk (48 per page, max 21). |

---

### Output schema

| Field | Type | Description |
|---|---|---|
| `id` | number | Grailed listing ID. |
| `title` | string | Listing title. |
| `url` | string | Full listing URL. |
| `designer` | string | Designer name(s) as shown. |
| `designers` | array | Individual designer names. |
| `department` | string | menswear or womenswear. |
| `category` | string | Top-level category. |
| `categoryPath` | string | Full category path. |
| `size` | string | Item size. |
| `color` | string | Primary color. |
| `condition` | string | Item condition. |
| `strata` | string | Grailed tier (e.g. hype, grailed, basic). |
| `price` | number | Current price (USD). |
| `priceDrops` | array | Price-drop history. |
| `onSale` | boolean | Has had a price drop. |
| `makeOffer` | boolean | Accepts offers. |
| `buyNow` | boolean | Buy-now enabled. |
| `priceUpdatedAt` | string | When the price last changed. |
| `shippingUS` | number | US shipping cost. |
| `sold` | boolean | Whether the listing is sold. |
| `soldPrice` | number | Sold price (sold archive only). |
| `soldAt` | string | Sold date (sold archive only). |
| `heat` | number | Grailed heat / popularity score. |
| `followerCount` | number | Listing followers. |
| `photoCount` | number | Number of photos. |
| `measurementCount` | number | Number of measurements provided. |
| `coverPhotoUrl` | string | Cover photo URL. |
| `location` | string | Seller region. |
| `createdAt` | string | Listing creation date. |
| `sellerRating` | number | Seller average rating. |
| `sellerRatingCount` | number | Number of seller reviews. |
| `sellerTotalSold` | number | Seller's total bought and sold. |
| `sellerTrusted` | boolean | Trusted-seller flag. |
| `marketplace` | string | Source marketplace. |
| `source` | string | Always `Grailed`. |
| `scrapedAt` | string | ISO timestamp of extraction. |

---

### Examples

**Search menswear Nike under $200:**

```json
{
  "mode": "search",
  "searchQuery": "nike",
  "department": "menswear",
  "maxPrice": 200,
  "maxResults": 100
}
````

**Sold-comp research for a designer:**

```json
{
  "mode": "search",
  "searchQuery": "rick owens ramones",
  "soldOnly": true,
  "sortBy": "newest",
  "maxResults": 200
}
```

**On-sale outerwear, price high to low:**

```json
{
  "mode": "search",
  "searchQuery": "carhartt jacket",
  "category": "outerwear",
  "onSaleOnly": true,
  "sortBy": "price_high_to_low",
  "maxResults": 100
}
```

***

### 💰 Pricing

**$1.49 per 1,000 listings** — you only pay for results returned. No start fees, no charges for retries.

| Results | Cost |
|---|---|
| 100 | ~$0.15 |
| 1,000 | ~$1.49 |
| 10,000 | ~$14.90 |
| 100,000 | ~$149.00 |

Higher subscription tiers pay less, down to $0.99 per 1,000.

> Flat-rate alternatives typically charge a monthly fee regardless of usage.

Use **Max results** to control spend exactly.

***

### Performance

| Run size | Typical time |
|---|---|
| 100 results | under 30 seconds |
| 1,000 results | 1–2 minutes |

***

### Known limitations

- Each query returns at most 1,000 results. Use price ranges, categories, or more specific queries to segment large catalogues.
- Sold data is available only in sold mode (`soldOnly: true`).
- Prices are in USD as provided by Grailed.

### Run summary

Every run writes an `OUTPUT` key with the result count and dataset URL. In sold mode it also includes `soldComps` — the number of sold items, an outlier-trimmed `medianSoldPrice`, and `medianMarkdownPct` (median discount from original list price to final sale).

***

### Technical details

- **Source:** grailed.com — designer and streetwear resale marketplace
- **Memory:** 512 MB
- **Retry:** Automatic retry with backoff on transient errors
- **Output:** Dataset records plus `OUTPUT` and `HEALTH` keys

***

### Need a custom scraper?

**[Unfenced Group](https://www.unfencedgroup.nl)** builds Apify actors for any website — for free.

If the site you need isn't in our portfolio yet, just ask. We scope, build, and publish it at no cost to you. You only pay for results — we absorb the compute and proxy costs ourselves.

**Get in touch:** [www.unfencedgroup.nl](https://www.unfencedgroup.nl)

# Actor input Schema

## `mode` (type: `string`):

What to scrape.

## `searchQuery` (type: `string`):

Free-text query (mode = search). E.g. 'nike air max', 'rick owens', 'carhartt jacket'.

## `designer` (type: `string`):

Designer name to filter by (mode = byDesigner, or as a filter). Must match Grailed's spelling, e.g. 'Nike', 'Supreme', 'Rick Owens', 'Carhartt'.

## `category` (type: `string`):

Top-level category to filter by, e.g. 'footwear', 'tops', 'outerwear', 'bottoms', 'accessories', 'tailoring'.

## `department` (type: `string`):

Department filter.

## `condition` (type: `string`):

Filter by item condition.

## `soldOnly` (type: `boolean`):

Scrape the sold archive instead of active listings — for sold-comp and market-value research. Adds soldPrice and soldAt to every record.

## `sortBy` (type: `string`):

How to sort results.

## `minPrice` (type: `integer`):

Only emit listings priced at or above this value.

## `maxPrice` (type: `integer`):

Only emit listings priced at or below this value.

## `onSaleOnly` (type: `boolean`):

Keep only listings that have had a price drop.

## `maxResults` (type: `integer`):

Hard cap on results emitted. Set 0 for no cap (Grailed's search index returns at most 1000 per query).

## `maxPages` (type: `integer`):

Maximum pages to walk (48 listings per page, max 21).

## Actor input object example

```json
{
  "mode": "search",
  "searchQuery": "nike",
  "department": "",
  "condition": "",
  "soldOnly": false,
  "sortBy": "relevance",
  "onSaleOnly": false,
  "maxResults": 5,
  "maxPages": 5
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "mode": "search",
    "searchQuery": "nike",
    "department": "",
    "condition": "",
    "sortBy": "relevance",
    "maxResults": 5,
    "maxPages": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/grailed-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 = {
    "mode": "search",
    "searchQuery": "nike",
    "department": "",
    "condition": "",
    "sortBy": "relevance",
    "maxResults": 5,
    "maxPages": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/grailed-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "mode": "search",
  "searchQuery": "nike",
  "department": "",
  "condition": "",
  "sortBy": "relevance",
  "maxResults": 5,
  "maxPages": 5
}' |
apify call unfenced-group/grailed-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=unfenced-group/grailed-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Grailed Scraper",
        "description": "Scrape Grailed designer and streetwear listings with full price-drop history, size, condition, designer and seller reputation. Search, browse by designer or category, filter by price and condition. Sold-archive mode adds sold price and date. The lowest-priced Grailed actor.",
        "version": "0.0",
        "x-build-id": "PhRlInAfNW6sdaCDq"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~grailed-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-grailed-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/unfenced-group~grailed-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-grailed-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/unfenced-group~grailed-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-grailed-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "byDesigner",
                            "byCategory"
                        ],
                        "type": "string",
                        "description": "What to scrape.",
                        "default": "search"
                    },
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Free-text query (mode = search). E.g. 'nike air max', 'rick owens', 'carhartt jacket'.",
                        "default": "nike"
                    },
                    "designer": {
                        "title": "Designer / brand",
                        "type": "string",
                        "description": "Designer name to filter by (mode = byDesigner, or as a filter). Must match Grailed's spelling, e.g. 'Nike', 'Supreme', 'Rick Owens', 'Carhartt'."
                    },
                    "category": {
                        "title": "Category",
                        "type": "string",
                        "description": "Top-level category to filter by, e.g. 'footwear', 'tops', 'outerwear', 'bottoms', 'accessories', 'tailoring'."
                    },
                    "department": {
                        "title": "Department",
                        "enum": [
                            "",
                            "menswear",
                            "womenswear"
                        ],
                        "type": "string",
                        "description": "Department filter.",
                        "default": ""
                    },
                    "condition": {
                        "title": "Condition",
                        "enum": [
                            "",
                            "is_new",
                            "is_gently_used",
                            "is_used",
                            "is_worn"
                        ],
                        "type": "string",
                        "description": "Filter by item condition.",
                        "default": ""
                    },
                    "soldOnly": {
                        "title": "Sold listings only",
                        "type": "boolean",
                        "description": "Scrape the sold archive instead of active listings — for sold-comp and market-value research. Adds soldPrice and soldAt to every record.",
                        "default": false
                    },
                    "sortBy": {
                        "title": "Sort order",
                        "enum": [
                            "relevance",
                            "newest",
                            "most_popular",
                            "price_low_to_high",
                            "price_high_to_low"
                        ],
                        "type": "string",
                        "description": "How to sort results.",
                        "default": "relevance"
                    },
                    "minPrice": {
                        "title": "Minimum price (USD)",
                        "type": "integer",
                        "description": "Only emit listings priced at or above this value."
                    },
                    "maxPrice": {
                        "title": "Maximum price (USD)",
                        "type": "integer",
                        "description": "Only emit listings priced at or below this value."
                    },
                    "onSaleOnly": {
                        "title": "On sale / price-dropped only",
                        "type": "boolean",
                        "description": "Keep only listings that have had a price drop.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cap on results emitted. Set 0 for no cap (Grailed's search index returns at most 1000 per query).",
                        "default": 5
                    },
                    "maxPages": {
                        "title": "Max pages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum pages to walk (48 listings per page, max 21).",
                        "default": 5
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
