Skip to main content
GET
/
analyses
/
summary
/
{analysis-id}
curl \
  -H "Authorization: Bearer $apikey" \
  -X GET \
  https://api.eyequant.com/v2/analyses/summary/$analysisId
{
  "success": true,
  "status": "completed",
  "data": "## Summary\n\nThe page directs attention primarily to the hero and the primary call to action..."
}
Retrieve a generated summary, or the current generation status. When status is completed, the data field holds the summary as a Markdown string. Tasks older than one hour return 410 Gone.
The analysis-id path parameter is the analysis id returned as _internal_exposed_id from Get an analysis.
analysis-id
string
required
The analysis id (_internal_exposed_id from Get an analysis).
success
boolean
Whether the request succeeded.
status
string
One of started, processing, completed, failed, or expired.
data
string
The summary content as a Markdown string. Present only when status is completed.
msg
string
Human-readable status message. Present when status is not completed.
curl \
  -H "Authorization: Bearer $apikey" \
  -X GET \
  https://api.eyequant.com/v2/analyses/summary/$analysisId
{
  "success": true,
  "status": "completed",
  "data": "## Summary\n\nThe page directs attention primarily to the hero and the primary call to action..."
}