Elirian Design Studio is available as a standalone product — but for developers and product teams who want to embed AI interior design capabilities directly into their own platform, the Elirian REST API provides full programmatic access. ## What the API exposes The API mirrors the capabilities of the Studio interface: style transfer, redesign from a reference image, virtual staging, upscaling, and product matching. Every generation mode available in the UI is accessible via API endpoint. ## Authentication API access requires an API key generated from your dashboard under Account > API Keys. All API requests must include the key in the Authorization header: Authorization: Bearer ek_live_xxxxxxxxxxxxxxxxxxxx ## A simple generation request POST /api/v1/generate { "mode": "redesign", "style": "Japandi", "room_type": "Living Room", "quality": "high", "image_url": "https://example.com/room.jpg" } The response returns a session_token which you can poll at /api/v1/session/{token} until the status is completed. ## Rate limits and credit consumption API generations consume credits at the same rate as UI generations. Standard costs 1 credit, High costs 3, Ultra costs 5. Rate limits: 60 requests per minute on Professional, 300 per minute on Enterprise.