Our API identifies construction categories, types, and materials from site photos. Powered by advanced computer vision, purpose-built for the construction industry.
Get results in under 2 seconds. Our GPU-powered API classifies images instantly.
Purpose-built categories covering structural, MEP, finishing, sitework, and more.
One endpoint, one API key. Send an image, get structured JSON back. That simple.
import requests
response = requests.post(
"https://api.example.com/v1/classify",
headers={"x-api-key": "sk_live_..."},
files={"file": open("site_photo.jpg", "rb")}
)
result = response.json()
print(result["category"]["prediction"])
# → "Structural"
print(result["types"][0]["prediction"])
# → "Concrete Work"