{"site": "MostExpensiveWatches", "openapi": "https://mostexpensivewatches.net/openapi.json", "llms": "https://mostexpensivewatches.net/llms.txt", "answer_api": "https://mostexpensivewatches.net/api/answers.json", "answer_search": "https://mostexpensivewatches.net/api/answers/search?q=5712&summary=1", "contact": "https://mostexpensivewatches.net/data-licensing", "examples": [{"name": "search_live_inventory", "audience": "cli", "description": "Search live inventory for Patek Nautilus listings.", "endpoint": "https://mostexpensivewatches.net/api/listings/search?q=Patek%20Nautilus&limit=5", "curl": "curl -s 'https://mostexpensivewatches.net/api/listings/search?q=Patek%20Nautilus&limit=5'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/listings/search?q=Patek%20Nautilus&limit=5');\nconst data = await r.json();\nconsole.log(data.items.map(x => [x.brand, x.model, x.price_usd]));", "python": "import json, urllib.request\nurl = 'https://mostexpensivewatches.net/api/listings/search?q=Patek%20Nautilus&limit=5'\ndata = json.load(urllib.request.urlopen(url))\nprint([(x['brand'], x['model'], x['price_usd']) for x in data['items']])"}, {"name": "reference_with_market_context", "audience": "agents", "description": "Fetch an iconic reference with matched listings and auction comps.", "endpoint": "https://mostexpensivewatches.net/api/references/patek-philippe-nautilus-5711-1a", "curl": "curl -s 'https://mostexpensivewatches.net/api/references/patek-philippe-nautilus-5711-1a'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/references/patek-philippe-nautilus-5711-1a');\nconst data = await r.json();\nconsole.log(data.reference.brand, data.reference.model, data.listing_stats.median);", "python": "import json, urllib.request\nurl = 'https://mostexpensivewatches.net/api/references/patek-philippe-nautilus-5711-1a'\ndata = json.load(urllib.request.urlopen(url))\nprint(data['reference']['brand'], data['listing_stats']['median'])"}, {"name": "resolve_fuzzy_reference", "audience": "agents", "description": "Resolve fuzzy user text into canonical MEW reference URLs before citing.", "endpoint": "https://mostexpensivewatches.net/api/references/resolve?q=Rolex%20Pepsi&limit=3", "curl": "curl -s 'https://mostexpensivewatches.net/api/references/resolve?q=Rolex%20Pepsi&limit=3'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/references/resolve?q=' + encodeURIComponent('RM 56'));\nconst data = await r.json();\nconsole.log(data.matches.map(x => [x.brand, x.ref, x.url]));", "python": "import json, urllib.parse, urllib.request\nq = urllib.parse.quote('Patek 5711')\nurl = 'https://mostexpensivewatches.net/api/references/resolve?q=' + q + '&limit=3'\ndata = json.load(urllib.request.urlopen(url))\nprint([(x['brand'], x['ref'], x['url']) for x in data['matches']])"}, {"name": "brand_dossier", "audience": "vibecoders", "description": "Pull a one-call brand dossier with inventory stats, references, reviews and auctions.", "endpoint": "https://mostexpensivewatches.net/api/brands/rolex?limit=8", "curl": "curl -s 'https://mostexpensivewatches.net/api/brands/rolex?limit=8'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/brands/rolex?limit=8');\nconst data = await r.json();\nconsole.log(data.brand.name, data.inventory.median, data.references.length);", "python": "import json, urllib.request\nurl = 'https://mostexpensivewatches.net/api/brands/rolex?limit=8'\ndata = json.load(urllib.request.urlopen(url))\nprint(data['brand']['name'], data['inventory']['median'], len(data['references']))"}, {"name": "auction_comps", "audience": "research", "description": "Pull documented auction results for a brand.", "endpoint": "https://mostexpensivewatches.net/api/auctions?brand=Rolex&limit=10", "curl": "curl -s 'https://mostexpensivewatches.net/api/auctions?brand=Rolex&limit=10'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/auctions?brand=Rolex&limit=10');\nconst data = await r.json();\nconsole.table(data.auction_lots.map(x => ({lot: x.title, hammer: x.hammer_usd})));", "python": "import json, urllib.request\nurl = 'https://mostexpensivewatches.net/api/auctions?brand=Rolex&limit=10'\ndata = json.load(urllib.request.urlopen(url))\nprint([(x['title'], x.get('hammer_usd')) for x in data['auction_lots']])"}, {"name": "localized_answer_page", "audience": "agents", "description": "Use a localized citable answer page when a common market question matches.", "endpoint": "https://mostexpensivewatches.net/es/answers/patek-5711-market-price", "curl": "curl -s 'https://mostexpensivewatches.net/es/answers/patek-5711-market-price'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/ja/answers/richard-mille-rm-56-price');\nconst html = await r.text();\nconsole.log(html.includes('application/ld+json'));", "python": "import urllib.request\nurl = 'https://mostexpensivewatches.net/fr/answers/most-expensive-rolex'\nhtml = urllib.request.urlopen(url).read().decode()\nprint('application/ld+json' in html)"}, {"name": "answer_json_payload", "audience": "agents", "description": "Fetch localized answer text, facts, evidence and API links as JSON.", "endpoint": "https://mostexpensivewatches.net/api/answers/patek-5711-market-price.json?lang=es", "curl": "curl -s 'https://mostexpensivewatches.net/api/answers/patek-5711-market-price.json?lang=es'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/answers/richard-mille-market-price.json?lang=ja');\nconst data = await r.json();\nconsole.log(data.answer.title, data.answer.facts.map(x => [x.label, x.value]));", "python": "import json, urllib.request\nurl = 'https://mostexpensivewatches.net/api/answers/rolex-market-price.json?lang=es'\ndata = json.load(urllib.request.urlopen(url))\nprint(data['answer']['answer'])"}, {"name": "answer_search_summary", "audience": "agents", "description": "Search the citable answer index and return compact payloads before fetching detail JSON.", "endpoint": "https://mostexpensivewatches.net/api/answers/search?q=5712&summary=1&limit=5", "curl": "curl -s 'https://mostexpensivewatches.net/api/answers/search?q=5712&summary=1&limit=5'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/api/answers/search?q=5712&summary=1&limit=5');\nconst data = await r.json();\nconsole.log(data.answers.map(x => [x.slug, x.detail_api]));", "python": "import json, urllib.parse, urllib.request\nq = urllib.parse.quote('Patek 5712 market price')\nurl = 'https://mostexpensivewatches.net/api/answers/search?q=' + q + '&summary=1&limit=5'\ndata = json.load(urllib.request.urlopen(url))\nprint([(x['slug'], x['detail_api']) for x in data['answers']])"}, {"name": "mcp_tool_manifest", "audience": "vibecoders", "description": "Discover MEW tools for agentic apps from a compact MCP-style manifest.", "endpoint": "https://mostexpensivewatches.net/developers/mcp.json", "curl": "curl -s 'https://mostexpensivewatches.net/developers/mcp.json'", "javascript": "const r = await fetch('https://mostexpensivewatches.net/developers/mcp.json');\nconst data = await r.json();\nconsole.log(data.tools.map(t => t.name));", "python": "import json, urllib.request\ndata = json.load(urllib.request.urlopen('https://mostexpensivewatches.net/developers/mcp.json'))\nprint([tool['name'] for tool in data['tools']])"}, {"name": "install_cli_client", "audience": "cli", "description": "Download the dependency-free Python CLI client.", "endpoint": "https://mostexpensivewatches.net/cli/mew.py", "curl": "curl -sS https://mostexpensivewatches.net/cli/mew.py -o mew.py && python3 mew.py stats", "javascript": "", "python": "import urllib.request\nurllib.request.urlretrieve('https://mostexpensivewatches.net/cli/mew.py', 'mew.py')\nprint('python3 mew.py search \"Royal Oak\" --limit 5')"}]}