Generate AI fashion designs from text descriptions. Free tier with 10 requests/day. Pro and Enterprise plans for production use. Powered by Qwen3-32B on Azure A100.
View Pricing → Quick Start ↓/api/register
curl -X POST https://tools.gracestack.se/api/register \
-H "Content-Type: application/json" \
-d '{"email":"you@example.com","name":"Your Name"}'
Response:
{
"api_key": "your-api-key-here",
"tier": "free",
"daily_limit": 10
}
/api/fashion-concept
curl -X POST https://tools.gracestack.se/api/fashion-concept \
-H "Content-Type: application/json" \
-H "X-API-Key: your-api-key-here" \
-d '{"style":"cyberpunk evening gown","count":3}'
Response:
{
"concepts": [
{
"name": "Neon Nocturne",
"category": "Avant-Garde Evening Wear",
"description": "A form-fitting, iridescent gown with..."
}
],
"generated_by": "A100-Qwen3-32B",
"style": "cyberpunk evening gown"
}
/api/generate
curl -X POST https://tools.gracestack.se/api/generate \
-H "Content-Type: application/json" \
-H "X-API-Key: your-api-key-here" \
-d '{"description":"A flowing maxi dress in emerald green silk"}'
Response:
{
"job_id": "a1b2c3d4e5f6",
"status": "queued",
"estimated_seconds": 180
}
Poll for results:
curl https://tools.gracestack.se/api/status/a1b2c3d4e5f6
{
"job_id": "a1b2c3d4e5f6",
"status": "completed",
"image_url": "https://tools.gracestack.se/images/a1b2c3d4e5f6.png"
}
Pass your API key via header X-API-Key: your-key or query parameter ?api_key=your-key.
Requests without an API key are rate-limited to 10/day per IP.
| Tier | Daily Limit | Headers |
|---|---|---|
| Free | 10 / day / IP | X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset |
| Pro | 100 / day | |
| Enterprise | Unlimited |
When rate-limited, the API returns 429 Too Many Requests with an upgrade URL.
| Method | Path | Description |
|---|---|---|
| GET | /api | API info and documentation URLs |
| GET | /api/health | Health check + queue stats |
| POST | /api/register | Register for free API key |
| POST | /api/fashion-concept | Generate AI fashion concepts |
| POST | /api/generate | Queue text-to-fashion image generation |
| GET | /api/status/{job_id} | Check image generation status |
https://tools.gracestack.se
Built with ✦ by STIL.AI · Gracestack AB · 2026