|
| 1 | +# WiFi-DensePose API Endpoints Summary |
| 2 | + |
| 3 | +## Overview |
| 4 | + |
| 5 | +The WiFi-DensePose API provides RESTful endpoints and WebSocket connections for real-time human pose estimation using WiFi CSI (Channel State Information) data. The API is built with FastAPI and supports both synchronous REST operations and real-time streaming via WebSockets. |
| 6 | + |
| 7 | +## Base URL |
| 8 | + |
| 9 | +- **Development**: `http://localhost:8000` |
| 10 | +- **API Prefix**: `/api/v1` |
| 11 | +- **Documentation**: `http://localhost:8000/docs` |
| 12 | + |
| 13 | +## Authentication |
| 14 | + |
| 15 | +Authentication is configurable via environment variables: |
| 16 | +- When `ENABLE_AUTHENTICATION=true`, protected endpoints require JWT tokens |
| 17 | +- Tokens can be passed via: |
| 18 | + - Authorization header: `Bearer <token>` |
| 19 | + - Query parameter: `?token=<token>` |
| 20 | + - Cookie: `access_token` |
| 21 | + |
| 22 | +## Rate Limiting |
| 23 | + |
| 24 | +Rate limiting is configurable and when enabled (`ENABLE_RATE_LIMITING=true`): |
| 25 | +- Anonymous: 100 requests/hour |
| 26 | +- Authenticated: 1000 requests/hour |
| 27 | +- Admin: 10000 requests/hour |
| 28 | + |
| 29 | +## Endpoints |
| 30 | + |
| 31 | +### 1. Health & Status |
| 32 | + |
| 33 | +#### GET `/health/health` |
| 34 | +System health check with component status and metrics. |
| 35 | + |
| 36 | +**Response Example:** |
| 37 | +```json |
| 38 | +{ |
| 39 | + "status": "healthy", |
| 40 | + "timestamp": "2025-06-09T16:00:00Z", |
| 41 | + "uptime_seconds": 3600.0, |
| 42 | + "components": { |
| 43 | + "hardware": {...}, |
| 44 | + "pose": {...}, |
| 45 | + "stream": {...} |
| 46 | + }, |
| 47 | + "system_metrics": { |
| 48 | + "cpu": {"percent": 24.1, "count": 2}, |
| 49 | + "memory": {"total_gb": 7.75, "available_gb": 3.73}, |
| 50 | + "disk": {"total_gb": 31.33, "free_gb": 7.09} |
| 51 | + } |
| 52 | +} |
| 53 | +``` |
| 54 | + |
| 55 | +#### GET `/health/ready` |
| 56 | +Readiness check for load balancers. |
| 57 | + |
| 58 | +#### GET `/health/live` |
| 59 | +Simple liveness check. |
| 60 | + |
| 61 | +#### GET `/health/metrics` 🔒 |
| 62 | +Detailed system metrics (requires auth). |
| 63 | + |
| 64 | +### 2. Pose Estimation |
| 65 | + |
| 66 | +#### GET `/api/v1/pose/current` |
| 67 | +Get current pose estimation from WiFi signals. |
| 68 | + |
| 69 | +**Query Parameters:** |
| 70 | +- `zone_ids`: List of zone IDs to analyze |
| 71 | +- `confidence_threshold`: Minimum confidence (0.0-1.0) |
| 72 | +- `max_persons`: Maximum persons to detect |
| 73 | +- `include_keypoints`: Include keypoint data (default: true) |
| 74 | +- `include_segmentation`: Include DensePose segmentation (default: false) |
| 75 | + |
| 76 | +**Response Example:** |
| 77 | +```json |
| 78 | +{ |
| 79 | + "timestamp": "2025-06-09T16:00:00Z", |
| 80 | + "frame_id": "frame_123456", |
| 81 | + "persons": [ |
| 82 | + { |
| 83 | + "person_id": "0", |
| 84 | + "confidence": 0.95, |
| 85 | + "bounding_box": {"x": 0.1, "y": 0.2, "width": 0.3, "height": 0.6}, |
| 86 | + "keypoints": [...], |
| 87 | + "zone_id": "zone_1", |
| 88 | + "activity": "standing" |
| 89 | + } |
| 90 | + ], |
| 91 | + "zone_summary": {"zone_1": 1, "zone_2": 0}, |
| 92 | + "processing_time_ms": 45.2 |
| 93 | +} |
| 94 | +``` |
| 95 | + |
| 96 | +#### POST `/api/v1/pose/analyze` 🔒 |
| 97 | +Analyze pose data with custom parameters (requires auth). |
| 98 | + |
| 99 | +#### GET `/api/v1/pose/zones/{zone_id}/occupancy` |
| 100 | +Get occupancy for a specific zone. |
| 101 | + |
| 102 | +#### GET `/api/v1/pose/zones/summary` |
| 103 | +Get occupancy summary for all zones. |
| 104 | + |
| 105 | +#### GET `/api/v1/pose/activities` |
| 106 | +Get recently detected activities. |
| 107 | + |
| 108 | +**Query Parameters:** |
| 109 | +- `zone_id`: Filter by zone |
| 110 | +- `limit`: Maximum results (1-100) |
| 111 | + |
| 112 | +#### POST `/api/v1/pose/historical` 🔒 |
| 113 | +Query historical pose data (requires auth). |
| 114 | + |
| 115 | +**Request Body:** |
| 116 | +```json |
| 117 | +{ |
| 118 | + "start_time": "2025-06-09T15:00:00Z", |
| 119 | + "end_time": "2025-06-09T16:00:00Z", |
| 120 | + "zone_ids": ["zone_1"], |
| 121 | + "aggregation_interval": 300, |
| 122 | + "include_raw_data": false |
| 123 | +} |
| 124 | +``` |
| 125 | + |
| 126 | +#### GET `/api/v1/pose/stats` |
| 127 | +Get pose estimation statistics. |
| 128 | + |
| 129 | +**Query Parameters:** |
| 130 | +- `hours`: Hours of data to analyze (1-168) |
| 131 | + |
| 132 | +### 3. Calibration |
| 133 | + |
| 134 | +#### POST `/api/v1/pose/calibrate` 🔒 |
| 135 | +Start system calibration (requires auth). |
| 136 | + |
| 137 | +#### GET `/api/v1/pose/calibration/status` 🔒 |
| 138 | +Get calibration status (requires auth). |
| 139 | + |
| 140 | +### 4. Streaming |
| 141 | + |
| 142 | +#### GET `/api/v1/stream/status` |
| 143 | +Get streaming service status. |
| 144 | + |
| 145 | +#### POST `/api/v1/stream/start` 🔒 |
| 146 | +Start streaming service (requires auth). |
| 147 | + |
| 148 | +#### POST `/api/v1/stream/stop` 🔒 |
| 149 | +Stop streaming service (requires auth). |
| 150 | + |
| 151 | +#### GET `/api/v1/stream/clients` 🔒 |
| 152 | +List connected WebSocket clients (requires auth). |
| 153 | + |
| 154 | +#### DELETE `/api/v1/stream/clients/{client_id}` 🔒 |
| 155 | +Disconnect specific client (requires auth). |
| 156 | + |
| 157 | +#### POST `/api/v1/stream/broadcast` 🔒 |
| 158 | +Broadcast message to clients (requires auth). |
| 159 | + |
| 160 | +### 5. WebSocket Endpoints |
| 161 | + |
| 162 | +#### WS `/api/v1/stream/pose` |
| 163 | +Real-time pose data streaming. |
| 164 | + |
| 165 | +**Query Parameters:** |
| 166 | +- `zone_ids`: Comma-separated zone IDs |
| 167 | +- `min_confidence`: Minimum confidence (0.0-1.0) |
| 168 | +- `max_fps`: Maximum frames per second (1-60) |
| 169 | +- `token`: Auth token (if authentication enabled) |
| 170 | + |
| 171 | +**Message Types:** |
| 172 | +- `connection_established`: Initial connection confirmation |
| 173 | +- `pose_update`: Pose data updates |
| 174 | +- `error`: Error messages |
| 175 | +- `ping`/`pong`: Keep-alive |
| 176 | + |
| 177 | +#### WS `/api/v1/stream/events` |
| 178 | +Real-time event streaming. |
| 179 | + |
| 180 | +**Query Parameters:** |
| 181 | +- `event_types`: Comma-separated event types |
| 182 | +- `zone_ids`: Comma-separated zone IDs |
| 183 | +- `token`: Auth token (if authentication enabled) |
| 184 | + |
| 185 | +### 6. API Information |
| 186 | + |
| 187 | +#### GET `/` |
| 188 | +Root endpoint with API information. |
| 189 | + |
| 190 | +#### GET `/api/v1/info` |
| 191 | +Detailed API configuration. |
| 192 | + |
| 193 | +#### GET `/api/v1/status` |
| 194 | +Current API and service status. |
| 195 | + |
| 196 | +#### GET `/api/v1/metrics` |
| 197 | +API performance metrics (if enabled). |
| 198 | + |
| 199 | +### 7. Development Endpoints |
| 200 | + |
| 201 | +These endpoints are only available when `ENABLE_TEST_ENDPOINTS=true`: |
| 202 | + |
| 203 | +#### GET `/api/v1/dev/config` |
| 204 | +Get current configuration (development only). |
| 205 | + |
| 206 | +#### POST `/api/v1/dev/reset` |
| 207 | +Reset services (development only). |
| 208 | + |
| 209 | +## Error Handling |
| 210 | + |
| 211 | +All errors follow a consistent format: |
| 212 | + |
| 213 | +```json |
| 214 | +{ |
| 215 | + "error": { |
| 216 | + "code": 400, |
| 217 | + "message": "Error description", |
| 218 | + "type": "error_type" |
| 219 | + } |
| 220 | +} |
| 221 | +``` |
| 222 | + |
| 223 | +Error types: |
| 224 | +- `http_error`: HTTP-related errors |
| 225 | +- `validation_error`: Request validation errors |
| 226 | +- `authentication_error`: Authentication failures |
| 227 | +- `rate_limit_exceeded`: Rate limit violations |
| 228 | +- `internal_error`: Server errors |
| 229 | + |
| 230 | +## WebSocket Protocol |
| 231 | + |
| 232 | +### Connection Flow |
| 233 | + |
| 234 | +1. **Connect**: `ws://host/api/v1/stream/pose?params` |
| 235 | +2. **Receive**: Connection confirmation message |
| 236 | +3. **Send/Receive**: Bidirectional communication |
| 237 | +4. **Disconnect**: Clean connection closure |
| 238 | + |
| 239 | +### Message Format |
| 240 | + |
| 241 | +All WebSocket messages use JSON format: |
| 242 | + |
| 243 | +```json |
| 244 | +{ |
| 245 | + "type": "message_type", |
| 246 | + "timestamp": "ISO-8601 timestamp", |
| 247 | + "data": {...} |
| 248 | +} |
| 249 | +``` |
| 250 | + |
| 251 | +### Client Messages |
| 252 | + |
| 253 | +- `{"type": "ping"}`: Keep-alive ping |
| 254 | +- `{"type": "update_config", "config": {...}}`: Update stream config |
| 255 | +- `{"type": "get_status"}`: Request status |
| 256 | +- `{"type": "disconnect"}`: Clean disconnect |
| 257 | + |
| 258 | +### Server Messages |
| 259 | + |
| 260 | +- `{"type": "connection_established", ...}`: Connection confirmed |
| 261 | +- `{"type": "pose_update", ...}`: Pose data update |
| 262 | +- `{"type": "event", ...}`: Event notification |
| 263 | +- `{"type": "pong"}`: Ping response |
| 264 | +- `{"type": "error", "message": "..."}`: Error message |
| 265 | + |
| 266 | +## CORS Configuration |
| 267 | + |
| 268 | +CORS is enabled with configurable origins: |
| 269 | +- Development: Allow all origins (`*`) |
| 270 | +- Production: Restrict to specific domains |
| 271 | + |
| 272 | +## Security Headers |
| 273 | + |
| 274 | +The API includes security headers: |
| 275 | +- `X-Content-Type-Options: nosniff` |
| 276 | +- `X-Frame-Options: DENY` |
| 277 | +- `X-XSS-Protection: 1; mode=block` |
| 278 | +- `Referrer-Policy: strict-origin-when-cross-origin` |
| 279 | +- `Content-Security-Policy: ...` |
| 280 | + |
| 281 | +## Performance Considerations |
| 282 | + |
| 283 | +1. **Batch Requests**: Use zone summaries instead of individual zone queries |
| 284 | +2. **WebSocket Streaming**: Adjust `max_fps` to reduce bandwidth |
| 285 | +3. **Historical Data**: Use appropriate `aggregation_interval` |
| 286 | +4. **Caching**: Results are cached when Redis is enabled |
| 287 | + |
| 288 | +## Testing |
| 289 | + |
| 290 | +Use the provided test scripts: |
| 291 | +- `scripts/test_api_endpoints.py`: Comprehensive endpoint testing |
| 292 | +- `scripts/test_websocket_streaming.py`: WebSocket functionality testing |
| 293 | + |
| 294 | +## Production Deployment |
| 295 | + |
| 296 | +For production: |
| 297 | +1. Set `ENVIRONMENT=production` |
| 298 | +2. Enable authentication and rate limiting |
| 299 | +3. Configure proper database (PostgreSQL) |
| 300 | +4. Enable Redis for caching |
| 301 | +5. Use HTTPS with valid certificates |
| 302 | +6. Restrict CORS origins |
| 303 | +7. Disable debug mode and test endpoints |
| 304 | +8. Configure monitoring and logging |
| 305 | + |
| 306 | +## API Versioning |
| 307 | + |
| 308 | +The API uses URL versioning: |
| 309 | +- Current version: `v1` |
| 310 | +- Base path: `/api/v1` |
| 311 | + |
| 312 | +Future versions will be available at `/api/v2`, etc. |
0 commit comments