EquipBook API
Equipment Valuations at Scale
Integrate real-time heavy equipment valuations and comparable sales data directly into your platform. Powered by the same engine trusted by dealers, auction houses, and insurers.
API Access
Full access to valuation and comparables endpoints
- ✓100 valuations per day (default)
- ✓Comparable sales search
- ✓JSON response with confidence scoring
- ✓Dedicated support
Endpoints
Authenticate every request with the X-API-Key header.
/api/v1/valuateGet a full equipment valuation with confidence scoring, value tiers, and comparable sales.
Request Body
{
"make": "Caterpillar",
"model": "320",
"year": 2020,
"hours": 3500,
"condition": "good",
"state": "Texas"
}/api/v1/compsSearch comparable equipment sales by make, model, and year range.
Query Parameters
| Param | Required | Description |
|---|---|---|
| make | Yes | Equipment manufacturer |
| model | No | Model name (partial match) |
| yearMin | No | Minimum year |
| yearMax | No | Maximum year |
| limit | No | Results per page (default 20, max 50) |
Example Request
cURL
curl -X POST https://equipbook.ai/api/v1/valuate \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"make": "Caterpillar",
"model": "320",
"year": 2020,
"hours": 3500,
"condition": "good",
"state": "Texas"
}'Example Response
JSON
{
"success": true,
"valuation": {
"estimatedValue": 187500,
"confidenceScore": 0.82,
"confidenceRange": {
"low": 168750,
"high": 206250
},
"valueTiers": {
"quickSale": 159375,
"fairMarket": 187500,
"retail": 215625
},
"comparables": [...]
}
}Built For
Auction Houses
Pre-populate lot estimates with real-time valuations. Give bidders confidence with data-backed reserve prices.
Dealer Networks
Instantly appraise trade-ins and inventory. Standardize pricing across locations with consistent valuations.
Insurance Companies
Automate equipment appraisals for policy underwriting and claims. Reduce manual inspection costs.
Fleet Management Software
Track fleet asset values in real time. Optimize replacement cycles with depreciation data.