Skip to main content
POST
/
analyses
/
summary
/
{analysis-id}
curl \
  -X POST \
  -H "Authorization: Bearer $apikey" \
  https://api.eyequant.com/v2/analyses/summary/$analysisId
{
  "success": true,
  "status": "started",
  "msg": "Summary generation started"
}
Trigger asynchronous generation of a written summary for an analysis. After triggering, poll Get a summary until status is completed. For richer summaries, set context first with Update analysis metadata.
The analysis-id path parameter is the analysis id returned as _internal_exposed_id from Get an analysis — not the top-level id returned when you create an analysis.
analysis-id
string
required
The analysis id (_internal_exposed_id from Get an analysis).
success
boolean
Whether the request was accepted.
status
string
Generation status: started or processing.
msg
string
Human-readable status message.
curl \
  -X POST \
  -H "Authorization: Bearer $apikey" \
  https://api.eyequant.com/v2/analyses/summary/$analysisId
{
  "success": true,
  "status": "started",
  "msg": "Summary generation started"
}