Sketch to Kitchen API - KitchenGPT Sketch to Kitchen — KitchenGPT Developers - KitchenGPT

Sketch to Kitchen

Turn a kitchen sketch into a photoreal image.

Module id: sketch-to-kitchen · Asynchronous job

Endpoint

POST https://kitchengpt.io/v1/modules/sketch-to-kitchen

Request parameters

NameTypeRequiredDescription
imagefileyesSketch image, max 10 MB.
stylestringnoTarget style key.
promptstringnoOptional finish direction.

Example

curl -X POST "https://kitchengpt.io/v1/modules/sketch-to-kitchen" \
  -H "Authorization: Bearer kgpt_..." \
  -H "Accept: application/json" \
  -F "image=@file.jpg" \
  -F "style=value" \
  -F "prompt=value"

Response

HTTP/1.1 202 Accepted
{
  "job": {
    "id": "…",
    "module": "sketch-to-kitchen",
    "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.