🎬 ur Framework

Cloud Rendering Pipeline for CG/VFX

API Status
Version
0.1.0
Uptime

📡 Available Endpoints

GET /api/health

Check API health status

GET /api/episodes/{project}

List episodes for a project

GET /api/episodes/{project}/{episode}/status

Get episode status and progress

GET /api/episodes/{project}/{episode}/info

Get detailed episode information

POST /api/episodes/{project}/{episode}/submit

Submit episode for rendering

GET /api/docs

Interactive API documentation (Swagger UI)

🚀 Quick Start


# Start the API server
ur-api-start

# Check health
curl http://localhost:8000/api/health

# View interactive docs
open http://localhost:8000/api/docs

# Submit a test frame
curl -X POST http://localhost:8000/api/episodes/AFROVFX_DEM/EP001/submit \
  -H "Content-Type: application/json" \
  -d '{"test_frames_only": true}'