Shopify Products Exporter avatar
Shopify Products Exporter

Pricing

$2.00 / 1,000 products

Go to Apify Store
Shopify Products Exporter

Shopify Products Exporter

Pricing

$2.00 / 1,000 products

Rating

0.0

(0)

Developer

Technical Dost Solutions

Technical Dost Solutions

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

12 days ago

Last modified

Share

Export full Shopify product catalog without API key using public /products.json endpoint.

Features

  • πŸ›’ No API Key Required - Uses public Shopify endpoints
  • πŸ“¦ Full Product Data - Includes variants, images, tags, and metadata
  • πŸ”„ Retry Logic - Handles rate limits with exponential backoff
  • πŸ“Š MCP Compatible - Structured output with standard schema
  • πŸ’° Pay-Per-Event Ready - Charges per product exported

Input

FieldTypeRequiredDefaultDescription
shopDomainstringβœ…-Shopify store domain (e.g., brand.com or store.myshopify.com)
maxPagesinteger❌20Maximum pages to fetch (250 products per page)
includeVariantsboolean❌trueInclude product variants in output
proxyConfigurationobject❌-Proxy settings for avoiding rate limits
testPayPerEventboolean❌falseTest mode for pay-per-event

Output

Each dataset item follows the MCP-friendly structure:

{
"actorId": "shopify-products-exporter",
"input": { "shopDomain": "example.com" },
"collectedAt": "2025-01-01T00:00:00.000Z",
"source": "https://example.com/products/product-handle",
"data": {
"product": {
"id": 123456789,
"title": "Product Name",
"handle": "product-handle",
"vendor": "Brand",
"productType": "Category",
"tags": ["tag1", "tag2"],
"variants": [...],
"images": [...]
}
}
}

SUMMARY (Key-Value Store)

{
"actorId": "shopify-products-exporter",
"runId": "abc123",
"stats": {
"itemsCollected": 150,
"pagesProcessed": 1,
"errorsEncountered": 0
},
"warnings": [],
"sampleOutputItem": {...}
}

Usage

Local Run (Apify CLI)

$apify run --input-file dev-inputs/example.json

Cloud Run (Apify CLI)

$apify call technicaldost/shopify-products-exporter --input-file dev-inputs/example.json

API Call

curl -X POST "https://api.apify.com/v2/acts/technicaldost~shopify-products-exporter/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"shopDomain": "kyliecosmetics.com", "maxPages": 5}'

Limitations

  • Only works with Shopify stores that have the /products.json endpoint enabled (most public stores do)
  • Rate limits may apply for stores with aggressive bot protection
  • Some product fields may be unavailable depending on store configuration

Disclaimer

This actor accesses publicly available data from Shopify storefronts. Users are responsible for ensuring their use complies with the target store's terms of service and applicable laws.

Changelog

1.0.0 (2025-01-27)

  • Initial release
  • Full product export with variants and images
  • MCP-compatible output structure
  • Pay-per-event readiness