# Interior Mixer > Interior Mixer is a model that combines different interior objects images and design elements into one unified, realistic image. ## Overview - **Model ID**: `Interior-Mixer` - **Category**: image - **Provider**: modelslab - **Status**: active - **Screenshot**: `https://assets.modelslab.com/generations/5ec05ebd-5724-4a89-b72d-9a3bc6c54a29.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v6/interior/interior_mixer` - **Method**: POST ### Parameters - **`init_image`** (required): Upload the room image where the object will be added - Type: file - Example: Upload the room image - **`object_image`** (required): Upload the image of the object that needs to be added to the Room image - Type: file - Example: Upload the image of the object - **`prompt`** (required): Enter the prompt for generation - Type: textarea - **`width`** (required): Width of output image. Min: 512, Max: 2048. If not provided, uses original image resolution Required range: 512 <= x <= 2048 - Type: number (range: 512-2048) - **`height`** (required): Height of the output image. Min: 512, Max: 2048. If not provided, uses original image resolution Required range: 512 <= x <= 2048 - Type: number (range: 512-2048) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v6/interior/interior_mixer \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "Interior-Mixer", "init_image": "https://assets.modelslab.com/generations/6840b690-116b-438c-b59c-0e433f19252d.jpg", "object_image": "https://assets.modelslab.com/generations/a9affef8-07ee-4ffe-aad5-195f18c17dc5.jpg", "prompt": "Add sofa from object image to the good position in room image", "width": "1024", "height": "1024" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v6/interior/interior_mixer", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "Interior-Mixer", "init_image": "https://assets.modelslab.com/generations/6840b690-116b-438c-b59c-0e433f19252d.jpg", "object_image": "https://assets.modelslab.com/generations/a9affef8-07ee-4ffe-aad5-195f18c17dc5.jpg", "prompt": "Add sofa from object image to the good position in room image", "width": "1024", "height": "1024" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v6/interior/interior_mixer", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "Interior-Mixer", "init_image": "https://assets.modelslab.com/generations/6840b690-116b-438c-b59c-0e433f19252d.jpg", "object_image": "https://assets.modelslab.com/generations/a9affef8-07ee-4ffe-aad5-195f18c17dc5.jpg", "prompt": "Add sofa from object image to the good position in room image", "width": "1024", "height": "1024" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/Interior-Mixer/Interior-Mixer) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)