GET
/preview/conclusion/{conclusionId}Poll for conclusion status and conclusion steps
Retrieves the current state of a Conclusion, including all pending and completed conclusion steps. Poll this endpoint periodically while status is pending until completion.
The response contains status (overall conclusion state), output (ordered list of conclusion steps), and model (the Conclusion Model used). The final answer is in the finalize step's step_result content when status becomes success.
conclusionIdstringrequired
Identifier of the conclusion to retrieve.
200Current conclusion status and step history.
idstringrequired
Identifier of the conclusion to retrieve.
objectstringrequired
Object type identifier - always "response" for conclusions.
statusstringrequired
The overall status of the conclusion: `pending` (model is actively processing - continue polling), `success` (conclusion complete with successful result), or `error` (conclusion failed - check the last step for error details).
modelstringrequired
The specific Conclusion Model used for the conclusion.
See [available models](https://docs.embraceable.ai/models/).
outputarray<object>required
Complete trace of the conclusion process. Steps are ordered chronologically and represent distinct cognitive phases, providing full transparency into the decision-making process.
401Authentication failed - invalid or missing API key.
statusintegerrequired
HTTP status code.
messagestringoptional
Human-readable error description.
errorsarray<string>optional
List of specific validation errors or details.
404Conclusion not found - invalid identifier or conclusion not available.
statusintegerrequired
HTTP status code.
messagestringoptional
Human-readable error description.
errorsarray<string>optional
List of specific validation errors or details.
429Rate limit exceeded.
statusintegerrequired
HTTP status code.
messagestringoptional
Human-readable error description.
errorsarray<string>optional
List of specific validation errors or details.
Error handling
A 401 is returned: Authentication failed - invalid or missing API key. A 404 is returned: Conclusion not found - invalid identifier or conclusion not available. A 429 is returned: Rate limit exceeded.