Retrieve results of an asynchronous validation job. Poll this endpoint until status is done or failed.
Request Body
Job ID to retrieve results for
Response
Unique identifier for the validation job
Job status: pending, processing, done, or failed
ISO 8601 timestamp when processing started
ISO 8601 timestamp of current status
Overall validation result (when done): issues_found, passed, etc.
Summary of validation checks
Total number of checks performed
Array of identified issues with recommendations
Issues grouped by category
Error message (when status is failed)
Job Status Values
| Status | Description |
|---|
pending | Job created, waiting to start |
processing | Validation in progress |
done | Validation completed successfully |
failed | Validation failed with error |
{
"job_id": "abc123def456",
"status": "processing",
"started": "2026-01-08T10:30:00Z",
"timestamp": "2026-01-08T10:30:15Z"
}
Example
curl -X POST "https://zhshgjat2b.execute-api.us-east-1.amazonaws.com/dev/v1/api/validate_stream_result/" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"job_id": "abc123def456"}'