Get Item Price
Tracking the price related information of items for destination countries, including the United States.
Resource URL
Newegg.com: https://api.newegg.com/marketplace/contentmgmt/item/international/price?sellerid={sellerid}
Note: Please make sure your request URL is all in lower case (except for Seller ID) and cannot contain any blank spaces or line breaks.
Parameters
Name | Required? | Description |
sellerid | Yes | Your seller ID on Newegg Marketplace |
Resource Information
HTTP Method | Authentication? | Request Formats | Response Formats | Rate Limited? |
PUT | Required | XML, Json | XML, Json | 10,000 request per hour |
Request Body
Attribute | Required? | Format | Description |
Type | Yes | String | Available values:
|
Value | Yes | String | A string according to a given inquiry type. |
Condition | No | Integer | Available values:
Note:
|
CountryCode | No | String | The ISO standard 3-digit codes of the country where your warehouse is located. Please download the following to review details:
If left blank, default value will be All. |
Schema: GetPriceRequest.xsd
Example: XML, Request
PUT https://api.newegg.com/marketplace/contentmgmt/item/international/price?sellerid={SellerID} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/xml Accept: application/xml <ContentQueryCriteria> <Type>1</Type> <Value>A006testitem201201021459</Value> <CountryList> <CountryCode>USA</CountryCode> <CountryCode>AUS</CountryCode> </CountryList> </ContentQueryCriteria>
Example: Json, Request
PUT https://api.newegg.com/marketplace/contentmgmt/item/international/price?sellerid={SellerID} Authorization: 720ddc067f4d115bd544aff46bc75634 SecretKey: 21EC2020-3AEA-1069-A2DD-08002B30309D Content-Type: application/json Accept: application/json { "Type": "1", "Value": "A006testitem201201021459", "CountryList": { "CountryCode": [ "USA", "AUS" ] } }
Response Body
Attribute | Format | Description |
SellerID | String | Your seller ID |
ItemNumber | String | Newegg Item# |
SellerPartNumber | String | Seller Part# |
CountryCode | String | The ISO standard 3-digit codes of the country where your warehouse is located. Please download the following to review details: |
Currency | Integer | The currency is to identify the Selling Price, MSRP, MAP for the target country you will be selling your items to. Only the ISO standard 3-digit codes are accepted. The default value will be USD if left blank. To review the complete list of available values, please download the following: |
Active | Integer | Available values:
|
MAP | Decimal | Minimum Advertised Price
If the Selling Price is below the defined MAP, website will ask customer to add item to shopping cart to see the item’s price. |
CheckoutMAP | Integer | Available values:
Note:
|
SellingPrice | Decimal | The actual selling price |
EnableFreeShipping | Integer | Available values:
|
OnPromotion | Integer, separated by comma | Available values:
|
LimitQuantity | Integer | Limit quantity represents the maximum quantity this item can be purchased by a customer within a 48 hour time period. The maximum value is 500. Note if the value is:
0: System will delete the existing value |
Schema: GetPriceResponse.xsd
Example: XML, Response
<?xml version="1.0" encoding="utf-8"?> <PriceResult> <SellerID>A006</SellerID> <ItemNumber>9SIA0060884598</ItemNumber> <SellerPartNumber>A006testitem201201021459</SellerPartNumber> <PriceList> <Price> <CountryCode>USA</CountryCode> <Currency>USD</Currency> <Active>0</Active> <MAP>25.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>20.92</SellingPrice> <EnableFreeShipping>1</EnableFreeShipping> <OnPromotion>1,5</OnPromotion> <LimitQuantity>2</LimitQuantity> </Price> <Price> <CountryCode>IND</CountryCode> <Currency>INR</Currency> <Active>1</Active> <MAP>25.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>389.92</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion>1,5</OnPromotion> <LimitQuantity>2</LimitQuantity> </Price> <Price> <CountryCode>IRL</CountryCode> <Currency>EUR</Currency> <Active>0</Active> <MAP>25.99</MAP> <CheckoutMAP>0</CheckoutMAP> <SellingPrice>19.92</SellingPrice> <EnableFreeShipping>0</EnableFreeShipping> <OnPromotion/> <LimitQuantity>2</LimitQuantity> </Price> </PriceList> </PriceResult>
Example: Json, Response
{ "SellerID": "A006", "ItemNumber": "9SIA0060884598", "SellerPartNumber": "A006testitem201201021459", "PriceList": { "Price": [ { "CountryCode": "USA", "Currency": "USD", "Active": "0", "MAP": "25.99", "CheckoutMAP": "0", "SellingPrice": "20.92", "EnableFreeShipping": "1", "OnPromotion": "1,5", "LimitQuantity": "2" }, { "CountryCode": "IND", "Currency": "INR", "Active": "1", "MAP": "25.99", "CheckoutMAP": "0", "SellingPrice": "389.92", "EnableFreeShipping": "0", "OnPromotion": "1,5", "LimitQuantity": "2" }, { "CountryCode": "IRL", "Currency": "EUR", "Active": "0", "MAP": "25.99", "CheckoutMAP": "0", "SellingPrice": "19.92", "EnableFreeShipping": "0", "LimitQuantity": "2" } ] } }
Request Failure Errors
For common HTTP error responses, please refer to Failed Response Error Code List.
Error Code | Description |
CT001 | Invalid ItemNumber |
CT002 | Invalid SellerPartNumber |
CT003 | Invalid UPCCode |
CT005 | Invalid Action Type. We only support: 0 – NE Item#, 1 – Seller Parts#, 2 – UPC Code |
CT010 | Cannot find item with specified item condition. |
CT026 | Can’t find this item in the system, please create it first |
Example: XML, Response
<?xml version="1.0" encoding="utf-8"?> <Errors> <Error> <Code>CT002</Code> <Message>Invalid SellerPartNumber</Message> </Error> </Errors>
Example: Json, Response
[ { "Code": "CT002", "Message": "Invalid SellerPartNumber" } ]
Last updated: August 28, 2020