Shopify Products Exporter
Pricing
$2.00 / 1,000 products
Go to Apify Store
Shopify Products Exporter
Pricing
$2.00 / 1,000 products
Rating
0.0
(0)
Developer

Technical Dost Solutions
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
12 days ago
Last modified
Categories
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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
shopDomain | string | β | - | Shopify store domain (e.g., brand.com or store.myshopify.com) |
maxPages | integer | β | 20 | Maximum pages to fetch (250 products per page) |
includeVariants | boolean | β | true | Include product variants in output |
proxyConfiguration | object | β | - | Proxy settings for avoiding rate limits |
testPayPerEvent | boolean | β | false | Test 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.jsonendpoint 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