Quickstart
1. Get your API key
Sign up and generate an API key from the dashboard. No credit card required to start — new accounts get 5 free credits.
2. Create a reconstruction
curl -X POST https://api.reali3.net/v1/reconstruction \ -H "Authorization: Bearer YOUR_API_KEY" \ -F "files=@image1.jpg" \ -F "files=@image2.jpg" \ -F "files=@image3.jpg"This returns a job id immediately with status: "pending". See Create Reconstruction for the full request/response reference.
3. Check the status
curl https://api.reali3.net/v1/reconstruction/{id}/status \ -H "Authorization: Bearer YOUR_API_KEY"Poll until status is completed. See Get Status.
4. Download the model
curl https://api.reali3.net/v1/reconstruction/{id}/download/gltf \ -H "Authorization: Bearer YOUR_API_KEY"Returns a direct download URL for your 3D model. See Download Model.