AI Agent Ready

Spacewise API for AI Agents

Integrate video-to-floor-plan conversion into your AI agents, applications, and workflows. Built for the agentic world with MCP, OpenAPI, and RESTful interfaces.

Integration Methods

Model Context Protocol
Native MCP server for direct AI agent integration
npm install spacewise-mcp-server

Expose Spacewise capabilities as tools that AI agents can discover and invoke automatically.

RESTful API
Standard HTTP API for programmatic access
POST /api/projects

Full-featured REST API with OpenAPI 3.0 specification for easy integration.

Webhooks
Real-time notifications for project completion
project.completed

Receive instant notifications when floor plans are ready instead of polling.

API Capabilities

Video to Floor Plan
Convert property walkthrough videos into professional 2D floor plans with accurate dimensions
Endpoint:POST /api/projects
Input:Video URL (MP4, MOV, AVI)
Output:Floor plan (PNG, PDF, SVG)
Room Detection
Automatically identify and label rooms from video footage
Endpoint:GET /api/projects/{id}/rooms
Input:Project ID
Output:Room types, dimensions, features
Furniture Layout
Generate optimized furniture placement suggestions
Endpoint:GET /api/projects/{id}/furniture
Input:Project ID, room preferences
Output:Furniture layout images
Marketing Generation
Create property descriptions and social media content
Endpoint:GET /api/projects/{id}/marketing
Input:Project ID, asset types
Output:Descriptions, social posts, PDF kits
Virtual Tours
Generate interactive virtual tours from videos
Endpoint:GET /api/projects/{id}/virtual-tour
Input:Project ID
Output:Interactive web embed
Project Management
List, filter, and manage all your projects
Endpoint:GET /api/projects
Input:Status filter, pagination
Output:Project list with metadata

Quick Start

Create Your First Floor Plan
Upload a video and generate a floor plan in 3 simple API calls

1. Create Project

curl -X POST https://spacewise.design/api/projects \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "videoUrl": "https://example.com/property.mp4",
    "propertyName": "123 Main Street",
    "propertyType": "residential"
  }'

2. Check Status

curl https://spacewise.design/api/projects/proj_abc123/status \
  -H "Authorization: Bearer YOUR_API_KEY"

3. Get Floor Plan

curl https://spacewise.design/api/projects/proj_abc123/floor-plan \
  -H "Authorization: Bearer YOUR_API_KEY"

Resources

OpenAPI Spec
AI Capabilities
MCP Server
Full Docs

Ready to Build?

Get your API key and start integrating Spacewise into your AI agents and applications today.