> ## 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. # Search Visitors by Term > Search Livechat visitors using a specific term. ## OpenAPI ````json GET /api/v1/livechat/visitors.search { "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.search": { "get": { "summary": "Search Visitors by Term", "tags": [ "Omnichannel Visitors" ], "responses": { "200": { "description": "", "content": { "application/json": { "schema": { "type": "object", "properties": { "visitors": { "type": "array", "items": { "type": "object", "properties": { "_id": { "type": "string" }, "username": { "type": "string" }, "name": { "type": "string" }, "visitorEmails": { "type": "array", "items": { "type": "object", "properties": { "address": { "type": "string" } } } }, "lastChat": { "type": "object", "properties": { "_id": { "type": "string" }, "ts": { "type": "string" } } } } } }, "count": { "type": "integer" }, "offset": { "type": "integer" }, "total": { "type": "integer" }, "success": { "type": "boolean" } } }, "examples": { "Success Example": { "value": { "visitors": [ { "_id": "6410749f28384134ed600ce4", "username": "guest-14", "name": "James", "visitorEmails": [ { "address": "pilebe6631@kaudat.com" } ], "lastChat": { "_id": "eJ5ZzeT2XkLtcBkMM", "ts": "2023-03-14T13:21:02.239Z" } }, { "_id": "63db8d4990fe6eda42ad429a", "username": "guest-3", "name": "James", "visitorEmails": [ { "address": "f.r@rocket.chat" } ], "lastChat": { "_id": "82htiMFZLCtvRFqZi", "ts": "2023-02-06T12:34:53.392Z" } } ], "count": "2", "offset": "0", "total": "2", "success": "true" } } } } } }, "400": { "description": "Bad Request", "content": { "application/json": { "schema": { "type": "object", "properties": { "success": { "type": "boolean" }, "error": { "type": "string" }, "errorType": { "type": "string" } } }, "examples": { "Example 1": { "value": { "success": "false", "error": "must have required property 'term' [invalid-params]", "errorType": "invalid-params" } } } } } }, "401": { "$ref": "#/components/responses/authorizationError" } }, "operationId": "get-api-v1-livechat-visitors-search", "description": "Search Livechat visitors using a specific term.", "parameters": [ { "$ref": "#/components/parameters/AuthToken" }, { "$ref": "#/components/parameters/UserId" }, { "schema": { "type": "string" }, "in": "query", "name": "term", "description": "The visitor's name, username, email, or phone.", "required": "true" }, { "$ref": "#/components/parameters/offset" }, { "$ref": "#/components/parameters/count" }, { "schema": {}, "in": "query", "name": "sort", "description": "Sort the results by ascending (`1`) or descending (`-1`) order. The following options are available:\n * `ts`: Sort by timestamp. For example, `sort={\"ts\":1}` or `sort={\"ts\":-1}`. By default, results are sorted in descending order of timestamp.\n * `lastChat.ts`: Last chat timestamp. For example, `sort={\"lastChat.ts\":1}` or `sort={\"lastChat\":-1}`.\n * `name`: Visitor name. For example, `sort={\"name\":1}` or `sort={\"name\":-1}`.\n * `username`: Visitor username. For example, `sort={\"username\":1}` or `sort={\"username\":-1}`." } ] } } }, "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" }, "offset": { "name": "offset", "in": "query", "required": "false", "schema": { "type": "integer" }, "example": "50", "description": "Number of items to \"skip\" in the query, i.e. requests return count items, skipping the first offset items. Refer to the [official documentation](https://developer.rocket.chat/apidocs/query-parameters#pagination) to learn more." }, "count": { "name": "count", "in": "query", "required": "false", "schema": { "type": "integer" }, "example": "25", "description": "The number of items to return. Refer to the [official documentation](https://developer.rocket.chat/apidocs/query-parameters#pagination) to learn more." } } } } ````