# ITI NYC Jewelry Scraper - Product Prices & SKUs (`muhammadafzal/iti-nyc-scraper`) Actor

Extract ITI NYC wholesale jewelry products with prices, SKUs, materials, dimensions, stock availability, and variant details. Scrape chains, findings, mountings, and religious jewelry.

- **URL**: https://apify.com/muhammadafzal/iti-nyc-scraper.md
- **Developed by:** [Muhammad Afzal](https://apify.com/muhammadafzal) (community)
- **Categories:** E-commerce, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $15.00 / 1,000 result items

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## ITI NYC Scraper – Wholesale Jewelry Product Catalog

Extract structured product data from the ITI NYC wholesale jewelry supplier at `itinyc.com`. This Actor scrapes chains, findings, mountings, mill products, finished jewelry, religious items, and more — delivering prices, SKUs, materials, dimensions, stock availability, and variant-level details.

### What data does it extract?

| Field | Description |
|---|---|
| `productId` | Shopify product identifier |
| `name` | Product title |
| `sku` | Stock keeping unit |
| `price` | Current wholesale price (USD) |
| `compareAtPrice` | Original compare-at price when discounted |
| `inStock` | Current availability |
| `category` | Top-level product category |
| `subcategory` | Subcategory classification |
| `material` | Metal or primary material |
| `dimensions` | Width, diameter, or size |
| `weight` / `weightUnit` | Product weight |
| `specifications` | Parsed specs (metal, size, style, gauge, length) |
| `images` | All product images |
| `productUrl` | Direct link to the product page |

### Use cases

- Monitor wholesale inventory and stock status for reorder planning
- Compare prices across product variants for pricing analysis
- Build procurement lists or supplier catalogs
- Map SKUs and specifications into inventory or ERP systems
- Extract images and metadata for marketplace listings

### Input

- **Start URLs** — Provide collection page URLs (`https://itinyc.com/collections/chains`) or individual product URLs
- **Collection Handles** — Scrape specific collections by name (e.g. `chains`, `findings`, `mountings-and-rings`)
- **Max Items** — Cap the number of products collected per run (default: 10)

### Pricing

This Actor is charged per event:

| Event | Price |
|---|---|
| Actor Start | $0.005 per run |
| Result Item | $0.015 per product |

You only pay for successfully extracted products.

### Output

Results are stored as structured JSON in the default dataset. The key-value store includes a `SUMMARY` record with run statistics.

### Proxies

This Actor uses Apify Residential proxies (US) by default to avoid Shopify rate limiting (HTTP 429). You can configure custom proxy settings in the input.

### Example output

```json
{
  "productId": "1234567890",
  "name": "Mariner Chain in 14K Gold-Filled (2.50 mm)",
  "sku": "MA25GF",
  "price": 4.90,
  "compareAtPrice": null,
  "inStock": true,
  "category": "Chains",
  "subcategory": "Bulk/Spooled Chains",
  "material": "Gold Filled",
  "dimensions": "2.50 mm",
  "specifications": {
    "style": "Mariner"
  },
  "images": ["https://itinyc.com/cdn/shop/files/MA25GF-main.png"],
  "productUrl": "https://itinyc.com/products/mariner-spooled-gold-filled-chain-ma"
}
```

### Tips

- Start with a single collection URL and `maxItems: 10` to test
- Use the `collectionHandles` field to target specific categories
- Set `maxItems` higher for full catalog extraction (up to 1,000,000)
- Leave `startUrls` and `collectionHandles` both empty to auto-discover all collections

# Actor input Schema

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

URLs of ITI NYC product or collection pages to collect. Use this field when the user provides a URL, such as https://itinyc.com/collections/chains or https://itinyc.com/products/mariner-spooled-gold-filled-chain-ma. Supports both individual product pages and collection pages. Leave empty to use collectionHandles instead.

## `collectionHandles` (type: `array`):

Specific collection handles to scrape by name instead of URL. Use this field when the user asks to scrape by collection name rather than providing a full URL. Examples: 'chains', 'findings', 'mountings-and-rings', 'religious-jewelry', 'finished-jewelry'. Leave empty to use startUrls instead.

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

How many individual jewelry products to collect per run. Use a small number like 10 for quick tests and higher values for full catalog extraction. Default is 10 and maximum is 1000000. This is a hard cap across all collections combined.

## `proxyConfiguration` (type: `object`):

Requests are routed through this proxy with a fresh IP per retry. Apify Residential (US) is the default and recommended setting to avoid Shopify rate limiting (HTTP 429). Use custom proxy URLs only when you need a dedicated premium proxy.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://itinyc.com/collections/chains"
    }
  ],
  "collectionHandles": [
    "chains"
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountryCode": "US"
  }
}
```

# Actor output Schema

## `products` (type: `string`):

Link to the dataset containing all scraped ITI NYC product records.

## `summary` (type: `string`):

Link to the SUMMARY key-value store record with items scraped, charge-limit status, and finish 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": [
        {
            "url": "https://itinyc.com/collections/chains"
        }
    ],
    "collectionHandles": [
        "chains"
    ],
    "maxItems": 10,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountryCode": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("muhammadafzal/iti-nyc-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": [{ "url": "https://itinyc.com/collections/chains" }],
    "collectionHandles": ["chains"],
    "maxItems": 10,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountryCode": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("muhammadafzal/iti-nyc-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 '{
  "startUrls": [
    {
      "url": "https://itinyc.com/collections/chains"
    }
  ],
  "collectionHandles": [
    "chains"
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountryCode": "US"
  }
}' |
apify call muhammadafzal/iti-nyc-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/7Vkzb3cicGJ79Hwmz/builds/wKekim9zbEYyHDKgi/openapi.json
