A powerful API-first SaaS platform for AI-driven fashion try-on capabilities
Aistyla is a powerful API-first SaaS platform that enables businesses to integrate modern AI-driven fashion try-on capabilities. Upload clothing items, select or provide a user image, and generate realistic styled looks with clean white backgrounds — all via simple and secure APIs.
See how clothes look on a real person or selectable model using advanced AI rendering.
Upload tops, bottoms, shoes, scarves, and more.
Create complete styled looks from top to bottom.
To start using the Aistyla API, you'll need to register for an account and obtain your API key.
Create an account at aistyla.com/register
Once registered, you can find your API key in your account dashboard.
Use your API key to authenticate and start making requests.
All API requests require authentication using a Bearer Token in the Authorization header.
Authorization: Bearer YOUR_API_TOKEN
You can obtain a token by making a POST request to the /v1/login
endpoint with your credentials:
curl -X POST https://api.aistyla.com/v1/login \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "username=your_email@example.com&password=your_password"
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "bearer"
}
Register a new user account.
{
"email": "user@example.com",
"password": "securepassword",
"full_name": "John Doe",
"company": "Fashion Inc."
}
{
"id": "user_id",
"email": "user@example.com",
"full_name": "John Doe",
"company": "Fashion Inc.",
"created_at": "2025-03-28T01:22:36Z"
}
Authenticate and get an access token.
username=user@example.com&password=securepassword
{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "bearer"
}
Upload a new clothing item.
file: [binary image data]
name: "Blue T-Shirt"
type: "top"
description: "Comfortable cotton t-shirt"
brand: "Fashion Brand"
color: "blue"
tags: ["casual", "summer"]
{
"id": "item_id",
"name": "Blue T-Shirt",
"type": "top",
"description": "Comfortable cotton t-shirt",
"brand": "Fashion Brand",
"color": "blue",
"tags": ["casual", "summer"],
"image_url": "https://storage.aistyla.com/items/blue-tshirt.jpg",
"created_at": "2025-03-28T01:22:36Z",
"updated_at": "2025-03-28T01:22:36Z"
}
Get all items for the authenticated user.
Parameter | Type | Description |
---|---|---|
type | string | Filter by item type (top, bottom, shoes, etc.) |
[
{
"id": "item_id_1",
"name": "Blue T-Shirt",
"type": "top",
"image_url": "https://storage.aistyla.com/items/blue-tshirt.jpg",
"created_at": "2025-03-28T01:22:36Z",
"updated_at": "2025-03-28T01:22:36Z"
},
{
"id": "item_id_2",
"name": "Black Jeans",
"type": "bottom",
"image_url": "https://storage.aistyla.com/items/black-jeans.jpg",
"created_at": "2025-03-28T01:22:36Z",
"updated_at": "2025-03-28T01:22:36Z"
}
]
Get available models for try-on.
Parameter | Type | Description |
---|---|---|
gender | string | Filter by gender (male, female) |
body_type | string | Filter by body type |
ethnicity | string | Filter by ethnicity |
[
{
"id": "model_id_1",
"name": "Model 1",
"gender": "female",
"body_type": "slim",
"ethnicity": "asian",
"image_url": "https://storage.aistyla.com/models/model1.jpg"
},
{
"id": "model_id_2",
"name": "Model 2",
"gender": "male",
"body_type": "athletic",
"ethnicity": "caucasian",
"image_url": "https://storage.aistyla.com/models/model2.jpg"
}
]
Generate a styled look with selected items and model.
{
"model_id": "model_id_1",
"items": ["item_id_1", "item_id_2"],
"style": "casual",
"background": "white"
}
{
"id": "look_id",
"model_id": "model_id_1",
"items": ["item_id_1", "item_id_2"],
"style": "casual",
"background": "white",
"image_url": "https://storage.aistyla.com/looks/look1.jpg",
"created_at": "2025-03-28T01:22:36Z"
}
Get all generated looks for the authenticated user.
[
{
"id": "look_id_1",
"model_id": "model_id_1",
"style": "casual",
"image_url": "https://storage.aistyla.com/looks/look1.jpg",
"created_at": "2025-03-28T01:22:36Z"
},
{
"id": "look_id_2",
"model_id": "model_id_2",
"style": "formal",
"image_url": "https://storage.aistyla.com/looks/look2.jpg",
"created_at": "2025-03-28T01:22:36Z"
}
]
curl -X POST https://api.aistyla.com/v1/upload-item \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "file=@/path/to/image.jpg" \
-F "name=Blue T-Shirt" \
-F "type=top" \
-F "description=Comfortable cotton t-shirt" \
-F "brand=Fashion Brand" \
-F "color=blue" \
-F "tags=[\"casual\", \"summer\"]"
curl -X POST https://api.aistyla.com/v1/generate-look \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"model_id": "model_id_1",
"items": ["item_id_1", "item_id_2"],
"style": "casual",
"background": "white"
}'
const formData = new FormData();
formData.append('file', fileInput.files[0]);
formData.append('name', 'Blue T-Shirt');
formData.append('type', 'top');
formData.append('description', 'Comfortable cotton t-shirt');
formData.append('brand', 'Fashion Brand');
formData.append('color', 'blue');
formData.append('tags', JSON.stringify(['casual', 'summer']));
fetch('https://api.aistyla.com/v1/upload-item', {
method: 'POST',
headers: {
'Authorization': `Bearer ${YOUR_API_TOKEN}`
},
body: formData
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
const lookData = {
model_id: 'model_id_1',
items: ['item_id_1', 'item_id_2'],
style: 'casual',
background: 'white'
};
fetch('https://api.aistyla.com/v1/generate-look', {
method: 'POST',
headers: {
'Authorization': `Bearer ${YOUR_API_TOKEN}`,
'Content-Type': 'application/json'
},
body: JSON.stringify(lookData)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
import requests
import json
url = 'https://api.aistyla.com/v1/upload-item'
headers = {
'Authorization': f'Bearer {YOUR_API_TOKEN}'
}
files = {
'file': open('/path/to/image.jpg', 'rb')
}
data = {
'name': 'Blue T-Shirt',
'type': 'top',
'description': 'Comfortable cotton t-shirt',
'brand': 'Fashion Brand',
'color': 'blue',
'tags': json.dumps(['casual', 'summer'])
}
response = requests.post(url, headers=headers, files=files, data=data)
print(response.json())
import requests
import json
url = 'https://api.aistyla.com/v1/generate-look'
headers = {
'Authorization': f'Bearer {YOUR_API_TOKEN}',
'Content-Type': 'application/json'
}
data = {
'model_id': 'model_id_1',
'items': ['item_id_1', 'item_id_2'],
'style': 'casual',
'background': 'white'
}
response = requests.post(url, headers=headers, data=json.dumps(data))
print(response.json())
We provide official client libraries for several programming languages to make integration even easier.