Apple Serial Lookup
by @siatrial
Look up Apple device information from a serial number. Supports iPhones, iPads, Macs (MacBook, iMac, Mac mini, Mac Pro, Mac Studio), Apple Watch, Apple TV, and iPods. Use when a user provides an Apple serial number and wants to identify the device, check specs, manufacturing date/location, warranty status, or get detailed model information.
clawhub install apple-serial-lookupπ About This Skill
name: apple-serial-lookup description: Look up Apple device information from a serial number. Supports iPhones, iPads, Macs (MacBook, iMac, Mac mini, Mac Pro, Mac Studio), Apple Watch, Apple TV, and iPods. Use when a user provides an Apple serial number and wants to identify the device, check specs, manufacturing date/location, warranty status, or get detailed model information.
Apple Serial Lookup
Identify any Apple device from its serial number by combining local decoding with web lookups.
Workflow
1. Decode locally (old 11-12 char format)
Run the bundled decoder script:
python3 scripts/decode_serial.py
This extracts:
The script includes a database of common model codes compiled from repair sources and EveryMac.
2. Web lookup for complete specs and unknown models
For full specifications or unknown model codes, perform web lookup:
web_search for "Apple serial number specs" or " site:everymac.com" web_fetch from https://everymac.com/ultimate-mac-lookup/?search_keywords=If EveryMac is blocked by captcha, try:
https://appleserialnumberinfo.com/Desktop/index.php?sn= (may need browser)For new-format (post-2021) serials, web search won't help β direct the user to check Apple's coverage page themselves:
https://checkcoverage.apple.com/ (requires captcha, but returns device model + warranty status)3. Present results
Combine local decode + web data into a comprehensive summary:
Enhanced Output (from local decode):
Web Enhancement (when needed):
Reference
The model code database is continuously expandable as new mappings are discovered.