Marketplace
No threads yet
Live

search_marketplace_items

market.csgo.com

Searches https://market.csgo.com for CS2/CS:GO marketplace items and returns offset-paginated real-time prices with every non-empty item field. Supports weapon category, wear or quality, text search, and sorting.

Parameters7
Runs11
Updated10d ago
Operational11 runs · 100% 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 search_marketplace_items?

Searches https://market.csgo.com for CS2/CS:GO marketplace items and returns offset-paginated real-time prices with every non-empty item field. Supports weapon category, wear or quality, text search, and sorting. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass weapon_type, quality, search, sort_by, sort_direction, offset, count and get the result back without maintaining a scraper.

Response

{
  "items": [
    {}
  ],
  "offset": 0,
  "search": "<string>",
  "source": "<string>",
  "sort_by": "<string>",
  "qualities": [
    "<string>"
  ],
  "pagination": {
    "count": 0,
    "total": 0,
    "per_page": 0,
    "last_page": 0,
    "current_page": 0,
    "has_more_pages": true
  },
  "weapon_types": [
    "<string>"
  ],
  "sort_direction": "<string>",
  "requested_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c52ebadf-c2cf-42c4-8863-f33dd49da270/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c52ebadf-c2cf-42c4-8863-f33dd49da270",
    "variables": {
        "weapon_type": "",
        "quality": "",
        "search": "",
        "sort_by": "popularity",
        "sort_direction": "desc",
        "offset": 0,
        "count": 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="c52ebadf-c2cf-42c4-8863-f33dd49da270") — the "search_marketplace_items" function, which searches https://market.csgo.com for CS2/CS:GO marketplace items and returns offset-paginated real-time prices with every non-empty item field. Supports weapon category, wear or quality, text search, and sorting..

It takes weapon_type (str), quality (str), search (str), sort_by (str), sort_direction (str), offset (int), count (int). Return the result as structured JSON.