Embed AI watch recognition
directly into your product
The watchID API gives you instant access to production-grade computer vision models and a curated catalogue of more than 100,000 watch references—with over 1M+ watches already scanned. Automate identification, valuation workflows, and customer journeys with a single API call.
Enterprise Solutions
Tailored applications for every sector of the luxury watch industry.
Marketplaces & Retailers
Automate your listing process. Upload a photo and instantly pre-fill reference numbers, brand, model, and year data to save hours of manual entry.
Insurance & Appraisal
Verify assets remotely with visual AI. Reduce fraud risk by confirming model identity against our master database before issuing policies.
Auction Houses
Sort and catalog incoming consignments at scale. Identify hidden gems in bulk lots and ensure accurate attribution for catalogues.
Valuation Services
Connect visual identification directly to real-time market data. Provide instant price estimates based on recognized models.
Seamless Integration
Our RESTful API is designed for developers, by developers. With comprehensive documentation, webhooks, and SDKs, you can integrate watchID into your workflow in an afternoon.
- REST API with JSON responses
- High-throughput batch processing
- Enterprise-grade security
# Simple cURL example
curl -X POST \
"https://api.watchid.app/v1/scan" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"image_url": "https://cdn.example.com/watch.jpg"}'
# JSON response
{
"id": "scan_01HV4Y8QPK0W7GQ82J",
"status": "completed",
"results": [{
"brand": "Rolex",
"model": "Submariner Date",
"reference": "126610LN",
"confidence": 0.9821
}],
"created_at": "2024-03-01T10:24:18Z"
}