Easily import products from your platform into Pricefy with just one click. No messy excel or csv file needed.
Check our integration listMonitor your competitor's products price in any country, currency or marketplace, on daily basis. You can also monitor an e-commerce competitor directly, just using his store website URL. [beta]
Discover how competitive your prices are, identifying where you are dearer or cheaper, being able to adjust your prices and increase your profits.
Read more about Price Monitoring featureDiscover bestseller products of your categories on each country, how popular they are and for how long they stayed in chart.
Pricefy will provide you the most valuable information about trending products and market opportunity to let you expand and conquer new markets.
Read more about Opportunities featureImport and monitor your products using API, CSV files or our eCommerce CMS modules. We will take care of rest.
The analysis of your products and competitors will start automatically over all marketplace, no need to insert url or matching products, PRICEFY will do it automatically.
Read how to import your catalog
const rp = require('request-promise')
const api_key = 'your-api-key'
const country_code = 'GB' // the country code you want to analyse
const product_ean = '3175681126213'
rp({
uri: 'https://api.pricefy.io/v1/analysis/catalog/'+country_code+'/EAN:'+product_ean,
headers: {
'Authorization': 'Bearer '+api_key
}
})
.then(function(d){
console.log(d)
})
import requests
api_key = 'your-api-key'
country_code = 'GB' # the country code you want to analyse
product_ean = '3175681126213'
headers = {'Authorization': 'Bearer '+api_key}
url = 'https://api.pricefy.io/v1/analysis/catalog/'+country_code+'/EAN:'+product_ean
r = requests.get(url, headers=headers)
print r.json()
$ch = curl_init();
$api_key = 'your-api-key';
$country_code = 'GB'; // the country code you want to analyse
$product_ean = '3175681126213'; // the product EAN you want to analyse
$headers = [
'Authorization: Bearer '.$api_key
];
$url = 'https://api.pricefy.io/v1/analysis/catalog/'.$country_code.'/EAN:'.$product_ean;
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$server_output = curl_exec ($ch);
curl_close ($ch);
$json = json_decode($server_output, true);
print_r($json);
[ { "name": "Pharmashop", "competitor_id": 385, "type": "Amazon", "competitor_price": 1.11, "my_price": 1, "price_diff": 11 }, { "name": "Wellness Online Shop", "competitor_id": 46, "type": "Amazon", "competitor_price": 0.94, "my_price": 1, "price_diff": -6 } ]
const rp = require('request-promise')
const api_key = 'your-api-key'
const country_code = 'GB' // the country code you want to analyse
rp({
uri: 'https://api.pricefy.io/v1/analysis/price/'+country_code,
headers: {
'Authorization': 'Bearer '+api_key
}
})
.then(function(d){
console.log(d)
})
import requests
api_key = 'your-api-key'
country_code = 'GB' # the country code you want to analyse
headers = {'Authorization': 'Bearer '+api_key}
url = 'https://api.pricefy.io/v1/analysis/price/'+country_code
r = requests.get(url, headers=headers)
print r.json()
$ch = curl_init();
$api_key = 'your-api-key';
$country_code = 'GB'; // the country code you want to analyse
$headers = [
'Authorization: Bearer '.$api_key
];
$url = 'https://api.pricefy.io/v1/analysis/price/'.$country_code;
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$server_output = curl_exec ($ch);
curl_close ($ch);
$json = json_decode($server_output, true);
print_r($json);
{ "current_page":1, "data":[ { "product":"NAJTU ANG/BACCHE PROF NOTE50ML", "code_type":"EAN", "code":"0009100805423", "price":18.5, "amazon_price":22, "ebay_price":0, "min_price":22, "avg_price":22, "max_price":22, "min_diff":18.92, "avg_diff":18.92, "max_diff":18.92 }, { "product":"NURSING KIT 2OZ", "code_type":"EAN", "code":"0020279998006", "price":9, "amazon_price":9.63, "ebay_price":8.1, "min_price":8.1, "avg_price":12.54, "max_price":18.25, "min_diff":-10, "avg_diff":39.31, "max_diff":102.78 }, { "product":"NURSING KIT 4OZ", "code_type":"EAN", "code":"0020279998037", "price":14, "amazon_price":19.85, "ebay_price":0, "min_price":19.85, "avg_price":27.77, "max_price":42.36, "min_diff":41.79, "avg_diff":98.36, "max_diff":202.57 }, { "product":"RIALZO WC UNIV", "code_type":"EAN", "code":"0023601651105", "price":48.5, "amazon_price":44.6, "ebay_price":0, "min_price":44.6, "avg_price":51.47, "max_price":58.8, "min_diff":-8.04, "avg_diff":6.12, "max_diff":21.24 }, { "product":"ACIDOPHILUS BIFIDO 60CPS VEG", "code_type":"EAN", "code":"0033984000148", "price":23.6, "amazon_price":0, "ebay_price":12.24, "min_price":12.24, "avg_price":19.11, "max_price":25, "min_diff":-48.14, "avg_diff":-19.04, "max_diff":5.93 }, { "product":"ACIDOPHILUS 50CPS VEG", "code_type":"EAN", "code":"0033984000162", "price":19.2, "amazon_price":0, "ebay_price":11.17, "min_price":11.17, "avg_price":16.77, "max_price":24.9, "min_diff":-41.82, "avg_diff":-12.66, "max_diff":29.69 }, { "product":"BIOFLOR 60CPS VEG", "code_type":"EAN", "code":"0033984000278", "price":28.6, "amazon_price":18, "ebay_price":14.48, "min_price":14.48, "avg_price":23.94, "max_price":51.99, "min_diff":-49.37, "avg_diff":-16.29, "max_diff":81.78 }, { "product":"BIODOPHILUS 60CPS VEG", "code_type":"EAN", "code":"0033984000391", "price":39.9, "amazon_price":29.5, "ebay_price":22.35, "min_price":22.35, "avg_price":32.26, "max_price":42, "min_diff":-43.98, "avg_diff":-19.14, "max_diff":5.26 }, { "product":"ALFALFA 100TAV", "code_type":"EAN", "code":"0033984000407", "price":14.8, "amazon_price":8.19, "ebay_price":7.83, "min_price":7.83, "avg_price":12.95, "max_price":18.89, "min_diff":-47.09, "avg_diff":-12.5, "max_diff":27.64 }, { "product":"ACAI-ROX 60PRL", "code_type":"EAN", "code":"0033984000476", "price":30.2, "amazon_price":27.44, "ebay_price":14.08, "min_price":14.08, "avg_price":27.63, "max_price":50, "min_diff":-53.38, "avg_diff":-8.5, "max_diff":65.56 }, { "product":"LIPOMAG 30CPS VEGETALI", "code_type":"EAN", "code":"0033984000551", "price":29.2, "amazon_price":13.13, "ebay_price":12.86, "min_price":12.86, "avg_price":24.79, "max_price":36.8, "min_diff":-55.96, "avg_diff":-15.09, "max_diff":26.03 }, { "product":"ASTAXANTINA 30PRL", "code_type":"EAN", "code":"0033984000704", "price":32, "amazon_price":0, "ebay_price":12.73, "min_price":12.73, "avg_price":22.22, "max_price":32.13, "min_diff":-60.22, "avg_diff":-30.55, "max_diff":0.41 }, { "product":"AMINO 75 30CPS VEG", "code_type":"EAN", "code":"0033984001008", "price":26.2, "amazon_price":12.25, "ebay_price":13.42, "min_price":12.25, "avg_price":20.77, "max_price":28.26, "min_diff":-53.24, "avg_diff":-20.72, "max_diff":7.86 }, { "product":"AMINO ARGININA 500 50CPS VEG", "code_type":"EAN", "code":"0033984001404", "price":19.8, "amazon_price":12.56, "ebay_price":11.07, "min_price":11.07, "avg_price":15.96, "max_price":27.3, "min_diff":-44.09, "avg_diff":-19.4, "max_diff":37.88 }, { "product":"DIMA LIGHT PLUS 50CPS VEG", "code_type":"EAN", "code":"0033984001602", "price":27.4, "amazon_price":30.9, "ebay_price":0, "min_price":30.9, "avg_price":35.01, "max_price":41.99, "min_diff":12.77, "avg_diff":27.79, "max_diff":53.25 } ], "first_page_url":"http://api.pricefy.io/v1/analysis/price/IT?page=1", "from":1, "next_page_url":"http://api.pricefy.io/v1/analysis/price/IT?page=2", "path":"http://api.pricefy.io/v1/analysis/price/IT", "per_page":15, "prev_page_url":null, "to":15 }
const rp = require('request-promise')
const api_key = 'your-api-key'
const country_code = 'GB' // the country code you want to analyse
const marketplace_code = 'amazon' // the marketplace code you want to analyze
rp({
uri: 'https://api.pricefy.io/v1/analysis/marketplace/'+country_code+'/'+marketplace_code,
headers: {
'Authorization': 'Bearer '+api_key
}
})
.then(function(d){
console.log(d)
})
import requests
api_key = 'your-api-key'
country_code = 'GB' # the country code you want to analyse
marketplace_code = 'amazon' # the marketplace code you want to analyse
headers = {'Authorization': 'Bearer '+api_key}
url = 'https://api.pricefy.io/v1/analysis/marketplace/'+country_code+'/'+marketplace_code
r = requests.get(url, headers=headers)
print r.json()
$ch = curl_init();
$api_key = 'your-api-key';
$country_code = 'GB'; // the country code you want to analyse
$marketplace_code = 'amazon'; // the marketplace code you want to analyse
$headers = [
'Authorization: Bearer '.$api_key
];
$url = 'https://api.pricefy.io/v1/analysis/marketplace/'.$country_code.'/'.marketplace_code;
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$server_output = curl_exec ($ch);
curl_close ($ch);
$json = json_decode($server_output, true);
print_r($json);
{ "current_page":1, "data":[ { "product":"0\/6 PERFECT SILIKONSETA NIGHT", "pricefy_id":"EAN:9001616504815", "code_type":"EAN", "code":"9001616504815", "cost":8.37, "min_price":7.72, "avg_price":10.55, "max_price":15.9, "min_markup":-7.77, "avg_markup":26.07, "max_markup":89.96 }, { "product":"100% CREATINE 250G", "pricefy_id":"EAN:8054956340651", "code_type":"EAN", "code":"8054956340651", "cost":14.34, "min_price":18.89, "avg_price":18.89, "max_price":18.89, "min_markup":31.73, "avg_markup":31.73, "max_markup":31.73 }, { "product":"16+ 2 AIR CAUCCIU' ASSORT", "pricefy_id":"EAN:9001616670916", "code_type":"EAN", "code":"9001616670916", "cost":10.04, "min_price":11.14, "avg_price":13.86, "max_price":21, "min_markup":10.96, "avg_markup":38.04, "max_markup":109.16 }, { "product":"16+ 2 AIR SILIKONSETA ASSORT", "pricefy_id":"EAN:9001616670909", "code_type":"EAN", "code":"9001616670909", "cost":9.75, "min_price":9.76, "avg_price":13.15, "max_price":21, "min_markup":0.1, "avg_markup":34.9, "max_markup":115.38 }, { "product":"16+ 2 NIGHT CAUCCIU'", "pricefy_id":"EAN:9001616670244", "code_type":"EAN", "code":"9001616670244", "cost":9.26, "min_price":9.83, "avg_price":12.12, "max_price":16.93, "min_markup":6.16, "avg_markup":30.9, "max_markup":82.83 }, { "product":"16+ 2 NIGHT SILIKONSETA", "pricefy_id":"EAN:9001616670237", "code_type":"EAN", "code":"9001616670237", "cost":8.94, "min_price":9.49, "avg_price":12.09, "max_price":19.3, "min_markup":6.15, "avg_markup":35.18, "max_markup":115.88 }, { "product":"16+ 2 ORIGINAL CAUCCIU'", "pricefy_id":"EAN:9001616670220", "code_type":"EAN", "code":"9001616670220", "cost":8.94, "min_price":9.83, "avg_price":12.59, "max_price":17.04, "min_markup":9.96, "avg_markup":40.84, "max_markup":90.6 }, { "product":"16+ 2 ORIGINAL SILIKONSETA", "pricefy_id":"EAN:9001616670213", "code_type":"EAN", "code":"9001616670213", "cost":8.91, "min_price":8.5, "avg_price":11.94, "max_price":16.5, "min_markup":-4.6, "avg_markup":33.96, "max_markup":85.19 }, { "product":"16+ PERFECT SILIKONSETA NIGHT", "pricefy_id":"EAN:9001616504822", "code_type":"EAN", "code":"9001616504822", "cost":8.37, "min_price":7.72, "avg_price":10.56, "max_price":15.4, "min_markup":-7.77, "avg_markup":26.21, "max_markup":83.99 }, { "product":"2 BECCUCCI EXTRA MORBIDI", "pricefy_id":"EAN:9001616628481", "code_type":"EAN", "code":"9001616628481", "cost":5.78, "min_price":6.4, "avg_price":8.23, "max_price":12.9, "min_markup":10.73, "avg_markup":42.33, "max_markup":123.18 }, { "product":"3MIL GOCCE 30ML", "pricefy_id":"MINSAN:904432729", "code_type":"MINSAN", "code":"904432729", "cost":13.81, "min_price":18.1, "avg_price":18.1, "max_price":18.1, "min_markup":31.06, "avg_markup":31.06, "max_markup":31.06 }, { "product":"4FUEL 20 BUST", "pricefy_id":"EAN:8054956340484", "code_type":"EAN", "code":"8054956340484", "cost":11.17, "min_price":15.29, "avg_price":15.29, "max_price":15.29, "min_markup":36.88, "avg_markup":36.88, "max_markup":36.88 }, { "product":"5 FIORI RESC LUK D4 DIL 28ML", "pricefy_id":"EAN:8013901656551", "code_type":"EAN", "code":"8013901656551", "cost":7.56, "min_price":8.84, "avg_price":11.56, "max_price":17.2, "min_markup":16.93, "avg_markup":52.84, "max_markup":127.51 }, { "product":"5D FORMULA URTO 300ML", "pricefy_id":"EAN:8032628862397", "code_type":"EAN", "code":"8032628862397", "cost":17.33, "min_price":26.5, "avg_price":26.5, "max_price":26.5, "min_markup":52.91, "avg_markup":52.91, "max_markup":52.91 }, { "product":"5D FRUTTI BOSCO 500ML", "pricefy_id":"EAN:8032628862373", "code_type":"EAN", "code":"8032628862373", "cost":13.83, "min_price":16.65, "avg_price":18.82, "max_price":23.88, "min_markup":20.39, "avg_markup":36.08, "max_markup":72.67 } ], "first_page_url":"http:\/\/api.pricefy.io\/v1\/analysis\/marketplace\/IT\/amazon?page=1", "from":1, "next_page_url":"http:\/\/api.pricefy.io\/v1\/analysis\/marketplace\/IT\/amazon?page=2", "path":"http:\/\/api.pricefy.io\/v1\/analysis\/marketplace\/IT\/amazon", "per_page":15, "prev_page_url":null, "to":15 }
const rp = require('request-promise')
const api_key = 'your-api-key'
const country_code = 'GB' // the country code you want to analyse
rp({
uri: 'https://api.pricefy.io/v1/analysis/competitors/'+country_code,
headers: {
'Authorization': 'Bearer '+api_key
}
})
.then(function(d){
console.log(d)
})
import requests
api_key = 'your-api-key'
country_code = 'GB' # the country code you want to analyse
headers = {'Authorization': 'Bearer '+api_key}
url = 'https://api.pricefy.io/v1/analysis/competitors/'+country_code
r = requests.get(url, headers=headers)
print r.json()
$ch = curl_init();
$api_key = 'your-api-key';
$country_code = 'GB'; // the country code you want to analyse
$headers = [
'Authorization: Bearer '.$api_key
];
$url = 'https://api.pricefy.io/v1/analysis/competitors/'.$country_code;
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$server_output = curl_exec ($ch);
curl_close ($ch);
$json = json_decode($server_output, true);
print_r($json);
{ "current_page":1, "data":[ { "name":"Amazon Pantry GB", "competitor_id":34187, "type":"Amazon", "rating":0, "products_match":36, "catalog_similarity":0 }, { "name":"Lotographic", "competitor_id":63726, "type":"eBay", "rating":5, "products_match":9, "catalog_similarity":0 }, { "name":"", "competitor_id":88210, "type":"eBay", "rating":5, "products_match":1, "catalog_similarity":0 }, { "name":"jgcm0b1le", "competitor_id":2003, "type":"eBay", "rating":5, "products_match":4, "catalog_similarity":0 }, { "name":"anna kj eShop", "competitor_id":79483, "type":"eBay", "rating":5, "products_match":2, "catalog_similarity":0 }, { "name":"Beat The High St", "competitor_id":62604, "type":"eBay", "rating":5, "products_match":1, "catalog_similarity":0 }, { "name":"bebeauty.y", "competitor_id":20539, "type":"eBay", "rating":5, "products_match":2, "catalog_similarity":0 }, { "name":"db_stores", "competitor_id":83605, "type":"eBay", "rating":5, "products_match":1, "catalog_similarity":0 }, { "name":"EEESHOP INTERNATIONAL", "competitor_id":41600, "type":"eBay", "rating":5, "products_match":1, "catalog_similarity":0 }, { "name":"ELETTROALABA", "competitor_id":64769, "type":"eBay", "rating":5, "products_match":5, "catalog_similarity":0 }, { "name":"ErgogoFree", "competitor_id":68445, "type":"eBay", "rating":5, "products_match":8, "catalog_similarity":0 }, { "name":"Essentials for Everyday", "competitor_id":20862, "type":"eBay", "rating":5, "products_match":1, "catalog_similarity":0 }, { "name":"calibrasteve", "competitor_id":62608, "type":"eBay", "rating":5, "products_match":1, "catalog_similarity":0 }, { "name":"Firefly Dealz", "competitor_id":66877, "type":"eBay", "rating":5, "products_match":2, "catalog_similarity":0 }, { "name":"Leaden wear", "competitor_id":65920, "type":"eBay", "rating":5, "products_match":3, "catalog_similarity":0 } ], "first_page_url":"http:\/\/api.pricefy.io\/v1\/analysis\/competitors\/GB?page=1", "from":1, "next_page_url":"http:\/\/api.pricefy.io\/v1\/analysis\/competitors\/GB?page=2", "path":"http:\/\/api.pricefy.io\/v1\/analysis\/competitors\/GB", "per_page":15, "prev_page_url":null, "to":15 }