> ## Documentation Index > Fetch the complete documentation index at: https://developer.rocket.chat/llms.txt > Use this file to discover all available pages before exploring further. # Get Pages Visited by Livechat Visitor ## OpenAPI ````json GET /api/v1/livechat/visitors.pagesVisited/{roomId} { "openapi": "3.0.0", "info": { "version": "1.0.0", "title": "Omnichannel" }, "servers": [ { "url": "https://apiexplorer.support.rocket.chat" } ], "tags": [ { "name": "Omnichannel Users" }, { "name": "Omnichannel Agents" }, { "name": "Omnichannel Monitors" }, { "name": "Omnichannel Visitors" }, { "name": "Omnichannel Contacts" }, { "name": "Omnichannel Rooms" }, { "name": "Omnichannel Departments" }, { "name": "Omnichannel Custom Fields" }, { "name": "Omnichannel Business Hours" }, { "name": "Omnichannel Priorities" }, { "name": "Omnichannel Tags" }, { "name": "Omnichannel Units" }, { "name": "SLA Policies" }, { "name": "Canned Responses" }, { "name": "Omnichannel Transcript" }, { "name": "Omnichannel Statistics" }, { "name": "Omnichannel Agent Stats" }, { "name": "Omnichannel Dashboards" }, { "name": "Reports" }, { "name": "Omnichannel Inquiries" }, { "name": "Omnichannel Webhooks" }, { "name": "Livechat" }, { "name": "Livechat Appearance" }, { "name": "Livechat Triggers" }, { "name": "Livechat Messages" }, { "name": "Livechat Page Visited" } ], "paths": { "/api/v1/livechat/visitors.pagesVisited/{roomId}": { "parameters": [ { "schema": { "type": "string" }, "name": "roomId", "in": "path", "required": "true", "description": "The room ID." } ], "get": { "summary": "Get Pages Visited by Livechat Visitor", "tags": [ "Omnichannel Visitors" ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "pages": { "type": "array", "items": { "type": "object", "properties": { "_id": { "type": "string" }, "t": { "type": "string" }, "ts": { "type": "string" }, "msg": { "type": "string" }, "u": { "type": "object", "properties": { "_id": { "type": "string" }, "username": { "type": "string" }, "name": { "type": "string" } } }, "groupable": { "type": "boolean" }, "navigation": { "type": "object", "properties": { "page": { "type": "object", "properties": { "change": { "type": "string" }, "title": { "type": "string" }, "location": { "type": "object", "properties": { "href": { "type": "string" } } } } }, "token": { "type": "string" } } }, "expireAt": { "type": "integer" }, "_updatedAt": { "type": "string" }, "rid": { "type": "string" } } } }, "count": { "type": "integer" }, "offset": { "type": "integer" }, "total": { "type": "integer" }, "success": { "type": "boolean" } } }, "examples": { "Success Example": { "value": { "pages": [ { "_id": "6523fbf5a2f73c7460e18d60", "t": "livechat_navigation_history", "ts": "2023-10-09T13:11:17.968Z", "msg": "Document - https://s3.amazonaws.com/uploads.use1.cloud.rocket.cht.html%22", "u": { "_id": "rocket.cat", "username": "rocket.cat", "name": "Rocket.Cat" }, "groupable": "false", "navigation": { "page": { "change": "url", "title": "Document", "location": { "href": "https://s3.amazonaws.com/uploads.use1.cloud.rocket.cht.html%22" } }, "token": "54fc5544030bcecda053311cb6b98920bdf953f242c12" }, "expireAt": "1699449077968", "_updatedAt": "2023-10-09T13:12:00.608Z", "rid": "MmGnqizEa8pvc9LRg" } ], "count": "1", "offset": "0", "total": "1", "success": "true" } } } } } }, "401": { "$ref": "#/components/responses/authorizationError" } }, "operationId": "get-api-v1-livechat-visitors.pagesVisited-roomId", "parameters": [ { "$ref": "#/components/parameters/AuthToken" }, { "$ref": "#/components/parameters/UserId" } ] } } }, "components": { "responses": { "authorizationError": { "description": "Unauthorized", "content": { "application/json": { "schema": { "type": "object", "properties": { "status": { "type": "string" }, "message": { "type": "string" } } }, "examples": { "Authorization Error": { "value": { "status": "error", "message": "You must be logged in to do this." } } } } } } }, "parameters": { "AuthToken": { "name": "X-Auth-Token", "in": "header", "description": "The `authToken` of the authenticated user.", "required": "true", "schema": { "type": "string" }, "example": "RScctEHSmLGZGywfIhWyRpyofhKOiMoUIpimhvheU3f" }, "UserId": { "name": "X-User-Id", "in": "header", "description": "The `userId` of the authenticated user.", "required": "true", "schema": { "type": "string" }, "example": "rbAXPnMktTFbNpwtJ" } } } } ````