Auto edit price

Topic summary

A user is seeking an app to automatically adjust product prices based on global market monitoring.

Several solutions were recommended:

Third-Party Apps:

  • Prisync - Tracks competitor prices and market trends for dynamic pricing adjustments
  • Repricer - Primarily for Amazon but can integrate with Shopify for cross-platform price syncing
  • Excelify/Zapier - Can automate pricing via CSV/API data from external markets

Custom Solutions:

  • Shopify Scripts & APIs (Shopify Plus required) - Allows custom rules using external market data APIs with full flexibility
  • A Python code snippet was provided demonstrating how to update prices via Shopify’s Admin API

Important Note: Native Shopify doesn’t support this feature; higher-tier plans (especially Shopify Plus) may be needed for advanced automation.

The discussion remains open for further guidance on setup or additional tool recommendations.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

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.

  1. 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.
  2. 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.
  3. 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. :blush:

Best regards,
Daisy