Kitchen Configurator API - KitchenGPT Kitchen Configurator — KitchenGPT Developers - KitchenGPT

Kitchen Configurator

Generate a photoreal pass from a configured kitchen layout payload.

Module id: kitchen-configurator · Asynchronous job

Endpoint

POST https://kitchengpt.io/v1/modules/kitchen-configurator

Request parameters

NameTypeRequiredDescription
imagefileyesElevation or base kitchen render/photo, max 10 MB.
configurationobjectnoOptional photoreal context JSON (door_style, finish, cabinet_color, units, etc.).

Example

curl -X POST "https://kitchengpt.io/v1/modules/kitchen-configurator" \
  -H "Authorization: Bearer kgpt_..." \
  -H "Accept: application/json" \
  -F "image=@file.jpg" \
  -F 'configuration={...}'

Response

HTTP/1.1 202 Accepted
{
  "job": {
    "id": "…",
    "module": "kitchen-configurator",
    "status": "queued"
  },
  "links": {
    "self": "https://kitchengpt.io/v1/jobs/…"
  }
}

Poll GET https://kitchengpt.io/v1/jobs/{id} until succeeded or failed.

Notes

  • Images must be JPEG, PNG, or WebP, max 10 MB.
  • Inputs must depict a kitchen. Other room types are not supported.
  • Do not rely on pixel-perfect color matching for manufacturing without your own QA.