Skip to content

Asset Endpoints

Our Asset Intelligence API provides endpoints for analyzing equipment photos, extracting nameplate data, and generating comprehensive asset profiles to help you better understand and manage your equipment portfolio.

Analyze Asset Photo

POST /asset-intelligence/analyze-nameplate

Analyzes a photo of an equipment nameplate to extract asset details and generate a comprehensive profile.

Request

  • Method: POST
  • Content-Type: multipart/form-data
  • Required Fields: photo (binary image file)
Terminal window
curl -X POST https://api.inspectr.ai/asset-intelligence/analyze-nameplate \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "photo=@nameplate.jpg"

Process Asset Details

POST /asset-intelligence/analyze

Generate an asset profile using make, model, and serial number information.

Parameters

NameTypeRequiredDescription
model_numberstringYesEquipment model number
brand_namestringYesEquipment manufacturer
serial_numberstringNoEquipment serial number

Example Requests

Terminal window
curl -X POST "https://api.inspectr.ai/asset-intelligence/analyze?model_number=48HCDD08A2A5A0A0A0&brand_name=Carrier&serial_number=2318P21234" \
-H "Authorization: Bearer YOUR_API_TOKEN"

Need Help?