Skip to main content

Price Tracking

Get the price and stock of active listings matching name or keywords.

GET

https://api.cardtradehk.com/price-track

Request Parameters

NameTypeRequiredDescriptionExample
queryStringRequiredProduct name / Keywords.
Resulted listings title must contain words inside query.

Case and word order insensitive
2022-23 Panini Revolution Soccer
currencyStringOptionalCurrency the resulted prices are in, rounded up to 2 decimal places.

Available values: USD, HKD
Defaults to USD.
USD

Example Request

fetch(
'https://api.cardtradehk.com/price-track?query=2022-23%20Panini%20Revolution%20Soccer'
)
.then((response) => response.json())
.then((result) => console.log(result))
.catch((error) => console.log('error', error));

Response

Status CodeDescription
200Successful Request
400Invalid Parameters
429Rate Limited: 1000 requests / 15 mins
500Server Error

Response Types

KeyTypeDescription
pricesPrices / NullThe prices of the resulted listings, null if no listing are found
stockNumberSum of stock from all resulted listings
urlStringURL to matched listings on CardTradeHK
listingsListing[]Array of the resulted listings

Prices

KeyTypeDescription
averageNumberAverage unit price of the resulted listing
highestNumberHighest unit price of the resulted listing
lowestNumberLowest unit price of the resulted listing

Listing

KeyTypeDescription
itemNumberStringItem number on CardTradeHK unique to each listing
sellernameStringUsername of seller on CardTradeHK
categoryStringListing category
titleStringListing title
currencyStringListing unit price currency
unitPriceStringListing unit price
unitPriceInHkdStringListing unit price in Hong Kong Dollars
stockNumberListing stock

Example Response

{
"prices": {
"average": 100.0,
"highest": 100.0,
"lowest": 100.0
},
"stock": 5,
"url": "https://www.cardtradehk.com/en/products?query=2022-23%20Panini%20Revolution%20Soccer&order=LOWEST_PRICE",
"listings": [
{
"itemNumber": "854310742960",
"sellername": "sellername",
"category": "SOCCER",
"title": "2022-23 Panini Revolution Soccer Hobby box",
"currency": "HKD",
"unitPrice": 780,
"unitPriceInHkd": 780,
"stock": 5
}
]
}