GET
/
api
/
v1
/
scraper
/
goat
/
prices
curl --request GET \
  --url https://app.retailed.io/api/v1/scraper/goat/prices \
  --header 'x-api-key: <x-api-key>'
[
    {
        "sizeOption": {
            "value": 3,
            "presentation": "3"
        },
        "stockStatus": "not_in_stock",
        "boxCondition": "good_condition",
        "shoeCondition": "new_no_defects",
        "lowestPriceCents": {
            "currency": "USD"
        },
        "lastSoldPriceCents": {
            "amount": 13400,
            "currency": "USD",
            "amountUsdCents": 13400
        },
        "instantShipLowestPriceCents": {
            "currency": "USD"
        }
    },
    {
        "sizeOption": {
            "value": 3.5,
            "presentation": "3.5"
        },
        "stockStatus": "not_in_stock",
        "boxCondition": "good_condition",
        "shoeCondition": "new_no_defects",
        "lowestPriceCents": {
            "currency": "USD"
        },
        "lastSoldPriceCents": {
            "amount": 16200,
            "currency": "USD",
            "amountUsdCents": 16200
        },
        "instantShipLowestPriceCents": {
            "currency": "USD"
        }
    },
    {
        "sizeOption": {
            "value": 3.5,
            "presentation": "3.5"
        },
        "stockStatus": "not_in_stock",
        "boxCondition": "badly_damaged",
        "shoeCondition": "new_no_defects",
        "lowestPriceCents": {
            "currency": "USD"
        },
        "lastSoldPriceCents": {
            "amount": 24000,
            "currency": "USD",
            "amountUsdCents": 24000
        },
        "instantShipLowestPriceCents": {
            "currency": "USD"
        }
    }
]
x-api-key
string
required

Parameter defines the Retailed private key to use.

Parameters

query
string

Goat product ID such as 719082.

country
string

Country code to filter prices : UK, FR, US. Default is US.

Response

object
Prices Object
[
    {
        "sizeOption": {
            "value": 3,
            "presentation": "3"
        },
        "stockStatus": "not_in_stock",
        "boxCondition": "good_condition",
        "shoeCondition": "new_no_defects",
        "lowestPriceCents": {
            "currency": "USD"
        },
        "lastSoldPriceCents": {
            "amount": 13400,
            "currency": "USD",
            "amountUsdCents": 13400
        },
        "instantShipLowestPriceCents": {
            "currency": "USD"
        }
    },
    {
        "sizeOption": {
            "value": 3.5,
            "presentation": "3.5"
        },
        "stockStatus": "not_in_stock",
        "boxCondition": "good_condition",
        "shoeCondition": "new_no_defects",
        "lowestPriceCents": {
            "currency": "USD"
        },
        "lastSoldPriceCents": {
            "amount": 16200,
            "currency": "USD",
            "amountUsdCents": 16200
        },
        "instantShipLowestPriceCents": {
            "currency": "USD"
        }
    },
    {
        "sizeOption": {
            "value": 3.5,
            "presentation": "3.5"
        },
        "stockStatus": "not_in_stock",
        "boxCondition": "badly_damaged",
        "shoeCondition": "new_no_defects",
        "lowestPriceCents": {
            "currency": "USD"
        },
        "lastSoldPriceCents": {
            "amount": 24000,
            "currency": "USD",
            "amountUsdCents": 24000
        },
        "instantShipLowestPriceCents": {
            "currency": "USD"
        }
    }
]