https://github.com/ecomplus/products-feed
Products XML feed with GMC specifications for E-Com Plus stores
https://github.com/ecomplus/products-feed
Last synced: 25 days ago
JSON representation
Products XML feed with GMC specifications for E-Com Plus stores
- Host: GitHub
- URL: https://github.com/ecomplus/products-feed
- Owner: ecomplus
- License: mit
- Created: 2018-10-03T16:18:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-05-29T23:16:43.000Z (10 months ago)
- Last Synced: 2025-12-07T20:59:09.601Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# products-feed
Products XML feed with GMC specifications for E-Com Plus stores
## XML URL
https://storefront.e-com.plus/products-feed.xml?store_id={storeId}&domain={domain}
### Optional URL params
- `title`
- `qs`
- `set_properties` (JSON object)
- `product_ids` (JSON array)
- `offset`
- `search_field`
- `search_value`
### Additional examples
> Forcing `google_product_category_id`
```
https://storefront.e-com.plus/products-feed.xml?store_id={storeId}&domain={domain}&set_properties={"google_product_category_id":123}
```
> Specific products by IDs
```
https://storefront.e-com.plus/products-feed.xml?store_id={storeId}&domain={domain}&product_ids=[123,234]
```
> Filter products by category
```
https://storefront.e-com.plus/products-feed.xml?store_id={storeId}&domain={domain}&search_field=categories.slug&search_value=my-category-slug&set_properties={"google_product_category_id":123}
```
> Second XML page
```
https://storefront.e-com.plus/products-feed.xml?store_id={storeId}&domain={domain}&offset=500
```
## All products XML
https://storefront.e-com.plus/products-feed/all.xml?store_id={storeId}&domain={domain}
Up to 5000 products (may have more items due to variations) at the same XML.
:warning: Long time to load and long cache lifetime, AVOID USING it whenever possible!