calculate_vinted_price_statistics
vinted.frComputes individual listing prices and aggregate market-value statistics from up to 96 matching products on https://www.vinted.fr. Price filters can narrow the sample before average, median, minimum, and maximum are calculated.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is calculate_vinted_price_statistics?
Computes individual listing prices and aggregate market-value statistics from up to 96 matching products on https://www.vinted.fr. Price filters can narrow the sample before average, median, minimum, and maximum are calculated. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, price_from, price_to, max_listings and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"query": "<string>",
"prices": [
{}
],
"filters": {},
"currency": "<string>",
"sample_size": 0,
"median_price": 0,
"average_price": 0,
"maximum_price": 0,
"minimum_price": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/7a130d0a-70a0-4747-9926-0500d558fac0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7a130d0a-70a0-4747-9926-0500d558fac0",
"variables": {
"query": "carte pokemon",
"price_from": 0.0,
"price_to": 0.0,
"max_listings": 96
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="7a130d0a-70a0-4747-9926-0500d558fac0") — the "calculate_vinted_price_statistics" function, which computes individual listing prices and aggregate market-value statistics from up to 96 matching products on https://www.vinted.fr. Price filters can narrow the sample before average, median, minimum, and maximum are calculated.. It takes query (str), price_from (float), price_to (float), max_listings (int). Return the result as structured JSON.