Skip to content

Create Reconstruction

Upload images or videos and create a 3D reconstruction. Use multipart/form-data to upload files.

POST /v1/reconstruction

Request

POST /v1/reconstruction HTTP/1.1
Host: api.reali3.net
Authorization: Bearer YOUR_API_KEY
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="files"; filename="image1.jpg"
Content-Type: image/jpeg
[binary file data]
------WebKitFormBoundary7MA4YWxkTrZu0gW--

Supported inputs: JPEG, PNG, HEIC images and MP4, MOV video (video is processed frame by frame).

Response

HTTP/1.1 202 Accepted
Content-Type: application/json
{
"id": "rec_abc123xyz",
"status": "pending",
"created_at": "2024-01-15T10:30:00Z",
"estimated_completion": "2024-01-15T10:32:00Z",
"files_uploaded": 3,
"status_url": "https://api.reali3.net/v1/reconstruction/rec_abc123xyz/status"
}