Live
get_skin_price_history
pricempire.comReturns historical CS2 skin prices from https://pricempire.com as timestamp, USD-cent price and trade-volume tuples for one item and marketplace provider.
Parameters5
Runs11
Updated3d ago
Operational11 runs · 100% 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_history?
Returns historical CS2 skin prices from https://pricempire.com as timestamp, USD-cent price and trade-volume tuples for one item and marketplace provider. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_slug, provider, from_timestamp, to_timestamp, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"items": [
[
null
]
],
"source": "<string>",
"currency": "<string>",
"provider": "<string>",
"item_slug": "<string>",
"price_unit": "<string>",
"volume_unit": "<string>",
"to_timestamp": 0,
"from_timestamp": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2d34a7d9-35ed-4e81-84a0-5a05cd29bce8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2d34a7d9-35ed-4e81-84a0-5a05cd29bce8",
"variables": {
"item_slug": "ak-47-redline-well-worn",
"provider": "youpin",
"from_timestamp": 1577836800,
"to_timestamp": 0,
"timeout_seconds": 30
}
}'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="2d34a7d9-35ed-4e81-84a0-5a05cd29bce8") — the "get_skin_price_history" function, which returns historical CS2 skin prices from https://pricempire.com as timestamp, USD-cent price and trade-volume tuples for one item and marketplace provider.. It takes item_slug (str), provider (str), from_timestamp (int), to_timestamp (int), timeout_seconds (int). Return the result as structured JSON.