You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fetch a specific analysis job. If the job completed successfully, `analysis_result` contains the summarized metrics; otherwise `error_message` explains the failure.
434
+
435
+
**Response**`200 OK`
436
+
437
+
```json
438
+
{
439
+
"id": "88ed4a1e-1bda-45b9-a3e8-5c6df8b6f1f1",
440
+
"created_at": "2024-04-15T12:00:00+00:00",
441
+
"status": "completed",
442
+
"analysis_parameters": {
443
+
"start_date": "2024-04-01T00:00:00+00:00",
444
+
"end_date": "2024-04-15T23:59:59+00:00",
445
+
"agent_id": "cairo-coder"
446
+
},
447
+
"analysis_result": {
448
+
"total_queries": 42,
449
+
"average_word_count": 18.6,
450
+
"top_terms": [
451
+
["cairo", 7],
452
+
["storage", 4]
453
+
]
454
+
},
455
+
"error_message": null
456
+
}
457
+
```
458
+
459
+
If the job id is unknown, the server responds with `404 Not Found`.
460
+
355
461
## Versioning & Compatibility
356
462
357
463
- Current API version: `1.0.0` (see FastAPI metadata).
0 commit comments