# /moment **Category**: literatura **Summary**: Specific narrative moment of a work (or full list) ## Description Returns a specific narrative moment of the work. Without index, returns the list of all moments. With index (1, 2, ...) returns details and animated video. Works have 7-15 narrative moments. ## Syntax ``` /moment [index] ``` ## Arguments - **slug** (slug) (required): Work slug Example: `morometii` - **index** (number) (optional): Moment number (1-based) Example: `3` ## Examples **Request**: `/moment morometii 3` **Response**: `{"ok":true,"type":"moment_single","card":{"workTitle":"Moromeții","name":"Moromete la piața din Caracal","description":"...","orderIndex":3,"link":"/opere/morometii?moment=3#momentele-operei"}}` **Request**: `/moment morometii` **Response**: `{"ok":true,"type":"moment_list","card":{"items":[...]}}` _Toate momentele_ ## How to execute ``` POST /api/v1/ai/exec Content-Type: application/json { "cmd": "moment", "args": [ "morometii" ] } ```