Quick Start Guide

Get up and running with AI Body Scan API in under 5 minutes.

Step 1: Get Your API Key

https://korra.work For testing, you can use the sandbox API key from the dashboard.

# Your API key will look like this:
pk_test_placeholder

Step 2: Test the API

Use cURL to make your first API call. You'll need two photos: front and side.

# Test the health endpoint
curl -X GET "https://api.aiscan.io/v2/health" \
  -H "X-API-Key: pk_test_placeholder_api_key"
{
  "status": "healthy",
  "version": "2.0.0",
  "mediapipe_available": true
}

Step 3: Extract Measurements

Upload front and side photos to get accurate measurements (±1-3cm).

# Extract measurements from photos
curl -X POST "https://api.aiscan.io/v2/measurements/extract" \
  -H "X-API-Key: pk_test_placeholder_api_key" \
  -F "front=@front.jpg" \
  -F "side=@side.jpg" \
  -F "height=175" \
  -F "gender=male"
{
  "success": true,
  "measurements": {
    "Shoulder": 46.4,
    "Chest Round": 102.9,
    "Waist Round": 82.4,
    "Hip Round": 97.8
  },
  "accuracy": "±1-3cm"
}

Photo Guidelines

📸 Front Photo

  • Stand 6-8 feet from camera
  • Keep phone at chest height
  • Stand straight, arms at sides
  • Wear fitted clothing

📸 Side Photo

  • Turn 90° from camera
  • Full body in frame
  • Side profile visible
  • Feet shoulder-width apart

Next Steps

Now that you've made your first call, explore more:

📦

Install SDK

Use our Python or JavaScript SDK for easier integration.

View SDKs →

📏

All Measurements

See the full list of 18 male and 27 female measurements.

View Reference →

⚠️

Error Handling

Learn how to handle API errors gracefully.

View Errors →