Hi, is there any app that could auto edit prices of offered goods according to market? For example the app would monitore specific global markers and then edit prices according to it. Thank you.
Hi @Vlk1
Yes, there are apps on Shopify that can help you automatically adjust prices based on market trends or other criteria. While Shopify doesn’t natively support this feature, some apps and integrations can monitor market prices or external data to update your product prices dynamically.
**Apps to Consider:**1. Prisync
Prisync is a robust price tracking and dynamic pricing app. It can monitor competitors’ prices and market trends, then automatically adjust your prices to stay competitive. It’s great if you’re in a highly dynamic market where pricing plays a key role.
- Repricer
While more commonly used for marketplaces like Amazon, Repricer apps can sometimes integrate with Shopify to adjust prices dynamically. They work well if you want to sync prices across platforms or set rules like undercutting competitors. - Shopify Scripts & APIs
If you have a Shopify Plus store, you can use Shopify Scripts or custom APIs to fetch global market data (via external APIs) and set your prices based on custom rules. This will require a developer, but it gives you total flexibility. - Automated Pricing via Excel or Integrations
If the market you’re monitoring provides an API or CSV, you can use apps like Excelify or Zapier to automate price updates based on specific data.
Things to Keep in Mind:- Source of Market Data: Ensure the app or integration you use can pull reliable market data. Some might require custom APIs from the market you’re targeting.
- Pricing Rules: Define your rules clearly—like whether you want to match, undercut, or use premium pricing strategies based on your market position.
- Shopify Plan: Some of these features might require a higher-tier Shopify plan (e.g., Shopify Plus).
Here’s a snippet of code (if you’re exploring custom solutions) to get you started with automated price updates using Shopify’s Admin API:
import requests
API_KEY = “your_api_key”
PASSWORD = “your_password”
STORE_NAME = “your_store_name”
PRODUCT_ID = “product_id_to_update”
NEW_PRICE = 29.99 # Example price
url = [email removed]
data = {
“product”: {
“id”: PRODUCT_ID,
“variants”: [
{
“price”: NEW_PRICE
}
]
}
}
response = requests.put(url, json=data)
print(response.json())
If you’re interested in exploring any of these options further or have specific needs, feel free to reply. I’d be happy to guide you through the setup or recommend other tools. ![]()
Best regards,
Daisy
Hi @Vlk1 yes there are many apps that can auto edit prices according to market. You can try Lurk Dynamic Pricing app which lets you monitor prices from links and set rules for auto pricing. Such as letting it auto edit prices to match the highest competitor price or even 10% higher than the lowest price etc.