Retrieve details and current status of a specific answer engine.
Path Parameters:
engine_id: Unique identifier of the answer engine (e.g. ae_8c625d9d71)Returns:
data: Full engine objectRaises:
404: Engine not foundExample Request:
curl https://api.nugen.in/api/v3/answer-engine/ae_8c625d9d71 \
-H "Authorization: Bearer <api_key>"
Example Response:
{
"data": {
"answer_engine_id": "ae_8c625d9d71",
"status": "ready",
"answer_engine_name": "Test_quer_round",
"user_id": "user_415",
"org_id": "org_415",
"document_count": 1,
"chunk_count": 5,
"error_message": null,
"created_at": "2026-03-13T15:11:51.105262+05:30"
}
}
Notes:
processing while indexing and ready when doneBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique answer engine identifier (e.g. ae_8c625d9d71)
Returns detailed information about a specific answer engine
Response containing full details of a specific answer engine.
Shared response shape for a single answer engine object, used by create, get, and list responses.