Live
search_cs2_skins
pricempire.comSearches https://pricempire.com for CS2 skins whose market_hash_name matches a name or keyword, returning every source field and minimum USD prices sorted from highest to lowest.
Parameters2
Runs12
Updated10d ago
Operational12 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 search_cs2_skins?
Searches https://pricempire.com for CS2 skins whose market_hash_name matches a name or keyword, returning every source field and minimum USD prices sorted from highest to lowest. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit and get the result back without maintaining a scraper.
Response
{
"sort": "<string>",
"count": 0,
"items": [
{
"id": 0,
"slug": "<string>",
"type": "<string>",
"image": "<string>",
"offers": 0,
"rarity": "<string>",
"min_price": 0,
"is_exact_match": 0,
"market_hash_name": "<string>",
"similarity_score": 0,
"discriminator_slug": "<string>"
}
],
"query": "<string>",
"currency": "<string>",
"price_unit": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/4f01f102-f450-451b-a207-166d4560f318/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4f01f102-f450-451b-a207-166d4560f318",
"variables": {
"query": "AK-47",
"limit": 20
}
}'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="4f01f102-f450-451b-a207-166d4560f318") — the "search_cs2_skins" function, which searches https://pricempire.com for CS2 skins whose market_hash_name matches a name or keyword, returning every source field and minimum USD prices sorted from highest to lowest.. It takes query (str), limit (int). Return the result as structured JSON.