Device specs, warranty & resale value — in one API call
Honest by construction. Bulk up to 100 devices per request.
The same device intelligence behind our lookup tools, as a server-to-server JSON API.
Send a make/model (and serial if you have one); get back processor, RAM, storage,
warranty status, and eBay sold-price resale comps. A miss returns null with a
note — never a fabricated value.
What you get
- Verified specs: CPU, RAM, storage (minimum-config when no serial is supplied)
- Warranty status by serial
- eBay resale value — average / min / max sold-price comps
- Bulk: up to 100 devices per request, ~1,500 lookups/day
- Simple Bearer-token auth; JSON in, JSON out
Example request
curl -X POST https://www.itadtools.com/api/v1/device-lookup \
-H "Authorization: Bearer ITAD-XXXX-XXXX-XXXX-XXXX" \
-H "Content-Type: application/json" \
-d '{"devices":[{"manufacturer":"Dell","model":"Latitude 7420","serial":"ABC1234"}]}'
Example response (values illustrative)
{
"api_version": "v1",
"organization": "Your Company",
"count": 1,
"results": [{
"manufacturer": "Dell", "model": "Latitude 7420", "serial": "ABC1234",
"basis": "serial", "status": "ok",
"cpu": "Intel Core i7-1185G7", "ram": "16 GB", "storage": "512 GB NVMe SSD",
"spec_confidence": "high", "note": null,
"resale": { "currency": "USD", "avg_sold": 289.0, "min_sold": 210.0,
"max_sold": 365.0, "sample_size": 24, "source": "ebay-sold-comps" }
}]
}
Pricing
from $150/mo
Custom volume pricing available. Tell us your monthly volume and we'll get you a key.