See It In Action
Try our floor plan analysis with sample images or upload your own.
Select a Floor Plan
Or
Drop your floor plan image here
PNG, JPG up to 10MB
Anonymous uploads are limited to 3 per day. Results are watermarked.
Results
Click 'Analyze Floor Plan' to see results
Quick Start Code
Integration Examples
import requests
response = requests.post(
"https://api.floorplan.dev/v1/extract",
headers={"Authorization": "Bearer fp_live_xxx"},
files={"image": open("floorplan.png", "rb")}
)
data = response.json()
print(f"Detected {data['room_count']} rooms")
print(f"Total area: {data['total_area_sqft']} sq ft")