Industrial AI Infrastructure
Integrate KORRA's clinical-grade body measurement engine directly into your custom tailoring platform, e-commerce flow, or manufacturing pipeline.
BASE ENDPOINT
/api/v2
For local development. In production, replace with your deployed domain.
Authentication
KORRA uses API Keys to authenticate requests. Your Merchant key must be included in the header of every technical handshake.
curl -X POST "https://korra.ai/api/v2/measurements/extract" \
-H "X-API-Key: YOUR_MERCHANT_KEY" \
-F "front=@photo.jpg" ...
-H "X-API-Key: YOUR_MERCHANT_KEY" \
-F "front=@photo.jpg" ...
Biometric Extraction
The core endpoint for 3D body regression. Requires a Front and Side photo for volumetric accuracy.
POST
/measurements/extract
Takes multipart/form-data images and returns personalized circumferences.
{
"success": true,
"measurements": {
"Chest Round": 102.4,
"Waist Round": 88.6,
"Hips Round": 105.1
},
"scan_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d"
}
"success": true,
"measurements": {
"Chest Round": 102.4,
"Waist Round": 88.6,
"Hips Round": 105.1
},
"scan_id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d"
}
Interactive Documentation
Launch the real-time Swagger UI to test endpoints, inspect schemas, and verify your API keys directly in the browser.
Open Interactive Swagger UI