✦ STIL.AI Fashion API

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 ↓

Pricing

Free

0 kr
Get Free Key →

Enterprise

499 kr/month
Contact Us →

Quick Start

1. Get an API Key

POST /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
}

2. Generate Fashion Concepts

POST /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"
}

3. Generate Fashion Images

POST /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"
}

Authentication

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.

Rate Limits

TierDaily LimitHeaders
Free10 / day / IPX-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset
Pro100 / day
EnterpriseUnlimited

When rate-limited, the API returns 429 Too Many Requests with an upgrade URL.

All Endpoints

MethodPathDescription
GET/apiAPI info and documentation URLs
GET/api/healthHealth check + queue stats
POST/api/registerRegister for free API key
POST/api/fashion-conceptGenerate AI fashion concepts
POST/api/generateQueue text-to-fashion image generation
GET/api/status/{job_id}Check image generation status

Use Cases

Base URL

https://tools.gracestack.se

Built with ✦ by STIL.AI · Gracestack AB · 2026