Skip to content

Instantly share code, notes, and snippets.

@jhoneill
Created August 13, 2025 11:34
Show Gist options
  • Save jhoneill/1b2992f7e1f9c91ed51ae90522640269 to your computer and use it in GitHub Desktop.
Save jhoneill/1b2992f7e1f9c91ed51ae90522640269 to your computer and use it in GitHub Desktop.
$query = "Hp850 g5"
$Content = '{"requests":[{"indexName":"prod_cex_uk","params":"attributesToRetrieve=%5B%22boxBuyAllowed%22%2C%22boxName%22%2C%22boxSaleAllowed%22%2C%22boxWebBuyAllowed%22%2C%22boxWebSaleAllowed%22%2C%22cannotBuy%22%2C%22cashPrice%22%2C%22categoryFriendlyName%22%2C%22categoryName%22%2C%22collectionQuantity%22%2C%22ecomQuantity%22%2C%22exchangePrice%22%2C%22imageUrls%22%2C%22isNewBox%22%2C%22masterBoxId%22%2C%22masterBoxName%22%2C%22outOfEcomStock%22%2C%22superCatFriendlyName%22%2C%22superCatName%22%2C%22boxId%22%2C%22outOfStock%22%2C%22sellPrice%22%2C%22exchangePerc%22%2C%22cashBuyPrice%22%2C%22scId%22%2C%22discontinued%22%2C%22new%22%2C%22cashPriceCalculated%22%2C%22exchangePriceCalculated%22%2C%22rating%22%2C%22ecomQuantityOnHand%22%2C%22priceLastChanged%22%2C%22isImageTypeInternal%22%2C%22imageNames%22%2C%22Grade%22%5D&clickAnalytics=true&facets=%5B%22*%22%5D&filters=boxVisibilityOnWeb%3D1%20AND%20boxSaleAllowed%3D1&hitsPerPage=100&maxValuesPerFacet=1000&page=0&query=QQQQQ&userToken=819ebaf576834417b72e6b4453f1b219"}]}'
$params = @{Uri = "https://search.webuy.io/1/indexes/*/queries?x-algolia-api-key=bf79f2b6699e60a18ae330a1248b452c&x-algolia-application-id=LNNFEEWZVA"
Method = "POST"
body = $content -replace "QQQQQ", ([uri]::EscapeDataString($query))
ContentType = "application/json"
}
$r = Invoke-RestMethod -UseBasicParsing @params
$r
#$r.results
#$r.results[-1].factes
#$r.results.hits[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment