SPACEB4
Early Access

The SpaceB4 API.

Submit, track, and deliver renders programmatically. Currently in private beta for enterprise customers.

REST API

Submit orders, upload materials, poll status, fetch renders.

API keys

Scoped keys for production, testing, and per-environment usage.

Webhooks

Get notified when renders are ready, without polling.

Example
curl https://api.spaceb4.com/v1/orders \
  -H "Authorization: Bearer $SPACEB4_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "spaces": [{
      "kind": "interior",
      "room_label": "Kitchen",
      "render_count": 3,
      "description": "Modern minimalist, white cabinets, warm wood floors",
      "styles": ["Modern", "Minimalist"],
      "addons": { "rush_12h": true }
    }],
    "recipient_email": "you@example.com"
  }'