Marketplace
No threads yet
Live

get_skin_buy_orders

pricempire.com

Returns CS2 skin buy orders from https://pricempire.com across marketplaces, grouped by condition variant with all non-empty order fields.

Parameters3
Runs7
Updated3d ago
Degraded7 runs · 85.7% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_skin_buy_orders?

Returns CS2 skin buy orders from https://pricempire.com across marketplaces, grouped by condition variant with all non-empty order fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass skin_slug, item_type, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "currency": "<string>",
  "skin_slug": "<string>",
  "conditions": [
    {
      "item_id": 0,
      "condition": "<string>",
      "item_slug": "<string>",
      "buy_orders": [
        {}
      ],
      "condition_slug": "<string>",
      "market_hash_name": "<string>"
    }
  ],
  "price_unit": "<string>",
  "order_count": 0,
  "condition_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9c453503-99ef-4851-91e5-025fd48000f4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9c453503-99ef-4851-91e5-025fd48000f4",
    "variables": {
        "skin_slug": "ak-47-redline",
        "item_type": "skin",
        "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="9c453503-99ef-4851-91e5-025fd48000f4") — the "get_skin_buy_orders" function, which returns CS2 skin buy orders from https://pricempire.com across marketplaces, grouped by condition variant with all non-empty order fields..

It takes skin_slug (str), item_type (str), timeout_seconds (int). Return the result as structured JSON.