Integrate Loomix virtual try-on into your application with our REST API. Simple, fast, and well-documented.
Sign up, verify, and submit your first try-on job
curl -X POST https://vton.botmartz.com/api/auth/signup \
-H "Content-Type: application/json" \
-d '{"username":"demo","email":"demo@example.com"}'curl -X POST https://vton.botmartz.com/api/auth/verify-otp \
-H "Content-Type: application/json" \
-d '{"username":"demo","otp":"123456"}'
# Response: { "access_token": "eyJ...", "refresh_token": "..." }curl -X POST https://vton.botmartz.com/api/tryon \ -H "Authorization: Bearer YOUR_TOKEN" \ -F "human_image=@person.jpg" \ -F "garment_image=@shirt.jpg" \ -F "garment_description=a blue t-shirt" \ -F "category=upper_body"
Pass your JWT token as a Bearer token in the Authorization header. Tokens expire after 30 minutes — use the refresh token to get a new one.
https://vton.botmartz.com/api
Free: 5 requests/day · Pro: 100/day · Enterprise: Unlimited. Exceeding limits returns 429.
Create your free account and start integrating virtual try-on today.