Clothes Tryon
Request
curl -X POST "https://tryiton.now/api/v1/tryon/clothes" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model_image": "https://example.com/path/to/model.png",
"garment_image": "https://example.com/path/to/garment.png"
}'fetch('https://tryiton.now/api/v1/tryon/clothes', {
method: 'POST',
body: JSON.stringify({
model_image: "https://example.com/path/to/model.png",
garment_image: "https://example.com/path/to/garment.png"
}),
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
}
});import requests
response = requests.post(
"https://tryiton.now/api/v1/tryon/clothes",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
json={
"model_image": "https://example.com/path/to/model.png",
"garment_image": "https://example.com/path/to/garment.png"
}
)Request Parameters
Required Parameters

Optional Parameters
Response Polling
Successful Response
Runtime Errors
Name
Cause
Solution
The Error Object
Related Guides
Last updated