System Check
DynPricing v3 Health Dashboard
Checking...
Getting Started Tutorials
Loading Product Data
Use the REST API to import product data from your e-shop or ERP system:
curl -X POST https://your-domain.com/api/products/cache \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "your-shop.com",
"products": [
{
"product_id": "SKU001",
"name": "Product Name",
"price": 299.00,
"cost": 150.00,
"stock": 25,
"brand": "BrandName",
"ean": "1234567890123"
}
]
}'
Loading Competition Data
Import competitor price data for dynamic pricing decisions:
curl -X POST https://your-domain.com/api/external-data \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "your-shop.com",
"product_id": "SKU001",
"data_type": "competition",
"data_json": {
"competitors": [
{"name": "Competitor A", "price": 289.00},
{"name": "Competitor B", "price": 310.00}
],
"cheapest_competitor": 289.00,
"avg_competitor_price": 299.50
}
}'
Loading RRP Data
Import recommended retail prices for margin calculations:
curl -X POST https://your-domain.com/api/rrp/import \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@rrp_data.csv" \
-F "domain=your-shop.com"
Running Repricing
Execute pricing calculations using your rules and strategies:
curl -X GET "https://your-domain.com/api/go-price?domain=your-shop.com&product_id=SKU001" \
-H "X-API-Key: YOUR_API_KEY"
{
"success": true,
"product_id": "SKU001",
"original_price": 299.00,
"calculated_price": 279.00,
"strategy_used": "Beat Competition",
"rule_applied": "Beat cheapest by 2%"
}