search_italy_listings
ebay.itSearches active eBay Italy listings on https://ebay.it with price, condition, format, category, sorting, and page filters. Returns up to 60 listing records per page with titles, prices, clean URLs, images, ratings, seller signals, and other available listing attributes.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_italy_listings?
Searches active eBay Italy listings on https://ebay.it with price, condition, format, category, sorting, and page filters. Returns up to 60 listing records per page with titles, prices, clean URLs, images, ratings, seller signals, and other available listing attributes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, min_price, max_price, condition, listing_format, category, sort_order, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"results": [
{
"url": "<string>",
"image": "<string>",
"price": "<string>",
"title": "<string>",
"badges": [
"<string>"
],
"rating": 0,
"item_id": "<string>",
"returns": "<string>",
"currency": "<string>",
"shipping": "<string>",
"subtitle": "<string>",
"condition": "<string>",
"sponsored": true,
"attributes": [
"<string>"
],
"sold_count": "<string>",
"price_value": 0,
"seller_type": "<string>",
"watch_count": "<string>",
"availability": "<string>",
"rating_count": 0,
"listing_format": "<string>",
"seller_username": "<string>",
"discounted_price": "<string>",
"seller_feedback_count": "<string>",
"seller_feedback_percent": 0
}
],
"next_page": 0,
"page_size": 0,
"has_next_page": true,
"total_results": 0,
"applied_filters": {},
"total_results_text": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/a4a93468-dacc-4909-9788-6a2da96b5553/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a4a93468-dacc-4909-9788-6a2da96b5553",
"variables": {
"query": "iphone",
"min_price": 0.0,
"max_price": 0.0,
"condition": "all",
"listing_format": "all",
"category": "0",
"sort_order": "best_match",
"page": 1
}
}'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="a4a93468-dacc-4909-9788-6a2da96b5553") — the "search_italy_listings" function, which searches active eBay Italy listings on https://ebay.it with price, condition, format, category, sorting, and page filters. Returns up to 60 listing records per page with titles, prices, clean URLs, images, ratings, seller signals, and other available listing attributes.. It takes query (str), min_price (float), max_price (float), condition (str), listing_format (str), category (str), sort_order (str), page (int). Return the result as structured JSON.