Live
get_skin_price_statistics
pricempire.comReturns per-condition CS2 skin liquidity and 7-day, 30-day, 90-day, and yearly historical price ranges from https://pricempire.com.
Parameters2
Runs14
Updated3d ago
Degraded14 runs · 50% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_skin_price_statistics?
Returns per-condition CS2 skin liquidity and 7-day, 30-day, 90-day, and yearly historical price ranges from https://pricempire.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass skin_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"skin": {},
"count": 0,
"source": "<string>",
"conditions": [
{}
],
"price_unit": "<string>",
"liquidity_unit": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/9dbdd8cd-2c49-46c1-a94f-71eab6a3a11e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9dbdd8cd-2c49-46c1-a94f-71eab6a3a11e",
"variables": {
"skin_slug": "ak-47-redline",
"timeout_seconds": 45
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9dbdd8cd-2c49-46c1-a94f-71eab6a3a11e") — the "get_skin_price_statistics" function, which returns per-condition CS2 skin liquidity and 7-day, 30-day, 90-day, and yearly historical price ranges from https://pricempire.com.. It takes skin_slug (str), timeout_seconds (int). Return the result as structured JSON.