Skip to content

List Product EVs

Lists EVs for sealed product.

A request can be submitted to this endpoint using the details below:

GET
https://api.fyendalscollection.com/ev/list
  • sort (Optional) - The order in which to sort the product EVs. Can be either HighestEstimatedValue, LowestEstimatedValue, HighestMarketPrice, LowestMarketPrice, MarketPriceDeltaPositive, MarketPriceDeltaNegative, NewestReleaseDate or OldestReleaseDate. The default is OldestReleaseDate.

  • productType (Optional) - The type of product to filter by. Can be either Pack, Box or Case. The default is to return everything.

GET /ev/list?sort=MarketPriceDeltaPositive&productType=Box HTTP/1.1
Host: api.fyendalscollection.com
Authorization: Bearer eyJ...

A successful response from this endpoint gives a 200 OK and uses the following response model for each result:

The warning field indicates any potential issues with the product’s estimated value.

ProductEvResponseModel.ts
interface ProductEvResponseModel {
readonly setType: string;
readonly productType: string;
readonly productId: string;
readonly productImage: string;
readonly productName: string;
readonly fcId: string;
readonly currentEstimatedValue: Money;
readonly marketPrice: Money;
readonly marketPriceDelta: Money;
readonly warning: string | null;
}
HTTP/1.1 200 OK
Content-Type: application/json
{
"results": [
{
"setType": "Hnt",
"productType": "Box",
"productId": "769e8ff4-b275-4853-9f58-bddccc885e40",
"productImage": "https://tcgplayer-cdn.tcgplayer.com/product/591274_400w.jpg",
"productName": "The Hunted Booster Box",
"fcId": "HNT-BOX",
"currentEstimatedValue": {
"currency": "USD",
"value": 124.37
},
"marketPrice": {
"currency": "USD",
"value": 123.73
},
"marketPriceDelta": {
"currency": "USD",
"value": 0.64
},
"warning": null
}
],
"nextCursor": 1
}