File size: 8,142 Bytes
d0fdbcd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | # API Documentation
## REST API Endpoints
### Base URL
```
http://localhost:5000
```
### Authentication
Currently, the API is unauthenticated (for demo purposes).
---
## Endpoints
### 1. Generate Configuration
**Endpoint**: `POST /api/generate`
**Description**: Generate a complete application configuration from a natural language prompt.
**Request Body**:
```json
{
"prompt": "Build a CRM with login, contacts, dashboard, and role-based access"
}
```
**Query Parameters**: None
**Headers**:
```
Content-Type: application/json
```
**Response (Success)**:
```json
{
"success": true,
"config": {
"app_name": "CRM",
"app_description": "...",
"database_schema": [...],
"api_schema": [...],
"ui_schema": [...],
"auth_config": {...},
"roles": [...],
"business_logic": {...}
},
"execution_log": {
"timestamp": "2026-05-06T07:52:40.123456",
"stages": {...}
},
"executable_report": {
"is_executable": true,
"errors": [],
"warnings": [],
"simulation_log": [...]
},
"is_executable": true
}
```
**Response (Error)**:
```json
{
"success": false,
"error": "Prompt is required"
}
```
**Status Codes**:
- `200`: Successful generation
- `400`: Bad request (invalid prompt)
- `500`: Server error
**Constraints**:
- Prompt length: max 2,000 characters
- Rate limit: None (local deployment)
**Example**:
```bash
curl -X POST http://localhost:5000/api/generate \
-H "Content-Type: application/json" \
-d '{"prompt":"Build a todo app with users, tasks, and sharing"}'
```
---
### 2. Validate Configuration
**Endpoint**: `POST /api/validate`
**Description**: Validate an existing configuration against schema rules.
**Request Body**:
```json
{
"config": {
"app_name": "MyApp",
"app_description": "...",
"database_schema": [...],
...
}
}
```
**Response (Success)**:
```json
{
"success": true,
"is_executable": true,
"report": {
"is_executable": true,
"errors": [],
"warnings": [],
"simulation_log": [
"✓ Database table 'users' initialized",
"✓ API endpoint 'GET /api/users' registered",
...
],
"total_checks": 12
}
}
```
**Response (Error)**:
```json
{
"success": false,
"error": "Internal server error"
}
```
**Status Codes**:
- `200`: Validation complete (executable or not)
- `400`: Bad request (invalid config)
- `500`: Server error
---
### 3. Get Recent Requests
**Endpoint**: `GET /api/recent`
**Description**: Get list of recent generation requests (last 10).
**Query Parameters**: None
**Response**:
```json
{
"recent": [
{
"timestamp": "2026-05-06T07:52:40.123456",
"prompt": "Build a CRM with login, contacts, dashboard...",
"success": true,
"executable": true
},
...
]
}
```
**Status Codes**:
- `200`: Success
---
### 4. Get Example Generation
**Endpoint**: `GET /api/example`
**Description**: Get a pre-generated example configuration.
**Query Parameters**: None
**Response**:
```json
{
"prompt": "Build a CRM with login, contacts, dashboard, role-based access...",
"config": {...},
"executable": true
}
```
**Status Codes**:
- `200`: Success
---
### 5. Health Check
**Endpoint**: `GET /api/health`
**Description**: Check if the API is running and get system status.
**Query Parameters**: None
**Response**:
```json
{
"status": "healthy",
"timestamp": "2026-05-06T07:52:40.123456",
"total_requests": 15
}
```
**Status Codes**:
- `200`: Healthy
- `503`: Service unavailable
---
## Error Responses
### Common Error Codes
**400 - Bad Request**
```json
{
"error": "Prompt is required"
}
```
**413 - Payload Too Large**
```json
{
"error": "Prompt is too long (max 2000 chars)"
}
```
**404 - Not Found**
```json
{
"error": "Not found"
}
```
**500 - Internal Server Error**
```json
{
"error": "Internal server error"
}
```
---
## Configuration Object Format
### Top-Level Fields
```json
{
"app_name": "string",
"app_description": "string",
"database_schema": [...],
"api_schema": [...],
"ui_schema": [...],
"auth_config": {...},
"roles": [...],
"business_logic": {...},
"validation_metadata": {...}
}
```
### Database Schema
```json
{
"name": "users",
"fields": [
{
"name": "id",
"type": "string",
"required": true,
"description": "User ID"
},
{
"name": "email",
"type": "email",
"required": true,
"validation_rules": {
"unique": true
}
}
],
"primary_key": "id",
"relations": {
"role_id": "roles"
},
"indexes": ["id", "email"]
}
```
### API Schema
```json
{
"path": "/api/users",
"method": "GET",
"description": "Get list of users",
"request_body": {
"page": {
"name": "page",
"type": "number",
"required": false
}
},
"response_body": {
"users": {
"name": "users",
"type": "array",
"required": true
}
},
"required_role": "user",
"validation_rules": ["Pagination required", "Min page size: 10"]
}
```
### UI Schema
```json
{
"path": "/users",
"title": "Users Page",
"components": [
{
"name": "header",
"type": "header"
},
{
"name": "user-table",
"type": "table",
"fields": ["id", "name", "email", "role"]
}
],
"required_role": "user",
"data_source": "/api/users"
}
```
### Auth Config
```json
{
"type": "jwt",
"secret_key": "your-secret-key",
"expiry": 3600,
"refresh_token_expiry": 86400,
"algorithm": "HS256"
}
```
### Roles
```json
[
{
"name": "admin",
"permissions": ["read_all", "write_all", "delete_all", "manage_users"],
"description": "Administrator with full access"
},
{
"name": "user",
"permissions": ["read_own", "write_own", "delete_own"],
"description": "Regular user with personal access"
}
]
```
---
## Code Examples
### Python (requests)
```python
import requests
import json
# Generate configuration
response = requests.post(
'http://localhost:5000/api/generate',
json={
'prompt': 'Build a CRM with contacts, dashboard, and analytics'
}
)
config = response.json()
if config['success']:
print(f"Generated: {config['config']['app_name']}")
print(f"Executable: {config['is_executable']}")
print(json.dumps(config['config'], indent=2))
```
### JavaScript (fetch)
```javascript
const prompt = "Build a CRM with contacts, dashboard, and analytics";
const response = await fetch('http://localhost:5000/api/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ prompt })
});
const data = await response.json();
if (data.success) {
console.log('Generated:', data.config.app_name);
console.log('Executable:', data.is_executable);
console.log(JSON.stringify(data.config, null, 2));
}
```
### cURL
```bash
# Generate config
curl -X POST http://localhost:5000/api/generate \
-H "Content-Type: application/json" \
-d '{
"prompt": "Build a CRM with contacts, dashboard, and analytics"
}' | jq .
# Health check
curl http://localhost:5000/api/health | jq .
# Get recent requests
curl http://localhost:5000/api/recent | jq .
# Get example
curl http://localhost:5000/api/example | jq .
```
---
## Rate Limiting
Currently disabled. For production deployment, implement:
- 100 requests/minute per IP
- 10,000 requests/day per API key
- Exponential backoff on rate limit errors (429)
---
## Webhooks (Future)
Support for event notifications:
- `generation.started`
- `generation.completed`
- `generation.failed`
- `validation.warning`
---
## Version History
### v1.0 (Current)
- Basic generation pipeline
- Validation and repair
- REST API
- Web interface
### v1.1 (Planned)
- Advanced LLM selection
- Extended schema types
- Webhook support
- Rate limiting
### v2.0 (Future)
- Direct app scaffolding
- Framework selection
- Deployment integration
---
## Support
For API issues or questions:
1. Check ARCHITECTURE.md for system design
2. Review quickstart.py for examples
3. Run evaluation framework for diagnostics
4. Check execution logs in API responses
|