Pixly Developer Docs

Everything Pixly's app can generate — virtual staging, photo enhancement, cinematic video — is callable by AI agents and scripts through one MCP endpoint, with an OAuth sign-in flow and a CLI on top. This page is the complete reference; the machine-readable mirror lives at /docs.md.

Getting started

The fastest path, end to end:

  1. Create an API key in Settings → API keys (shown once — copy it immediately). An active Pixly subscription is required.
  2. Connect a client (one-step setup per client) or install the CLI: npx pixly-cli help
  3. Ask for a staged room — or run pixly stage photo.jpg --style scandinavian

Generations spend the account's normal credit balance — same pipeline, quality, and pricing as the app, and every result also appears in the Pixly Library.

Authentication

Two credential types, both sent as Authorization: Bearer <token>:

  • API keys (pixly_sk_…) — for Claude Code, Cursor, scripts, and CI. Created in Settings, stored hashed, revocable instantly. Keys can never mint other keys.
  • OAuth 2.1 (pixly_at_… access tokens) — for clients with a sign-in flow, like claude.ai custom connectors. Public clients with PKCE S256 only; single-use authorization codes; refresh-token rotation.

OAuth surface (discovery starts from the 401 WWW-Authenticate header):

ParameterTypeRequiredDescription
GET /.well-known/oauth-authorization-servernoRFC 8414 authorization-server metadata (endpoints, PKCE methods, grant types)
GET /.well-known/oauth-protected-resource/api/mcpnoRFC 9728 protected-resource metadata — advertised in the 401 WWW-Authenticate header
POST /api/oauth/registernoRFC 7591 dynamic client registration (open; public clients; body: client_name, redirect_uris[])
GET /oauth/authorizenoUser consent page — query: response_type=code, client_id, redirect_uri, state, code_challenge, code_challenge_method=S256
POST /api/oauth/tokennoToken endpoint — grant_type authorization_code (code, code_verifier, client_id, redirect_uri) or refresh_token (rotates the pair). Form-encoded or JSON.

MCP endpoint

POST https://pixly.app/api/mcp

Model Context Protocol over streamable HTTP, stateless: single JSON responses, no SSE streams, no sessions. Protocol versions 2025-03-26 and 2025-06-18. Methods: initialize, tools/list, tools/call, ping; notifications return 202.

Example request:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "virtual_staging",
    "arguments": {
      "imageUrl": "https://example.com/living-room.jpg",
      "style": "scandinavian"
    }
  }
}

Example response — result.content[0].text is JSON (a job snapshot); tool failures set result.isError: true with an actionable message:

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "{\n  \"jobId\": \"4bf4bb95-f5af-44d8-9508-65807f68636d\",\n  \"type\": \"image_staging\",\n  \"status\": \"processing\",\n  \"creditsCharged\": 1,\n  \"createdAt\": \"2026-08-10T20:07:08Z\",\n  \"note\": \"Still running — call get_job again in a few seconds.\"\n}"
      }
    ]
  }
}

REST API

Prefer plain HTTP to JSON-RPC? Every tool is also a REST endpoint — same pipeline, same credits, results in the same Library. Identical bearer auth. /v1 is a stable contract: fields and tools get added, never removed or reshaped.

ParameterTypeRequiredDescription
GET /api/v1/toolsnoTool catalog with JSON Schema for every input — self-documenting
POST /api/v1/tools/{slug}noRun a tool. 200 = finished inline (photo tools), 202 = accepted, poll the job (video tools)
POST /api/v1/uploadsnoOnly for local files: { "filename", "contentType" } returns a presigned PUT ticket, an imageUrl to pass to any tool, and a non-expiring r2Path. (A photo that already has a URL goes straight to a tool as imageUrl.)
GET /api/v1/jobs/{id}noJob status + result URLs (valid 7 days)
GET /api/v1/jobsnoRecent generations — ?limit=1-50&type=images|videos
GET /api/v1/accountnoCredit balance and plan

End to end:

# 1. run a tool — pass the photo's URL, we fetch and store it
curl -X POST https://pixly.app/api/v1/tools/virtual_staging \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/living-room.jpg","style":"scandinavian"}'
# → { "jobId": "...", "status": "completed", "creditsCharged": 1, "resultUrls": ["https://..."] }

# 2. for video tools (202), poll until completed
curl https://pixly.app/api/v1/jobs/JOB_ID -H "Authorization: Bearer $PIXLY_API_KEY"

# Local file with no URL? Get a presigned PUT ticket, upload, pass r2Path.
curl -X POST https://pixly.app/api/v1/uploads \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"filename":"living-room.jpg","contentType":"image/jpeg"}'
# → { "uploadUrl": "https://...", "r2Path": "users/.../living-room.jpg" }

Status codes:

ParameterTypeRequiredDescription
200noDone — resultUrls present (photo tools finish inline)
202noAccepted and running — poll GET /api/v1/jobs/{id} (video tools)
401noMissing/invalid credential
402noOut of credits, or no active subscription (error.required = credits needed)
404noUnknown tool or job
410noSource photo no longer available — re-upload
422noInvalid input — error.issues lists the offending fields
429noRate limited — see Retry-After (120 req/min, 30/min for generations)
502 / 503noProvider trouble; credits from a charged job auto-refund within 24h

Errors come back as { "error": { "code", "message", "issues"?, "required"?, "jobId"? } }.

Typical workflow

  1. Call a generation tool with imageUrl — any public https URL, or a data:image/…;base64, URI. Pixly fetches and stores it for you → job snapshot.
  2. Poll get_job until status: "completed" → download resultUrls. Image tools usually complete inline (up to ~2 min); videos take 1–5 minutes.

Results come back as URLs, so chaining needs no upload step — feed a resultUrlsentry straight back in as the next tool's imageUrl to animate a photo you just staged. Only a local file with no URL needs create_upload_ticket first: PUT the bytes to the returned uploadUrl, then send r2Path instead.

Tools reference

Generated from the live tool registry. Every tool is callable three ways — MCP, REST, and the CLI — with identical parameters.

virtual_staging

Try it in the app →

Furnish and style an empty (or badly furnished) room photo in a chosen interior style. The flagship tool. HD, watermark-free results. Some stagings also render a free second version: get_job then lists both under `versions` (the second can take a minute or two longer) — show the user both and let them pick. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
stylestringyesInterior style id. One of: modern-minimal, scandinavian, industrial, mid-century-modern, japandi, contemporary, transitional, urban-chic, bauhaus, organic-modern, brutalist, traditional, art-deco, colonial, victorian, french-country, english-cottage, neoclassical, art-nouveau, grandmillennial, hollywood-regency, mediterranean, mediterranean-modern, rustic-farmhouse, bohemian, tropical, family-staging, hygge, wabi-sabi, modern-farmhouse, cottagecore, shabby-chic, cabin-lodge, eclectic, warm-luxury, investor-premium, contemporary-dark, glam, penthouse-modern, hotel-suite, maximalist, coastal, desert-modern, hacienda, pacific-northwest, caribbean-resort, hamptons, moroccan, tuscan, southwestern, asian-zen, coastal-grandmother, cape-cod. When the user has no preference, "modern-minimal" or "scandinavian" suit most listings.
roomTypestringnoRoom type hint; omit to let vision infer it from the photo
customInstructionsstringnoOptional extra instructions blended into the staging prompt
numImagesdeprecatedinteger (default: 1)noIgnored — staging always returns one image. Call again for another take.
stagingQualitydeprecated"standard" | "pro"noIgnored — the Pro tier is retired. Every staging costs 1 credit and may render a second version on another model for free.
curl -X POST https://pixly.app/api/v1/tools/virtual_staging \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg","style":"..."}'

edit_staged_photo

Apply a specific change to a previously staged photo (swap the sofa, add a rug) while preserving everything else. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoURL of the PREVIOUS staged result to edit (the resultUrls entry from its job). Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 path of the previous staged result — the alternative to imageUrl.
stylestringyesStyle id of the staging being edited (the same ids virtual_staging takes), used as context to match new elements
customInstructionsstringyesThe concrete edit to apply, e.g. "change the sofa to grey"
sourceJobIdstringnoJob the edited result came from (lineage)
sourceResultIndexintegernoWhich variation was edited
curl -X POST https://pixly.app/api/v1/tools/edit_staged_photo \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg","style":"...","customInstructions":"..."}'

cinematic_motion

Try it in the app →

Turn a single listing photo into a short cinematic clip with a professional camera move (zoom, orbit, fly-through, crane up…). No second frame needed. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
cameraMove"zoom" | "fly-through" | "orbit" | "pan" | "aerial" | "pull-back" | "crane-up" | "tilt-up" | "boom-down" | "drone-orbit" | "flyover" | "pull-away" | "handheld"noCamera-move preset
direction"left-to-right" | "right-to-left"noThe direction the camera travels, for the moves that have one (orbit, pan, drone-orbit). 'left-to-right' sends the camera rightward, 'right-to-left' leftward. Ignored by every other move; omit to use the move's own default.
durationSeconds5 | 10noClip length; the routed model validates its supported tiers
format"9:16" | "16:9"noAspect ratio
curl -X POST https://pixly.app/api/v1/tools/cinematic_motion \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

photo_to_video

Try it in the app →

Turn a start photo — and optionally an end photo — into a video. With an end photo the camera travels from the first photo and lands exactly on the second (e.g. two views of the same kitchen → an orbit around the island). Pick a ready-made camera move or write your own prompt; choose the model, length and sound. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoStart frame — where the video begins. Public https URL or data: URI; either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
endImageUrlstringnoOptional end frame — the camera travels from the start photo and lands exactly on this one. Best when both photos show the same space from different spots.
endR2PathadvancedstringnoR2 path of the end frame — the alternative to endImageUrl.
cameraMove"smooth" | "walk" | "orbitLeft" | "orbitRight" | "pushIn" | "pullBack" | "riseUp"noReady-made camera move used when no prompt is given.
promptstringnoYour own description of the video, in any language. Replaces cameraMove when set.
model"kling-v3" | "kling-2.6"nokling-v3: 3/5/8/10/15 s, optional sound, lands most precisely on the end frame. kling-2.6: 5/10 s, silent, cheaper.
durationSecondsinteger (default: 5)noClip length. kling-v3 takes 3, 5, 8, 10 or 15; kling-2.6 takes 5 or 10.
soundboolean (default: false)noAdd ambient sound (kling-v3 only; kling-2.6 is always silent).
format"16:9" | "9:16" | "1:1"noLabel for the clip's shape; the video follows the start photo's own shape.
curl -X POST https://pixly.app/api/v1/tools/photo_to_video \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg","endImageUrl":"https://example.com/room.jpg"}'

before_after_reel

Try it in the app →

Animate a before→after transformation (e.g. empty room → staged) into a social-ready reveal video from two frames. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
beforeImageUrlstringnoStart frame (e.g. the empty room photo) — https URL or data: URI
afterImageUrlstringnoEnd frame (e.g. the staged result) — https URL or data: URI
beforeR2PathadvancedstringnoR2 path of the start frame — the alternative to beforeImageUrl.
afterR2PathadvancedstringnoR2 path of the end frame — the alternative to afterImageUrl.
videoIntent"staging_reveal" | "staging_reveal_reverse" | "construction_timelapse"no
revealStyle"smooth" | "slideIn" | "dropLand" | "glowBuild" | "movers"noHow the transformation is revealed
durationSeconds5 | 10no
format"9:16" | "16:9" | "1:1"no
curl -X POST https://pixly.app/api/v1/tools/before_after_reel \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"beforeImageUrl":"https://example.com/room.jpg","afterImageUrl":"https://example.com/room.jpg"}'

Turn an amateur listing photo into a finished, professional real-estate photo (exposure, color, clarity). Returns 3 variants to pick from. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
curl -X POST https://pixly.app/api/v1/tools/enhance_photo \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

declutter_photo

Try it in the app →

Remove clutter, mess, and personal items from a listing photo while keeping the room, furniture, and architecture intact. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
curl -X POST https://pixly.app/api/v1/tools/declutter_photo \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

remove_furniture

Try it in the app →

Empty a room and rebuild the surfaces behind what was taken out, keeping the architecture and camera angle identical — the blank canvas for restaging. By default it also removes the room's own joinery (fitted kitchen, built-in wardrobes, bathroom fixtures); mode 'movable' leaves those alone, and an optional extra takes the floor covering out too, for a full renovation strip-back. Doors always stay. (Declutter is the opposite: it keeps the furniture.) Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
mode"movable" | "fitted"noHow far to strip the room. 'fitted' (the default) removes the movable contents AND the room's own joinery — the fitted kitchen and its appliances, built-in wardrobes and shelving, and bathroom sanitaryware. 'movable' removes only furniture, rugs, curtains, art, plants and lamps, leaving the kitchen, built-ins, sanitaryware, floor and doors exactly as they are.
extrasarraynoExtra things to take out, for a full strip-back. Only applies with mode 'fitted' and is ignored otherwise: 'floor' takes the floor covering down to bare concrete screed. Omit to keep the floor. Doors always stay, as do walls, ceiling, windows, structural openings and the camera.
curl -X POST https://pixly.app/api/v1/tools/remove_furniture \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Turn a daytime listing photo into a magazine-style night scene — lights on, warm glow, dusk sky — with the building and camera angle unchanged. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
curl -X POST https://pixly.app/api/v1/tools/day_to_night \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Replace a grey, overcast or blown-out sky in an exterior listing photo with a natural clear blue sky, matching the light and keeping the building, trees and reflections unchanged. A run takes about 1–2 minutes; poll get_job until it completes. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
sky"auto" | "clear" | "light_clouds" | "dramatic_clouds" | "sunset" | "pastel_sunrise" | "winter_clear"noSky style. 'auto' lets the tool pick what suits the photo's light.
sun"auto" | "on" | "off"noSun glow: auto (a glow for sunset/sunrise styles, none otherwise), on (place it with sunX/sunY), off.
sunXnumbernoWith sun=on: glow position from the left edge, 0..1.
sunYnumbernoWith sun=on: glow position from the top edge, 0..1 (kept in the top 60%).
curl -X POST https://pixly.app/api/v1/tools/replace_sky \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Turn patchy, brown or bare grass in an exterior listing photo into a healthy green lawn, leaving driveways, paths, beds and the house untouched. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
lawn"auto" | "fresh_mown" | "lush" | "natural" | "golf" | "warm_season"noLawn style. 'auto' lets the tool pick a healthy lawn that suits the photo.
shade"light" | "medium" | "deep"noHow green; only used with a chosen lawn style.
stripes"auto" | "on" | "off"noMowing stripes: auto (stripes for fresh_mown and golf, none otherwise), on, off.
curl -X POST https://pixly.app/api/v1/tools/replace_lawn \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Give one or more surfaces of a room a new finish — repaint the walls, change the floor, reface the kitchen cabinets and worktop, retile the bathroom or refinish the furniture — while the room's layout, fittings, windows and camera angle stay exactly as shot. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
surfacesarraynoWhich surfaces get a new finish: 'walls', 'floor', 'cabinets' (fitted joinery plus its worktop and splashback), 'bathroom_tiles' or 'furniture' (upholstery and wood finishes). Omit for walls. The room's layout, fittings and camera never change.
looksobjectnoThe finish per surface: 'auto', one of the presets below, or 'custom' with your own words in `notes`. A finish that does not belong to its surface falls back to 'auto' (the tool picks one that suits the room; several on auto are made to agree). walls: warm_white, soft_grey, greige, sage, deep_navy. floor: light_oak, walnut, grey_plank, polished_concrete, stone_tile. cabinets: white_shaker, charcoal, natural_oak, forest_green, navy_cabinets. bathroom_tiles: white_metro, marble_large, terrazzo, matt_black_hex, travertine. furniture: light_neutral, warm_wood, dark_wood, black_leather.
notesobjectnoYour own description of the finish for a surface, used when that surface's look is "custom" (e.g. "terracotta hex tiles with dark grout"). Set look "custom" and the note together; "custom" with no note falls back to "auto". 120 characters max, and anything in it that is not a description of a finish is ignored.
curl -X POST https://pixly.app/api/v1/tools/restyle_room \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Photograph the same property in another season: take the snow off the ground, the roof and the branches and put the garden in leaf, or move a summer shot to autumn or winter. The house, the driveway, the paths and the camera angle stay exactly as shot. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
season"auto" | "spring" | "summer" | "autumn" | "winter"noThe season to show the property in: 'spring', 'summer', 'autumn', 'winter', or 'auto' (the default — the tool shows the property at its best, which for a snowy or dormant photo means high summer). Only the planting, the ground cover and the daylight change; the house, the driveway, the paths and the framing stay exactly as shot.
curl -X POST https://pixly.app/api/v1/tools/reset_season \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

makeover_exterior

Try it in the app →

Design the garden of an exterior listing photo as one coherent scheme — planting, a terrace or deck, a pool, a pergola, a fire pit, a fence, lighting — in a chosen style, at the right scale and perspective, while the house, its roof, the driveway, the sun direction and the neighbours stay exactly as shot. One run builds the whole scheme. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
style"auto" | "modern_minimal" | "mediterranean" | "classic_english" | "natural_lowwater" | "tropical_resort" | "farmhouse"noThe design language of the whole scheme: 'modern_minimal', 'mediterranean', 'classic_english', 'natural_lowwater', 'tropical_resort', 'farmhouse', or 'auto' (the default — chosen to suit the house's architecture and the climate in the photo).
includearraynoWhich elements the scheme includes, any number: 'planting' (beds, hedges, a feature tree), 'patio_dining' (a paved terrace with a dining set), 'deck_lounge' (a deck with loungers or a low sofa), 'pool', 'pergola', 'fire_pit', 'fence_gate' (a boundary treatment with a gate), 'lighting'. Omit or send an empty list (the default) to let the tool design what the lot wants. One run composes them all into one garden, each sized to the plot.
scope"add" | "full"no'full' (the default) redesigns the whole yard in the style; 'add' keeps the existing garden and builds the chosen elements into it. The house, the driveway and the neighbours never change either way.
notestringnoYour own words about the garden you want (e.g. "a small kidney-shaped pool with a stone surround and lavender everywhere"). 160 characters max; anything in it that is not a description of the garden is ignored.
curl -X POST https://pixly.app/api/v1/tools/makeover_exterior \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

touch_up_exterior

Try it in the app →

One-click retouch of an exterior listing photo: a natural sky where it is dull, a healthy lawn where the grass is dead, a clean driveway, and bins, hoses and other clutter removed — each only where needed, with the house unchanged. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
fixarraynoWhich areas the tool may touch: 'sky', 'lawn', 'hardscape' (driveway, paths, patio), 'clutter' (bins, hoses, tools, a stray vehicle). Omit for all four; each is fixed only where the photo needs it.
curl -X POST https://pixly.app/api/v1/tools/touch_up_exterior \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Enlarge a photo by up to four times with real detail, to a maximum of 4096 px on the long edge — for print, MLS uploads and large screens. Nothing in the photo changes. Free on any result Pixly made (pass its r2Path from list_library); 1 credit on your own photo. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
curl -X POST https://pixly.app/api/v1/tools/upscale_hd \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg"}'

Place a photorealistic 3D monument sign with your exact text (price, area, SOLD) onto a photo of an empty plot, matched to perspective and lighting. Costs credits from the user's Pixly balance.

ParameterTypeRequiredDescription
imageUrlstringnoPublic https URL of the source photo, or a data: URI. Either imageUrl or r2Path is required.
r2PathadvancedstringnoR2 object path from an upload ticket (the create_upload_ticket tool, or POST /api/v1/uploads over REST) — the alternative to imageUrl when the photo is a local file.
textstringyesSign label, verbatim — a price ("$1,200,000"), area ("800 m²"), or short word ("SOLD")
look"stone" | "metal" | "grass" | "sign"noSign material/style; defaults server-side
orientation"standing" | "lying"noLetter orientation (letter looks only); defaults server-side
curl -X POST https://pixly.app/api/v1/tools/plot_sign \
  -H "Authorization: Bearer $PIXLY_API_KEY" -H "Content-Type: application/json" \
  -d '{"imageUrl":"https://example.com/room.jpg","text":"..."}'

upload_image_from_url

Rarely needed: generation tools take an imageUrl directly. Use this only to import a photo into Pixly ahead of time, e.g. to reuse one URL across several tools without refetching it each time.

ParameterTypeRequiredDescription
urlstringyesPublicly reachable image URL (JPG/PNG/WebP, max 10 MB) to import into Pixly

create_upload_ticket

Get a presigned upload URL for a LOCAL image file — the one case a URL can't cover. PUT the file to uploadUrl with the same Content-Type, then pass the returned r2Path to a generation tool instead of imageUrl. Ticket expires in 1 hour.

ParameterTypeRequiredDescription
filenamestringyesOriginal filename, used for the extension
contentType"image/jpeg" | "image/png" | "image/webp" | "image/heic" | "image/heif" | "image/tiff"yesMIME type the PUT request will send
sizeBytesintegernoExact byte size of the file. Recommended: when given it is signed into the URL, so the upload is bounded server-side.

get_job

Check a generation job's status and fetch result URLs when it's done. Video jobs take 1-5 minutes — poll this with a few seconds between calls.

ParameterTypeRequiredDescription
jobIdstringyesJob id returned by a generation tool

list_library

List the user's recent generations, or with type "uploads" their own uploaded source photos, newest first. Uploads are the way in when the photo is a local file: connectors cannot send bytes, so the user adds it at https://pixly.app/app and you pick up the r2Path here.

ParameterTypeRequiredDescription
type"images" | "videos" | "uploads"noFilter by media type. "uploads" lists the user's own source photos instead of generations — use it when they refer to a photo they added but have not run a tool on yet.
limitinteger (default: 20)no

get_credit_balance

The user's current Pixly credit balance and plan.

Jobs & results

Every generation tool and get_job return the same snapshot shape:

ParameterTypeRequiredDescription
jobIdstringyesJob id — pass to get_job to poll
type"image_staging" | "video_pair" | "video_tour"yesJob family
status"pending" | "processing" | "completed" | "failed"yesAnything not completed/failed is still running
creditsChargednumberyesCredits debited for this job
createdAtstring (ISO 8601)yesSubmission time
completedAtstring (ISO 8601)noPresent once finished
resultUrlsstring[]noPresigned download URLs (present when completed; valid 7 days)
errorstringnoFailure reason; the message says whether the credit came back immediately or is in 24h refund review
notestringnoHint for agents, e.g. poll again in a few seconds

Result URLs are presigned and valid for 7 days; the generation itself stays in the user's Pixly Library permanently.

Errors & refunds

  • HTTP 401 — missing or invalid credential. The WWW-Authenticate header carries the OAuth resource-metadata URL so OAuth-capable clients discover the sign-in flow automatically.
  • JSON-RPC errors — -32700 parse, -32600 invalid request (batching is not supported), -32601 unknown method, -32602 invalid params, -32603 internal.
  • Tool errors result.isError: true with a message agents can act on: insufficient credits (with the amount needed), invalid input (with the exact field), or a source photo that's no longer available.
  • Refunds — a failed job always returns the credit. If it died before any model ran, the refund is immediate; otherwise it enters refund review and credits return within 24 hours. No action needed either way.

CLI

npx pixly-cli help          # or: npm install -g pixly-cli
export PIXLY_API_KEY=pixly_sk_...

Node ≥ 18, zero dependencies. Local photo arguments upload automatically; results download to the current directory (--out to choose a path; tools that return several results — enhance gives you 3 — get -1, -2, … suffixes).

pixly stage <photo> --style <id>

Virtually stage a room photo. Takes a URL or a local file (uploaded automatically).

  • --style <id> (required) — style id, e.g. scandinavian, modern-luxury
  • --room <type> — room-type hint; omitted = inferred from the photo
  • --instructions <text> — extra instructions blended into the prompt
  • --pro — Nano Banana Pro instead of Nano Banana 2 (2 credits instead of 1; same 2K output)
  • --out <file.jpg> — output path (default: <name>-staged.jpg)
pixly enhance <photo>

Professional photo enhancement — returns 3 variants.

  • --out <file.jpg>
pixly declutter <photo>

Remove clutter and personal items.

  • --out <file.jpg>
pixly remove-furniture <photo>

Empty the room — all furniture, rugs, art and decor out, surfaces rebuilt. Walls, ceiling, windows and the camera never change.

  • --movable — leave the fitted kitchen, built-ins and sanitaryware alone (default removes those too)
  • --floor — take the floor covering down to bare screed as well (doors always stay)
  • --out <file.jpg>
pixly day-to-night <photo>

Turn a daytime photo into a night scene.

  • --out <file.jpg>
pixly sky <photo>

Replace a grey or overcast sky with a natural one; reflections updated, house unchanged. Auto by default.

  • --sky clear|light-clouds|dramatic-clouds|sunset|pastel-sunrise|winter-clear (default auto)
  • --sun auto|on|off · --sun-at <x,y> — place the sun, 0..1 from the top-left; implies --sun on
  • --out <file.jpg>
pixly lawn <photo>

Turn patchy or brown grass into a healthy green lawn; only the grass changes. Auto by default.

  • --lawn fresh-mown|lush|natural|golf|warm-season (default auto)
  • --shade light|medium|deep · --stripes auto|on|off
  • --out <file.jpg>
pixly season <photo> [--season winter]

Photograph the same property in another season — snow off the ground, roof and branches and the garden in leaf, or a summer shot moved to autumn or winter. The house, the driveway, the paths and the framing stay as shot. Auto by default.

  • --season auto|spring|summer|autumn|winter (default auto — a snowy or bare photo comes back in high summer)
  • --out <file.jpg> — output path
pixly restyle <photo> --walls sage --floor walnut

New finishes on the surfaces you name — walls, floor, kitchen cabinets, bathroom tiles, furniture — with the layout, fittings and camera unchanged. A surface with no flag is left alone; no flags at all repaints the walls on auto.

  • --walls · --floor · --cabinets · --tiles · --furniture — a preset finish, `auto`, or the finish in your own words ("limewash in a warm clay", 120 chars max)
  • --out <file.jpg> — output path
pixly upscale <photo>

HD Upscale — enlarge by up to four times with real detail, to a maximum of 4096 px on the long edge. Free on a Pixly result (pass its r2Path from `pixly jobs`), 1 credit on your own photo.

  • --out <file.jpg>
pixly touch-up <photo>

Sky, lawn, driveway and clutter fixed in one pass, each only where the photo needs it; the house stays as shot.

  • --only sky,lawn,driveway,clutter — allow only these fixes
  • --skip clutter — everything except these (e.g. keep the car in the drive)
  • --out <file.jpg>
pixly plot-sign <photo> --text "SOLD"

Photorealistic 3D monument sign on an empty-plot photo.

  • --text <label> (required, max 24 chars)
  • --look stone|metal|grass|sign
  • --orientation standing|lying
  • --out <file.jpg>
pixly motion <photo>

Cinematic camera-move clip from a single photo.

  • --move zoom|fly-through|orbit|pan|aerial|pull-back|crane-up|tilt-up|boom-down|drone-orbit|flyover|pull-away|handheld
  • --duration 5|10 (default 5)
  • --format 9:16|16:9 (default 9:16)
  • --out <file.mp4>
pixly reel --before <a.jpg> --after <b.jpg>

Before→after reveal video from two frames.

  • --intent staging_reveal|staging_reveal_reverse|construction_timelapse
  • --reveal smooth|slideIn|dropLand|glowBuild|movers (default smooth)
  • --duration 5|10 · --format 9:16|16:9|1:1 · --out <file.mp4>
pixly job <jobId>

Job status + result URLs (JSON).

pixly jobs

Recent generations.

  • --limit <n> (default 20)
  • --type images|videos
pixly balance

Credits remaining and plan.

pixly tools

List every available tool.

For AI agents

This entire reference is available as pure markdown at https://pixly.app/docs.md (also linked from /llms.txt). To teach an agent Pixly in one message, paste this:

Connect to Pixly (real-estate photo & video AI) via MCP:
- Endpoint: https://pixly.app/api/mcp (streamable HTTP, stateless JSON responses)
- Auth: header "Authorization: Bearer pixly_sk_..." (user creates the key at https://pixly.app/app/settings) or OAuth sign-in
- Workflow: call a generation tool (virtual_staging, enhance_photo, declutter_photo, remove_furniture, day_to_night, plot_sign, cinematic_motion, photo_to_video, before_after_reel, edit_staged_photo) with imageUrl = the photo's https URL (or a data: URI) → poll get_job until status "completed" → download resultUrls. Only a local file with no URL needs create_upload_ticket first — and if you are a connector that cannot PUT bytes, have the user add the photo at https://pixly.app/app and call list_library with type "uploads" to get its r2Path.
- Generations spend the user's Pixly credit balance (check with get_credit_balance). Failed jobs always refund — instantly if nothing ran, otherwise within 24h.
- Full reference: https://pixly.app/docs.md