Skip to main content
POST
/
analyses
/
recommendations
/
{analysis-id}
curl \
  -X POST \
  -H "Authorization: Bearer $apikey" \
  https://api.eyequant.com/v2/analyses/recommendations/$analysisId
{
  "success": true,
  "status": "started",
  "msg": "Recommendation generation started"
}
Trigger asynchronous generation of recommendations — a set of concrete, actionable suggestions for improving the design. After triggering, poll Get recommendations until status is completed. For richer recommendations, 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/recommendations/$analysisId
{
  "success": true,
  "status": "started",
  "msg": "Recommendation generation started"
}