cURL
curl --request POST \ --url https://api.example.com/analysis/stageability/multiple \ --header 'Content-Type: application/json' \ --data ' { "imageUrls": [ "<string>" ] } '
{ "statusCode": 400, "message": "No images provided or more than 10 images", "error": "Bad Request" }
Show Image Object Properties
Show Summary Properties
curl -X 'POST' \ 'http://localhost:3001/analysis/stageability/multiple' \ -H 'accept: application/json' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "imageUrls": [ "https://example.com/image1.jpg" ] }'
{ "images": [ { "isStageable": true, "roomType": "living_room", "confidence": 0.95, "details": "Clear room with good lighting", "imageUrl": "https://example.com/image1.jpg" } ], "summary": { "totalImages": 5, "stageableImages": 3, "nonStageableImages": 2, "confidence": 0.87, "roomTypes": [ "living_room", "bedroom", "kitchen" ] } }