Marketplace
No threads yet
Live

get_italy_listing_details

ebay.it

Retrieves full public details for one eBay Italy listing from https://ebay.it, including price, images, condition, seller information, item specifics, ratings, reviews, availability, shipping, and listing signals. Expired or unknown item IDs return a stale_input response.

Parameters1
Runs9
Updated10d ago
Operational9 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 get_italy_listing_details?

Retrieves full public details for one eBay Italy listing from https://ebay.it, including price, images, condition, seller information, item specifics, ratings, reviews, availability, shipping, and listing signals. Expired or unknown item IDs return a stale_input response. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id and get the result back without maintaining a scraper.

Response

{
  "item": {
    "mpn": "<string>",
    "url": "<string>",
    "price": 0,
    "title": "<string>",
    "gtin13": "<string>",
    "images": [
      "<string>"
    ],
    "rating": 0,
    "seller": {
      "name": "<string>",
      "username": "<string>",
      "store_url": "<string>",
      "items_sold": "<string>",
      "seller_type": "<string>",
      "member_since": "<string>",
      "response_time": "<string>",
      "feedback_score": "<string>",
      "detailed_ratings": {},
      "feedback_percent": 0
    },
    "item_id": "<string>",
    "returns": "<string>",
    "reviews": [
      {
        "body": "<string>",
        "title": "<string>",
        "author": "<string>",
        "rating": 0,
        "best_rating": 0,
        "date_published": "<string>"
      }
    ],
    "currency": "<string>",
    "condition": "<string>",
    "categories": [
      "<string>"
    ],
    "price_text": "<string>",
    "sold_count": 0,
    "watch_count": 0,
    "availability": "<string>",
    "rating_count": 0,
    "date_modified": "<string>",
    "image_details": [
      {
        "url": "<string>",
        "width": "<string>",
        "height": "<string>"
      }
    ],
    "condition_code": "<string>",
    "item_specifics": {},
    "listing_formats": [
      "<string>"
    ],
    "shipping_details": [
      {
        "cost": 0,
        "currency": "<string>",
        "destination_country": "<string>"
      }
    ],
    "shipping_summary": "<string>",
    "quantity_available": 0,
    "availability_starts": "<string>",
    "accepted_payment_methods": [
      "<string>"
    ]
  },
  "status": "<string>",
  "message": "<string>",
  "stale_input": true,
  "requested_item_id": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4a6f3506-f1f0-461b-b5b6-ab025f47916e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4a6f3506-f1f0-461b-b5b6-ab025f47916e",
    "variables": {
        "item_id": "385795705596"
    }
}'

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="4a6f3506-f1f0-461b-b5b6-ab025f47916e") — the "get_italy_listing_details" function, which retrieves full public details for one eBay Italy listing from https://ebay.it, including price, images, condition, seller information, item specifics, ratings, reviews, availability, shipping, and listing signals. Expired or unknown item IDs return a stale_input response..

It takes item_id (str). Return the result as structured JSON.