{"info":{"_postman_id":"a23b65d0-5fa4-44b6-9972-6af4ba4d0a8a","name":"Feng-GUI API Documentation","description":"<html><head></head><body><p><a href=\"https://feng-gui.com\">Feng-GUI</a> Platform API enables integration with Feng-GUI’s visual analytics services.<br>This allows organizations, data analysts and insights teams to incorporate visual analytics intelligence directly into their existing platforms and workflows.<br>Feng-GUI API clients range from digital marketing agencies and email marketing providers to packaging design and consumer insights vendors.</p>\n<p>To use the API, your account must include the 'api' role.<br>Please contact <a href=\"https://mailto:sales@feng-gui.com\">sales@feng-gui.com</a> and request to add the 'api' role to your account.<br>Your account roles may be found at <a href=\"https://app.feng-gui.com/account.aspx\">Settings &gt; Account &gt; Roles</a><br>Account Roles depends on package plans and the Feng-GUI partnership level you have.</p>\n<h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>Feng-GUI services require authentication for all API endpoints. You may authenticate either using HTTP Basic Authentication or by providing an API key.<br>When using API key authentication, include your API key in the request header <code>X-API-Key</code>, or supply it as the <code>apikey</code> query string parameter.<br>All requests must be made over HTTPS (TLS) to ensure that credentials are transmitted securely.</p>\n<h2 id=\"storage\"><strong>Storage</strong></h2>\n<p>Files uploaded or generated as reports via an API account are retained on Feng-GUI servers for up to 24 hours. API users are responsible for moving these files to their own servers within that time frame and are encouraged to serve the content from their own infrastructure, not directly from Feng-GUI servers.</p>\n<p><strong>Data Retention</strong>: File and report availability depends on your account plan.<br>Uploaded files and reports are <strong>automatically deleted</strong> based on your subscription type: after 3 months for monthly subscribers, 1 year for annual subscribers.</p>\n<p><strong>Data Storage</strong>: Each account includes a <strong>Storage quota</strong>. Once this limit is reached, uploading new files will be disabled. To manage your storage, you can <strong>download or delete reports</strong> at any time to free up space.</p>\n<h1 id=\"request-format\"><strong>Request Format</strong></h1>\n<p>The Feng-GUI API is implemented using the <strong>JSON-RPC 1.0</strong> specification. It allows developers to programmatically access visual attention analysis tools by sending remote procedure calls over HTTPS. For more information on the protocol standards, refer to the <a href=\"https://www.jsonrpc.org/specification_v1\">JSON-RPC 1.0 Specification</a></p>\n<p>Service Endpoints at <a href=\"https://service.feng-gui.com/json/api.ashx\">https://service.feng-gui.com/json/api.ashx</a></p>\n<p>The API supports two methods of communication: standard JSON-RPC via <strong>POST</strong> JSON and a shorthand syntax via <strong>GET</strong> URL.</p>\n<h2 id=\"post-request-json\"><strong>POST Request (JSON)</strong></h2>\n<p>A remote method is invoked by sending a POST request with a JSON body containing the following properties:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>A unique request identifier (random UUID). Used to correlate the response.</td>\n</tr>\n<tr>\n<td>method</td>\n<td>String</td>\n<td>The name of the specific method to be invoked.</td>\n</tr>\n<tr>\n<td>params</td>\n<td>Object</td>\n<td>A structured object containing the parameters required by the method.</td>\n</tr>\n</tbody>\n</table>\n</div><p>To send a request , for example, to ImageAttention, send a request like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"1768288661\",\n    \"method\": \"ImageAttention\",\n    \"params\": {\n        \"InputImage\": \"https://service.feng-gui.com/users/USERNAME/files/images/IMAGEID.png\",\n        \"ViewType\": 0,\n        \"ViewDistance\": 0,\n        \"AnalysisOptions\": 0,\n        \"OutputOptions\": 0\n    }\n}\n\n</code></pre>\n<p>Demo page of POST API methods<br><a href=\"https://feng-gui.com/FG-JSON-POST-Demo.html\">FG-JSON-GET-Demo.html</a></p>\n<hr>\n<h2 id=\"get-request-url\"><strong>GET Request (URL)</strong></h2>\n<p>For simplified access or quick testing via a browser, the API also supports requests via the GET method. In this format, the method name is appended to the base URL as a path, and parameters are passed as standard URL query strings.</p>\n<p>GET URL Structure:<br><a href=\"https://service.feng-gui.com/json/api.ashx/%5C%5BMETHOD%5C%5D?id=%5C%5BID%5C%5D&amp;%5C%5BPARAM1%5C%5D=%5C%5BVALUE1%5C%5D&amp;%5C%5BPARAM2%5C%5D=%5C%5BVALUE2%5C%5D\">https://service.feng-gui.com/json/api.ashx/[METHOD]?id=[ID]&amp;[PARAM1]=[VALUE1]&amp;[PARAM2]=[VALUE2]</a></p>\n<p>Example GET Request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://service.feng-gui.com/json/api.ashx/ImageAttention?id=1768288661&amp;InputImage=https://service.feng-gui.com/users/USERNAME/files/images/IMAGEID.png&amp;ViewType=0&amp;ViewDistance=0&amp;AnalysisOptions=0&amp;OutputOptions=0\n\n</code></pre><p>Demo page of GET API methods<br><a href=\"https://feng-gui.com/FG-JSON-GET-Demo.html\">FG-JSON-GET-Demo.html</a></p>\n<hr>\n<h1 id=\"response-format\"><strong>Response Format</strong></h1>\n<p>The service returns a JSON object with the following properties:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>The unique identifier matching the original request.</td>\n</tr>\n<tr>\n<td>result</td>\n<td>Object</td>\n<td>The data returned by the method. Returns null if an error occurred.</td>\n</tr>\n<tr>\n<td>error</td>\n<td>Object</td>\n<td>Details regarding any failures. Returns null if successful.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Successful Response Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"1768288661\",\n    \"result\": {\n        \"serviceVersion\": \"6.0.0.0\",\n        \"version\": \"6.0.0.0\",\n        \"inputImage\": \"https://service.feng-gui.com/users/USERNAME/files/images/IMAGEID.png\",\n        \"outputImage\": \"https://service.feng-gui.com/users/USERNAME/files/images/IMAGEID_heatmap.png\",\n        \"outputAttentionImage\": \"https://service.feng-gui.com/users/USERNAME/files/images/IMAGEID_raw.png\",\n        \"hotspots\": [\n            {\n                \"x\": 378,\n                \"y\": 168\n            },\n            {\n                \"x\": 251,\n                \"y\": 184\n            },\n            {\n                \"x\": 562,\n                \"y\": 385\n            }\n        ]\n    }\n}\n\n</code></pre>\n<p>Error Response Example:<br>If a request fails, the error property will contain details about the exception.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"1768324041\",\n    \"error\": {\n        \"name\": \"JSONRPCError\",\n        \"message\": \"Error Message.\",\n        \"errors\": [\n            {\n                \"name\": \"JsonRpcException\",\n                \"message\": \"Error Message.\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Request Format","slug":"request-format"},{"content":"Response Format","slug":"response-format"}],"owner":"51111507","collectionId":"a23b65d0-5fa4-44b6-9972-6af4ba4d0a8a","publishedId":"2sBXVfirCE","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-01-11T19:22:40.000Z"},"item":[{"name":"Account","item":[{"name":"echo","id":"7eb27fcf-1819-411c-b835-afba33b22fa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"method\": \"echo\",\n  \"params\": {\n    \"InputString\": \"Hello World\"\n  },\n  \"id\": \"1776207215\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx/","description":"<p>A test method which echo's all parameters back in the response.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>InputString</strong></td>\n<td>String</td>\n<td>input string to echo.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":[""],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"34363d48-80ce-45e3-8c3a-f487e4cf8d11","name":"echo","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"method\": \"echo\",\n  \"params\": {\n    \"InputString\": \"Hello World\"\n  },\n  \"id\": \"1776207215\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"no-cache"},{"description":{"content":"","type":"text/plain"},"key":"Pragma","value":"no-cache"},{"description":{"content":"","type":"text/plain"},"key":"Expires","value":"-1"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Set-Cookie","value":"ASP.NET_SessionId=gmg5klifyd2lymoz5wsqyflk; domain=.feng-gui.com; path=/; HttpOnly; SameSite=Lax"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sun, 25 Jan 2026 07:56:15 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"42"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769327773\",\n    \"result\": \"Hello World\"\n}"}],"_postman_id":"7eb27fcf-1819-411c-b835-afba33b22fa8"},{"name":"echo","id":"94f13520-045a-45c1-9e2a-7c1cba6ec374","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/echo?InputString=Hello","description":"<p>A test method which echo's all parameters back in the response.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>InputString</strong></td>\n<td>String</td>\n<td>input string to echo.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["echo"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"InputString","value":"Hello"}],"variable":[]}},"response":[{"id":"efc49086-5e6d-4e23-a3fc-46a1f9d5bb1d","name":"echo","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/echo?InputString=Hello","host":["https://service.feng-gui.com/json/api.ashx"],"path":["echo"],"query":[{"key":"InputString","value":"Hello"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Fri, 30 Jan 2026 18:37:49 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"26"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": \"Hello\"\n}"}],"_postman_id":"94f13520-045a-45c1-9e2a-7c1cba6ec374"},{"name":"GetAccountInfo","id":"f4251037-3067-48f6-8ea3-0fe8b84be961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetAccountInfo\",\"params\":{\"UserIdOrEmail\":\"YOUR_USERNAME\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Get account properties, credit and usage information of your account id.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> user account.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>UserIdOrEmail</strong></td>\n<td>String</td>\n<td>The user name or email in Feng-GUI system</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-details\">Response Details</h3>\n<p>The response is an <code>AccountInfo</code> object containing:</p>\n<ul>\n<li><strong>UserName</strong>: String. The account user name.</li>\n<li><strong>Password</strong>: String. Password. Masked. This field is for internal use only.</li>\n<li><strong>Email</strong>: String. The account email address.</li>\n<li><strong>Roles</strong>: String. guest, customer, evaluation, test, api, readonly, annual, video.</li>\n<li><strong>Status</strong>: Integer. Account status. Disabled (0), Enabled (1), Affiliate(2).</li>\n<li><strong>Used</strong>: Integer. How many credits used by this user.</li>\n<li><strong>Credit</strong>: Integer. How many credits available from valid plans and shared plans.</li>\n<li><strong>Service</strong>: String. Service end point host address.</li>\n<li><strong>DateAdd</strong>: String. Date account was created.</li>\n<li><strong>FirstName</strong> / <strong>LastName</strong> / <strong>Address</strong> / <strong>City</strong> / <strong>ZipCode</strong> / <strong>Country</strong> / <strong>Company</strong>: String.</li>\n<li><strong>Storage</strong>: Integer. Storage Used in MB.</li>\n<li><strong>Mailing</strong>: Integer. Mailing options. INTERNAL.</li>\n<li><strong>Affiliate</strong>: String. Referring Affiliate Code.</li>\n<li><strong>Email2</strong>: String. Finance email.</li>\n<li><strong>DateActive</strong>: String. last active date that user analyzed an image or video.</li>\n<li><strong>DateDelete</strong>: String. schedule to delete date.</li>\n<li><strong>StorageQuota</strong>: Integer. Storage Quota limit in MB.</li>\n<li><strong>StorageUsed</strong>: Integer. Storage used in MB by all users of highest Credit plan.</li>\n<li><strong>StorageRetention</strong>: Integer. Storage Retention in days.</li>\n</ul>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"dd06f7d0-865c-440b-baec-0c4de4db7e9b","name":"GetAccountInfo","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetAccountInfo\",\"params\":{\"UserIdOrEmail\":\"YOUR_USERNAME\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 08:52:13 GMT"},{"key":"Content-Length","value":"527"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769331131\",\n    \"result\": {\n        \"userName\": \"testapi\",\n        \"password\": \"\",\n        \"email\": \"support@feng-gui.com\",\n        \"roles\": \"evaluation,api,annual,readonly,enterprise,business\",\n        \"status\": 1,\n        \"used\": 2770,\n        \"credit\": 9227,\n        \"service\": \"https://service.feng-gui.com\",\n        \"dateAdd\": \"2011-09-15 06:10:24\",\n        \"firstName\": \"testapi\",\n        \"lastName\": \"account\",\n        \"address\": \"\",\n        \"city\": \"\",\n        \"zipCode\": \"\",\n        \"country\": \"\",\n        \"company\": \"Feng-GUI\",\n        \"storage\": 46,\n        \"mailing\": 0,\n        \"affiliate\": \"\",\n        \"email2\": \"\",\n        \"dateActive\": \"\",\n        \"dateDelete\": \"\",\n        \"storageQuota\": 100000,\n        \"storageUsed\": 46,\n        \"storageRetention\": 8928\n    }\n}"}],"_postman_id":"f4251037-3067-48f6-8ea3-0fe8b84be961"},{"name":"GetAccountInfo","id":"fc4c809d-273d-4567-b374-20e404bc6795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetAccountInfo?userIdOrEmail=YOUR_USERNAME","description":"<p>Get account properties, credit and usage information of your account id.<br /><strong>Credit:</strong> no credit is charged when using this method.<br /><strong>Method applies to:</strong> user account.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>UserIdOrEmail</strong></td>\n<td>String</td>\n<td>The user name or email in Feng-GUI system</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-details\">Response Details</h3>\n<p>The response is an <code>AccountInfo</code> object containing:</p>\n<ul>\n<li><p><strong>UserName</strong>: String. The account user name.</p>\n</li>\n<li><p><strong>Password</strong>: String. Password. Masked. This field is for internal use only.</p>\n</li>\n<li><p><strong>Email</strong>: String. The account email address.</p>\n</li>\n<li><p><strong>Roles</strong>: String. guest, customer, evaluation, test, api, readonly, annual, video.</p>\n</li>\n<li><p><strong>Status</strong>: Integer. Account status. Disabled (0), Enabled (1), Affiliate(2).</p>\n</li>\n<li><p><strong>Used</strong>: Integer. How many credits used by this user.</p>\n</li>\n<li><p><strong>Credit</strong>: Integer. How many credits available from valid plans and shared plans.</p>\n</li>\n<li><p><strong>Service</strong>: String. Service end point host address.</p>\n</li>\n<li><p><strong>DateAdd</strong>: String. Date account was created.</p>\n</li>\n<li><p><strong>FirstName</strong> / <strong>LastName</strong> / <strong>Address</strong> / <strong>City</strong> / <strong>ZipCode</strong> / <strong>Country</strong> / <strong>Company</strong>: String.</p>\n</li>\n<li><p><strong>Storage</strong>: Integer. Storage Used in MB.</p>\n</li>\n<li><p><strong>Mailing</strong>: Integer. Mailing options. INTERNAL.</p>\n</li>\n<li><p><strong>Affiliate</strong>: String. Referring Affiliate Code.</p>\n</li>\n<li><p><strong>Email2</strong>: String. Finance email.</p>\n</li>\n<li><p><strong>DateActive</strong>: String. last active date that user analyzed an image or video.</p>\n</li>\n<li><p><strong>DateDelete</strong>: String. schedule to delete date.</p>\n</li>\n<li><p><strong>StorageQuota</strong>: Integer. Storage Quota limit in MB.</p>\n</li>\n<li><p><strong>StorageUsed</strong>: Integer. Storage used in MB by all users of highest Credit plan.</p>\n</li>\n<li><p><strong>StorageRetention</strong>: Integer. Storage Retention in days.</p>\n</li>\n</ul>\n","urlObject":{"path":["GetAccountInfo"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"description":{"content":"<p>User name or email</p>\n","type":"text/plain"},"key":"userIdOrEmail","value":"YOUR_USERNAME"}],"variable":[]}},"response":[{"id":"532c36e1-e561-4c7f-bb36-025bb96e7e28","name":"GetAccountInfo","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/GetAccountInfo?userIdOrEmail=YOUR_USERNAME","host":["https://service.feng-gui.com/json/api.ashx"],"path":["GetAccountInfo"],"query":[{"description":"User name or email","key":"userIdOrEmail","value":"YOUR_USERNAME"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Set-Cookie","value":"ASP.NET_SessionId=nuboriarwhtbdxfoajt0q34k; domain=.feng-gui.com; path=/; HttpOnly; SameSite=Lax"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Fri, 30 Jan 2026 18:34:07 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"527"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": {\n        \"userName\": \"testapi\",\n        \"password\": \"\",\n        \"email\": \"support@feng-gui.com\",\n        \"roles\": \"evaluation,api,annual,readonly,enterprise,business\",\n        \"status\": 1,\n        \"used\": 2776,\n        \"credit\": 9221,\n        \"service\": \"https://service.feng-gui.com\",\n        \"dateAdd\": \"2011-09-15 06:10:24\",\n        \"firstName\": \"testapi\",\n        \"lastName\": \"account\",\n        \"address\": \"\",\n        \"city\": \"\",\n        \"zipCode\": \"\",\n        \"country\": \"\",\n        \"company\": \"Feng-GUI\",\n        \"storage\": 72,\n        \"mailing\": 0,\n        \"affiliate\": \"\",\n        \"email2\": \"\",\n        \"dateActive\": \"2026-01-25\",\n        \"dateDelete\": \"\",\n        \"storageQuota\": 100000,\n        \"storageUsed\": 72,\n        \"storageRetention\": 8928\n    }\n}"}],"_postman_id":"fc4c809d-273d-4567-b374-20e404bc6795"},{"name":"GetAccountCredits","id":"41d9e9ca-4e65-4015-9c1e-6e93577e60e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetAccountCredits\",\"params\":{},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Get details about valid credit plans.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> user account.</p>\n<h3 id=\"response-details\">Response Details</h3>\n<p>The response is an <code>AccountCredits</code> object:</p>\n<ul>\n<li><strong>Credits</strong>: List of AccountCredit purchased and shared.</li>\n<li><strong>UsedCredit</strong>: Integer. Sum of used credits in active plans.</li>\n<li><strong>RemainCredit</strong>: Integer. Sum of valid credits left in active plans.</li>\n</ul>\n<p><strong>AccountCredit object</strong>:</p>\n<ul>\n<li><strong>CreditID</strong>: Integer.</li>\n<li><strong>UserName</strong>: String.</li>\n<li><strong>Price</strong>: Integer.</li>\n<li><strong>Credit</strong>: Integer.</li>\n<li><strong>Used</strong>: Integer. Used credits from this credit package plan.</li>\n<li><strong>Expire</strong>: Integer. Expire Hours added to DateAdd.</li>\n<li><strong>TXN</strong>: String. Transaction number.</li>\n<li><strong>InvoiceID</strong>: String. Finance invoice id.</li>\n<li><strong>DateAdd</strong>: String. Date and Time of purchase.</li>\n<li><strong>Affiliate</strong>: String. affiliate code used in this transaction.</li>\n</ul>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"3990bc4c-57b8-4504-a4ea-741070625b7e","name":"GetAccountCredits","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetAccountCredits\",\"params\":{},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:38:06 GMT"},{"key":"Content-Length","value":"251"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769333885\",\n    \"result\": {\n        \"credits\":[\n            {\n                \"creditID\": 10872,\n                \"userName\": \"testapi\",\n                \"price\": 0,\n                \"credit\": 10000,\n                \"used\": 775,\n                \"expire\": 100000,\n                \"tXN\": \"SUPPORT\",\n                \"invoiceID\": \"NA\",\n                \"dateAdd\": \"2021-12-12 18:17:40\",\n                \"affiliate\": \"\"\n            }\n        ],\n        \"usedCredit\": 775,\n        \"remainCredit\": 9225\n    }\n}"}],"_postman_id":"41d9e9ca-4e65-4015-9c1e-6e93577e60e4"},{"name":"GetAccountCredits","id":"3da8e53b-8991-4e33-9a98-d6de089709f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetAccountCredits","description":"<p>Get details about valid credit plans.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> user account.</p>\n<h3 id=\"response-details\">Response Details</h3>\n<p>The response is an <code>AccountCredits</code> object:</p>\n<ul>\n<li><strong>Credits</strong>: List of AccountCredit purchased and shared.</li>\n<li><strong>UsedCredit</strong>: Integer. Sum of used credits in active plans.</li>\n<li><strong>RemainCredit</strong>: Integer. Sum of valid credits left in active plans.</li>\n</ul>\n<p><strong>AccountCredit object</strong>:</p>\n<ul>\n<li><strong>CreditID</strong>: Integer.</li>\n<li><strong>UserName</strong>: String.</li>\n<li><strong>Price</strong>: Integer.</li>\n<li><strong>Credit</strong>: Integer.</li>\n<li><strong>Used</strong>: Integer. Used credits from this credit package plan.</li>\n<li><strong>Expire</strong>: Integer. Expire Hours added to DateAdd.</li>\n<li><strong>TXN</strong>: String. Transaction number.</li>\n<li><strong>InvoiceID</strong>: String. Finance invoice id.</li>\n<li><strong>DateAdd</strong>: String. Date and Time of purchase.</li>\n<li><strong>Affiliate</strong>: String. affiliate code used in this transaction.</li>\n</ul>\n","urlObject":{"path":["GetAccountCredits"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"8b667516-f227-47fd-a9c6-bd35a28d9026","name":"GetAccountCredits","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":"https://service.feng-gui.com/json/api.ashx/GetAccountCredits"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Fri, 30 Jan 2026 18:37:07 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"241"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": {\n        \"credits\":[\n            {\n                \"creditID\": 10872,\n                \"userName\": \"testapi\",\n                \"price\": 0,\n                \"credit\": 10000,\n                \"used\": 779,\n                \"expire\": 100000,\n                \"tXN\": \"SUPPORT\",\n                \"invoiceID\": \"NA\",\n                \"dateAdd\": \"2021-12-12 18:17:40\",\n                \"affiliate\": \"\"\n            }\n        ],\n        \"usedCredit\": 779,\n        \"remainCredit\": 9221\n    }\n}"}],"_postman_id":"3da8e53b-8991-4e33-9a98-d6de089709f6"},{"name":"GetAccountUsage","id":"07549938-de9c-4d01-b38f-e9fde9b67e04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetAccountUsage\",\"params\":{},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Get account usage for the recent 100 actions.<br /><strong>Credit:</strong> no credit is charged when using this method.<br /><strong>Method applies to:</strong> user account.</p>\n<h3 id=\"response-details\">Response Details</h3>\n<p>The response is an array of rows detailing the action instances.</p>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"a8566b95-23da-41a9-b8b7-14f7b60d9b10","name":"GetAccountUsage","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetAccountUsage\",\"params\":{},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:40:36 GMT"},{"key":"Content-Length","value":"699"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334035\",\n    \"result\": {\n        \"rows\":[\n            {\n                \"id\": \"563529\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/949510.png analyzed as 949510.png\",\n                \"dateAdd\": \"2026-01-25 09:31:07\"\n            },\n            {\n                \"id\": \"563528\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/949510.png analyzed as 949510.png\",\n                \"dateAdd\": \"2026-01-25 09:28:25\"\n            },\n            {\n                \"id\": \"563527\",\n                \"type\": \"1\",\n                \"value\": \"949510.jpg saved as 949510.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:14:58\"\n            },\n            {\n                \"id\": \"563526\",\n                \"type\": \"1\",\n                \"value\": \"949511.jpg saved as 949511.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:14:55\"\n            },\n            {\n                \"id\": \"563525\",\n                \"type\": \"1\",\n                \"value\": \"949509.jpg saved as 949509.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 08:51:33\"\n            }\n        ]\n    }\n}"}],"_postman_id":"07549938-de9c-4d01-b38f-e9fde9b67e04"},{"name":"GetAccountUsage","id":"e8409ced-91f7-41d5-849c-0e643d93fe06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetAccountUsage","description":"<p>Get account usage for the recent 100 actions.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> user account.</p>\n<h3 id=\"response-details\">Response Details</h3>\n<p>The response is an array of rows detailing the action instances.</p>\n","urlObject":{"path":["GetAccountUsage"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"bb7b0ccf-dee7-464e-a8e8-b78ac7b807a1","name":"GetAccountUsage","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":"https://service.feng-gui.com/json/api.ashx/GetAccountUsage"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Fri, 30 Jan 2026 18:37:28 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"2297"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": {\n        \"rows\":[\n            {\n                \"id\": \"563580\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/949511.png analyzed as 949511.png\",\n                \"dateAdd\": \"2026-01-25 12:45:36\"\n            },\n            {\n                \"id\": \"563539\",\n                \"type\": \"4\",\n                \"value\": \"https://www.google.com saved as e269808a-cc0f-43f9-a3c2-21600478d4a7.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 10:03:11\"\n            },\n            {\n                \"id\": \"563538\",\n                \"type\": \"3\",\n                \"value\": \"/test.png\",\n                \"dateAdd\": \"2026-01-25 10:02:46\"\n            },\n            {\n                \"id\": \"563537\",\n                \"type\": \"5\",\n                \"value\": \"Create Report for /test.png using template.mdddl\",\n                \"dateAdd\": \"2026-01-25 09:56:25\"\n            },\n            {\n                \"id\": \"563535\",\n                \"type\": \"7\",\n                \"value\": \"6122d1ec-d9e6-451a-9462-0e907c056f42.mp4 saved as 6122d1ec-d9e6-451a-9462-0e907c056f42.mp4 for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:54:19\"\n            },\n            {\n                \"id\": \"563536\",\n                \"type\": \"8\",\n                \"value\": \"https://feng-gui.com/images/tests/test.mp4 analyzed as 6122d1ec-d9e6-451a-9462-0e907c056f42.mp4\",\n                \"dateAdd\": \"2026-01-25 09:54:19\"\n            },\n            {\n                \"id\": \"563534\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/test.png analyzed as test.png\",\n                \"dateAdd\": \"2026-01-25 09:45:49\"\n            },\n            {\n                \"id\": \"563533\",\n                \"type\": \"1\",\n                \"value\": \"test.png saved as test.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:43:52\"\n            },\n            {\n                \"id\": \"563532\",\n                \"type\": \"2\",\n                \"value\": \"https://feng-gui.com/images/test.png analyzed as 74a4b8e5-feba-4ae7-aeac-a840b7bb32e2.png\",\n                \"dateAdd\": \"2026-01-25 09:41:12\"\n            },\n            {\n                \"id\": \"563531\",\n                \"type\": \"1\",\n                \"value\": \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2.png saved as 74a4b8e5-feba-4ae7-aeac-a840b7bb32e2.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:41:02\"\n            },\n            {\n                \"id\": \"563530\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/949509.png analyzed as 949509.png\",\n                \"dateAdd\": \"2026-01-25 09:40:47\"\n            },\n            {\n                \"id\": \"563529\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/949510.png analyzed as 949510.png\",\n                \"dateAdd\": \"2026-01-25 09:31:07\"\n            },\n            {\n                \"id\": \"563528\",\n                \"type\": \"2\",\n                \"value\": \"https://service.feng-gui.com/users/testapi/files/images/949510.png analyzed as 949510.png\",\n                \"dateAdd\": \"2026-01-25 09:28:25\"\n            },\n            {\n                \"id\": \"563527\",\n                \"type\": \"1\",\n                \"value\": \"949510.jpg saved as 949510.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:14:58\"\n            },\n            {\n                \"id\": \"563526\",\n                \"type\": \"1\",\n                \"value\": \"949511.jpg saved as 949511.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 09:14:55\"\n            },\n            {\n                \"id\": \"563525\",\n                \"type\": \"1\",\n                \"value\": \"949509.jpg saved as 949509.png for 1 credits\",\n                \"dateAdd\": \"2026-01-25 08:51:33\"\n            }\n        ]\n    }\n}"}],"_postman_id":"e8409ced-91f7-41d5-849c-0e643d93fe06"}],"id":"99a143a3-150a-40e5-b8c4-9b9b4237612b","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"61a19ae0-f92d-45a9-a60a-06387f01b8b1","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"85771fa5-f6fb-45c0-b32e-c176c08583af","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"99a143a3-150a-40e5-b8c4-9b9b4237612b","description":""},{"name":"Analysis","item":[{"name":"Images","item":[{"name":"ImageAttention","id":"b3a63294-b993-43b8-bca8-4288a6ae4c13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"1776207215\",\r\n    \"method\": \"ImageAttention\",\r\n    \"params\": {\r\n        \"InputImage\": \"https://feng-gui.com/images/test.png\",\r\n        \"viewType\": 0,\r\n        \"ViewDistance\": 0,\r\n        \"AnalysisOptions\": 0,\r\n        \"OutputOptions\": 0\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Feng-GUI attention analysis of an image.<br /><strong>Credit:</strong> one credit is charged for an image analysis.<br /><strong>Method applies to:</strong> image analysis.</p>\n<p>The method generates the Heatmap, Gaze plot, Opacity, AOIs and Aesthetics reports in one execution.</p>\n<h3 id=\"reports-generated\">Reports generated:</h3>\n<ul>\n<li><p><strong>Input image</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName.png</code></p>\n</li>\n<li><p><strong>Heatmap report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_heatmap.png</code></p>\n</li>\n<li><p><strong>Gaze plot report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_gazeplot.png</code></p>\n</li>\n<li><p><strong>Focus Map report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_opacity.png</code></p>\n</li>\n<li><p><strong>AOIs report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_aoi.png</code></p>\n</li>\n<li><p><strong>Aesthetics report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_aes.png</code></p>\n</li>\n<li><p><strong>Analysis info</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_info.txt</code></p>\n</li>\n<li><p><strong>Raw data report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_raw.png</code></p>\n</li>\n<li><p><strong>Raw Visual Features</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_raw_vf.png</code></p>\n</li>\n</ul>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>InputImage</strong></td>\n<td>String</td>\n<td>Full URL path of the input image file.</td>\n</tr>\n<tr>\n<td><strong>ViewType</strong></td>\n<td>Integer</td>\n<td>Sets the context of the image. 0: Any (Default), 1: Online-Desktop, 2: Natural, 3: Package, 4: Indoor, 5: Outdoor, 6: Online-Mobile/TV</td>\n</tr>\n<tr>\n<td><strong>ViewDistance</strong></td>\n<td>Integer</td>\n<td>Deprecated. View distance is determined automatically by View Type.</td>\n</tr>\n<tr>\n<td><strong>AnalysisOptions</strong></td>\n<td>Integer</td>\n<td>Specifies sub algorithms. Default (0), Visual Features (15), AnalyzeMemory (16), AnalyzeEmotion (32), AnalyzeText (64), AnalyzeFace (128), AnalyzeExpressions (512). Combine flags by summing (e.g. 191).</td>\n</tr>\n<tr>\n<td><strong>OutputOptions</strong></td>\n<td>Integer</td>\n<td>Specifies heatmap output settings. Default (0), MergeHeatmap (1), OutputFocusScores (2), OutputAestheticsScores (4), OutputDrawLegend (8), OutputOpacityWhite (32), OutputAutoAddAOIs (64), OutputDrawExpressions (1024). Combine by summing.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"2a9b8fd3-0449-47ca-b3e7-6196e507734c","name":"ImageAttention","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"1776207215\",\r\n    \"method\": \"ImageAttention\",\r\n    \"params\": {\r\n        \"InputImage\": \"https://feng-gui.com/images/test.png\",\r\n        \"viewType\": 0,\r\n        \"ViewDistance\": 0,\r\n        \"AnalysisOptions\": 0,\r\n        \"OutputOptions\": 0\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:41:12 GMT"},{"key":"Content-Length","value":"2118"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334057\",\n    \"result\": {\n        \"serviceVersion\": \"8.2.4.7\",\n        \"version\": \"8.2.4.7\",\n        \"imageID\": \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2.png\",\n        \"inputImage\": \"https://feng-gui.com/images/test.png\",\n        \"outputImage\": \"https://service.feng-gui.com/users/testapi/files/images/74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_heatmap.png\",\n        \"outputAttentionImage\": \"https://service.feng-gui.com/users/testapi/files/images/74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_raw.png\",\n        \"analysisResult\": 0,\n        \"analysisOptions\": 1023,\n        \"outputOptions\": 269,\n        \"viewDistanceOptions\": 0,\n        \"viewTypeOptions\": 0,\n        \"faceDetected\": true,\n        \"skinDetected\": false,\n        \"textDetected\": false,\n        \"overall\": 77,\n        \"complexity\": 12,\n        \"clear\": 88,\n        \"focus\": 66,\n        \"exciting\": 14,\n        \"balance\": 87,\n        \"hotspots\":[\n            {\n                \"x\": 888,\n                \"y\": 261,\n                \"maxValue\": 255\n            },\n            {\n                \"x\": 425,\n                \"y\": 435,\n                \"maxValue\": 202\n            },\n            {\n                \"x\": 1119,\n                \"y\": 190,\n                \"maxValue\": 168\n            },\n            {\n                \"x\": 783,\n                \"y\": 721,\n                \"maxValue\": 159\n            },\n            {\n                \"x\": 305,\n                \"y\": 420,\n                \"maxValue\": 72\n            },\n            {\n                \"x\": 977,\n                \"y\": 615,\n                \"maxValue\": 59\n            },\n            {\n                \"x\": 1155,\n                \"y\": 572,\n                \"maxValue\": 49\n            },\n            {\n                \"x\": 160,\n                \"y\": 783,\n                \"maxValue\": 42\n            },\n            {\n                \"x\": 685,\n                \"y\": 792,\n                \"maxValue\": 34\n            },\n            {\n                \"x\": 1158,\n                \"y\": 343,\n                \"maxValue\": 30\n            },\n            {\n                \"x\": 861,\n                \"y\": 379,\n                \"maxValue\": 29\n            },\n            {\n                \"x\": 1053,\n                \"y\": 507,\n                \"maxValue\": 28\n            },\n            {\n                \"x\": 136,\n                \"y\": 603,\n                \"maxValue\": 23\n            },\n            {\n                \"x\": 1228,\n                \"y\": 243,\n                \"maxValue\": 18\n            },\n            {\n                \"x\": 1298,\n                \"y\": 351,\n                \"maxValue\": 18\n            },\n            {\n                \"x\": 544,\n                \"y\": 457,\n                \"maxValue\": 16\n            },\n            {\n                \"x\": 770,\n                \"y\": 288,\n                \"maxValue\": 14\n            },\n            {\n                \"x\": 904,\n                \"y\": 712,\n                \"maxValue\": 14\n            },\n            {\n                \"x\": 139,\n                \"y\": 903,\n                \"maxValue\": 13\n            },\n            {\n                \"x\": 185,\n                \"y\": 435,\n                \"maxValue\": 11\n            }\n        ],\n        \"aOIs\": [],\n        \"faces\":[\n            {\n                \"top\": 204,\n                \"left\": 848,\n                \"width\": 80,\n                \"height\": 119,\n                \"emotion\": \"Neutral\",\n                \"confidence\": 0.95,\n                \"neutral\": 0.95,\n                \"happy\": 0,\n                \"surprise\": 0,\n                \"sad\": 0.01,\n                \"anger\": 0.02,\n                \"disgust\": 0,\n                \"fear\": 0,\n                \"contempt\": 0.01\n            },\n            {\n                \"top\": 127,\n                \"left\": 1063,\n                \"width\": 112,\n                \"height\": 131,\n                \"emotion\": \"Neutral\",\n                \"confidence\": 0.93,\n                \"neutral\": 0.93,\n                \"happy\": 0.02,\n                \"surprise\": 0,\n                \"sad\": 0.03,\n                \"anger\": 0,\n                \"disgust\": 0,\n                \"fear\": 0,\n                \"contempt\": 0.02\n            }\n        ],\n        \"textAreas\":[\n            {\n                \"top\": 364,\n                \"left\": 240,\n                \"width\": 222,\n                \"height\": 57,\n                \"confidence\": 1\n            },\n            {\n                \"top\": 924,\n                \"left\": 390,\n                \"width\": 122,\n                \"height\": 28,\n                \"confidence\": 1\n            },\n            {\n                \"top\": 395,\n                \"left\": 351,\n                \"width\": 170,\n                \"height\": 77,\n                \"confidence\": 1\n            },\n            {\n                \"top\": 922,\n                \"left\": 236,\n                \"width\": 135,\n                \"height\": 31,\n                \"confidence\": 1\n            },\n            {\n                \"top\": 484,\n                \"left\": 359,\n                \"width\": 49,\n                \"height\": 17,\n                \"confidence\": 0.47\n            },\n            {\n                \"top\": 487,\n                \"left\": 440,\n                \"width\": 70,\n                \"height\": 15,\n                \"confidence\": 0.42\n            }\n        ]\n    }\n}"}],"_postman_id":"b3a63294-b993-43b8-bca8-4288a6ae4c13"},{"name":"ImageAttention","id":"283ab57f-a6d7-4909-aa60-9430caf714e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://service.feng-gui.com/json/api.ashx/ImageAttention?InputImage=https://feng-gui.com/images/armani.jpg","description":"<p>Feng-GUI attention analysis of an image.<br /><strong>Credit:</strong> one credit is charged for an image analysis.<br /><strong>Method applies to:</strong> image analysis.</p>\n<p>The method generates the Heatmap, Gaze plot, Opacity, AOIs and Aesthetics reports in one execution.</p>\n<h3 id=\"reports-generated\">Reports generated:</h3>\n<ul>\n<li><p><strong>Input image</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName.png</code></p>\n</li>\n<li><p><strong>Heatmap report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_heatmap.png</code></p>\n</li>\n<li><p><strong>Gaze plot report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_gazeplot.png</code></p>\n</li>\n<li><p><strong>Focus Map report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_opacity.png</code></p>\n</li>\n<li><p><strong>AOIs report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_aoi.png</code></p>\n</li>\n<li><p><strong>Aesthetics report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_aes.png</code></p>\n</li>\n<li><p><strong>Analysis info</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_info.txt</code></p>\n</li>\n<li><p><strong>Raw data report</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_raw.png</code></p>\n</li>\n<li><p><strong>Raw Visual Features</strong>: <code>https://SERVICE/users/USERNAME/files/images/ImageName_raw_vf.png</code></p>\n</li>\n</ul>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>InputImage</strong></td>\n<td>String</td>\n<td>Full URL path of the input image file.</td>\n</tr>\n<tr>\n<td><strong>ViewType</strong></td>\n<td>Integer</td>\n<td>Sets the context of the image. 0: Any (Default), 1: Online-Desktop, 2: Natural, 3: Package, 4: Indoor, 5: Outdoor, 6: Online-Mobile/TV</td>\n</tr>\n<tr>\n<td><strong>ViewDistance</strong></td>\n<td>Integer</td>\n<td>Deprecated. View distance is determined automatically by View Type.</td>\n</tr>\n<tr>\n<td><strong>AnalysisOptions</strong></td>\n<td>Integer</td>\n<td>Specifies sub algorithms. Default (0), Visual Features (15), AnalyzeMemory (16), AnalyzeEmotion (32), AnalyzeText (64), AnalyzeFace (128), AnalyzeExpressions (512). Combine flags by summing (e.g. 191).</td>\n</tr>\n<tr>\n<td><strong>OutputOptions</strong></td>\n<td>Integer</td>\n<td>Specifies heatmap output settings. Default (0), MergeHeatmap (1), OutputFocusScores (2), OutputAestheticsScores (4), OutputDrawLegend (8), OutputOpacityWhite (32), OutputAutoAddAOIs (64), OutputDrawExpressions (1024). Combine by summing.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ImageAttention"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"InputImage","value":"https://feng-gui.com/images/armani.jpg"}],"variable":[]}},"response":[{"id":"6abf1011-85c1-41f7-bf79-318929554db5","name":"ImageAttention","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"X-API-Key","value":"<API Key>","description":"Added as a part of security scheme: apikey"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/ImageAttention?InputImage=https://feng-gui.com/images/armani.jpg","host":["https://service.feng-gui.com/json/api.ashx"],"path":["ImageAttention"],"query":[{"key":"InputImage","value":"https://feng-gui.com/images/armani.jpg"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"private","description":{"content":"","type":"text/plain"}},{"key":"Server","value":"Microsoft-IIS/10.0","description":{"content":"","type":"text/plain"}},{"key":"Set-Cookie","value":"ASP.NET_SessionId=yq4vm5pmi15wqil25lmtqi3n; domain=.feng-gui.com; path=/; HttpOnly; SameSite=Lax","description":{"content":"","type":"text/plain"}},{"key":"Access-Control-Allow-Origin","value":"*","description":{"content":"","type":"text/plain"}},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC","description":{"content":"","type":"text/plain"}},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","description":{"content":"","type":"text/plain"}},{"key":"Date","value":"Tue, 10 Mar 2026 10:34:09 GMT","description":{"content":"","type":"text/plain"}},{"key":"Content-Length","value":"2091","description":{"content":"","type":"text/plain"}}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": -1,\n  \"result\": {\n    \"serviceVersion\": \"8.2.4.7\",\n    \"version\": \"8.2.4.7\",\n    \"imageID\": \"armani.png\",\n    \"inputImage\": \"https://feng-gui.com/images/armani.jpg\",\n    \"outputImage\": \"https://service.feng-gui.com/users/testapi/files/images/armani_heatmap.png\",\n    \"outputAttentionImage\": \"https://service.feng-gui.com/users/testapi/files/images/armani_raw.png\",\n    \"analysisResult\": 0,\n    \"analysisOptions\": 1023,\n    \"outputOptions\": 269,\n    \"viewDistanceOptions\": 0,\n    \"viewTypeOptions\": 0,\n    \"faceDetected\": false,\n    \"skinDetected\": false,\n    \"textDetected\": false,\n    \"overall\": 79,\n    \"complexity\": 18,\n    \"clear\": 82,\n    \"focus\": 63,\n    \"exciting\": 32,\n    \"balance\": 82,\n    \"approach\": 56,\n    \"withdraw\": 29,\n    \"memory\": 84,\n    \"hotspots\": [\n      {\n        \"x\": 392,\n        \"y\": 109,\n        \"maxValue\": 255\n      },\n      {\n        \"x\": 177,\n        \"y\": 172,\n        \"maxValue\": 216\n      },\n      {\n        \"x\": 443,\n        \"y\": 124,\n        \"maxValue\": 189\n      },\n      {\n        \"x\": 344,\n        \"y\": 334,\n        \"maxValue\": 174\n      },\n      {\n        \"x\": 502,\n        \"y\": 74,\n        \"maxValue\": 157\n      },\n      {\n        \"x\": 460,\n        \"y\": 264,\n        \"maxValue\": 65\n      },\n      {\n        \"x\": 125,\n        \"y\": 160,\n        \"maxValue\": 59\n      },\n      {\n        \"x\": 419,\n        \"y\": 298,\n        \"maxValue\": 54\n      },\n      {\n        \"x\": 228,\n        \"y\": 187,\n        \"maxValue\": 48\n      },\n      {\n        \"x\": 522,\n        \"y\": 260,\n        \"maxValue\": 48\n      },\n      {\n        \"x\": 361,\n        \"y\": 152,\n        \"maxValue\": 43\n      },\n      {\n        \"x\": 494,\n        \"y\": 204,\n        \"maxValue\": 39\n      },\n      {\n        \"x\": 44,\n        \"y\": 256,\n        \"maxValue\": 34\n      },\n      {\n        \"x\": 299,\n        \"y\": 362,\n        \"maxValue\": 31\n      },\n      {\n        \"x\": 532,\n        \"y\": 118,\n        \"maxValue\": 28\n      },\n      {\n        \"x\": 555,\n        \"y\": 68,\n        \"maxValue\": 22\n      },\n      {\n        \"x\": 536,\n        \"y\": 171,\n        \"maxValue\": 21\n      },\n      {\n        \"x\": 563,\n        \"y\": 294,\n        \"maxValue\": 20\n      },\n      {\n        \"x\": 396,\n        \"y\": 346,\n        \"maxValue\": 20\n      },\n      {\n        \"x\": 50,\n        \"y\": 355,\n        \"maxValue\": 20\n      }\n    ],\n    \"aOIs\": [],\n    \"faces\": [\n      {\n        \"top\": 100,\n        \"left\": 424,\n        \"width\": 32,\n        \"height\": 46,\n        \"emotion\": \"Neutral\",\n        \"confidence\": 0.63,\n        \"neutral\": 0.63,\n        \"happy\": 0.03,\n        \"surprise\": 0,\n        \"sad\": 0.33,\n        \"anger\": 0.01,\n        \"disgust\": 0,\n        \"fear\": 0,\n        \"contempt\": 0\n      },\n      {\n        \"top\": 86,\n        \"left\": 375,\n        \"width\": 36,\n        \"height\": 48,\n        \"emotion\": \"Neutral\",\n        \"confidence\": 0.92,\n        \"neutral\": 0.92,\n        \"happy\": 0,\n        \"surprise\": 0,\n        \"sad\": 0.02,\n        \"anger\": 0.05,\n        \"disgust\": 0,\n        \"fear\": 0,\n        \"contempt\": 0.01\n      },\n      {\n        \"top\": 44,\n        \"left\": 478,\n        \"width\": 49,\n        \"height\": 62,\n        \"emotion\": \"Neutral\",\n        \"confidence\": 0.9,\n        \"neutral\": 0.9,\n        \"happy\": 0,\n        \"surprise\": 0,\n        \"sad\": 0.07,\n        \"anger\": 0,\n        \"disgust\": 0,\n        \"fear\": 0,\n        \"contempt\": 0.02\n      }\n    ],\n    \"textAreas\": [\n      {\n        \"top\": 138,\n        \"left\": 95,\n        \"width\": 101,\n        \"height\": 30,\n        \"confidence\": 1\n      },\n      {\n        \"top\": 154,\n        \"left\": 139,\n        \"width\": 79,\n        \"height\": 38,\n        \"confidence\": 1\n      },\n      {\n        \"top\": 414,\n        \"left\": 86,\n        \"width\": 69,\n        \"height\": 16,\n        \"confidence\": 1\n      },\n      {\n        \"top\": 414,\n        \"left\": 162,\n        \"width\": 62,\n        \"height\": 16,\n        \"confidence\": 1\n      }\n    ]\n  }\n}"}],"_postman_id":"283ab57f-a6d7-4909-aa60-9430caf714e4"},{"name":"SetImageAOIs","id":"5c2f9bce-807d-4b89-a902-6e9e54e09444","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"SetImageAOIs\",\"params\":{\"ImageID\":\"/test.png\",\"AOIs\":\"[{\\\"id\\\":\\\"id1\\\",\\\"text\\\":\\\"Logo\\\",\\\"shape\\\":\\\"rect\\\",\\\"left\\\":10,\\\"top\\\":10,\\\"width\\\":200,\\\"height\\\":100}]\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Set the AOIs data of an image.<br /><strong>Credit:</strong> no credit is charged when using this method.<br /><strong>Method applies to:</strong> image analysis.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the original image including file extension (e.g., <code>/folder/ImageName.png</code>)</td>\n</tr>\n<tr>\n<td><strong>AOIs</strong></td>\n<td>String</td>\n<td>Escaped JSON format string of the AOIs regions.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"how-to-generate-an-aois-report\">How to generate an AOIs report:</h3>\n<ol>\n<li><p>Call ImageAttention method with the URL of the image located on your server.</p>\n</li>\n<li><p>Extract the newly created ImageID from the OutputImage URL.</p>\n</li>\n<li><p>Use this ImageID and a JSON AOIs string to call SetImageAOIs.</p>\n</li>\n<li><p>Call ImageAttention method with the URL of the image located on Feng-GUI server (no credit charged).</p>\n</li>\n<li><p>Download the AOIs report image with an additional timestamp parameter at the end of the URL (to avoid cache issues).</p>\n</li>\n</ol>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"7afc94fd-5604-43e7-81f1-524b95d8dc0e","name":"SetImageAOIs","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"SetImageAOIs\",\"params\":{\"ImageID\":\"/test.png\",\"AOIs\":\"[{\\\"id\\\":\\\"id1\\\",\\\"text\\\":\\\"Logo\\\",\\\"shape\\\":\\\"rect\\\",\\\"left\\\":10,\\\"top\\\":10,\\\"width\\\":200,\\\"height\\\":100}]\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:45:44 GMT"},{"key":"Content-Length","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334343\",\n    \"result\": null\n}"}],"_postman_id":"5c2f9bce-807d-4b89-a902-6e9e54e09444"},{"name":"SetImageAOIs","id":"71650fa7-d543-4c1a-82f5-4990359b2e84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/SetImageAOIs?ImageID=/test.png&AOIs=[{\"id\":\"id1\",\"text\":\"Logo\",\"top\":10.0,\"left\":10.0,\"width\":20.0,\"height\":100.0}]","description":"<p>Set the AOIs data of an image.<br /><strong>Credit:</strong> no credit is charged when using this method.<br /><strong>Method applies to:</strong> image analysis.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the original image including file extension (e.g., <code>/folder/ImageName.png</code>)</td>\n</tr>\n<tr>\n<td><strong>AOIs</strong></td>\n<td>String</td>\n<td>Escaped JSON format string of the AOIs regions.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"how-to-generate-an-aois-report\">How to generate an AOIs report:</h3>\n<ol>\n<li><p>Call ImageAttention method with the URL of the image located on your server.</p>\n</li>\n<li><p>Extract the newly created ImageID from the OutputImage URL.</p>\n</li>\n<li><p>Use this ImageID and a JSON AOIs string to call SetImageAOIs.</p>\n</li>\n<li><p>Call ImageAttention method with the URL of the image located on Feng-GUI server (no credit charged).</p>\n</li>\n<li><p>Download the AOIs report image with an additional timestamp parameter at the end of the URL (to avoid cache issues).</p>\n</li>\n</ol>\n","urlObject":{"path":["SetImageAOIs"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"ImageID","value":"/test.png"},{"key":"AOIs","value":"[{\"id\":\"id1\",\"text\":\"Logo\",\"top\":10.0,\"left\":10.0,\"width\":20.0,\"height\":100.0}]"}],"variable":[]}},"response":[{"id":"a6e521de-dbfe-430c-8ffa-5fa4f61b9dc2","name":"SetImageAOIs","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/SetImageAOIs?ImageID=/test.png&AOIs=[{\"id\":\"id1\",\"text\":\"Logo\",\"top\":10.0,\"left\":10.0,\"width\":20.0,\"height\":100.0}]","host":["https://service.feng-gui.com/json/api.ashx"],"path":["SetImageAOIs"],"query":[{"key":"ImageID","value":"/test.png"},{"key":"AOIs","value":"[{\"id\":\"id1\",\"text\":\"Logo\",\"top\":10.0,\"left\":10.0,\"width\":20.0,\"height\":100.0}]"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Set-Cookie","value":"ASP.NET_SessionId=1xh44pfazxidxbgqlrzvdrn0; domain=.feng-gui.com; path=/; HttpOnly; SameSite=Lax"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Fri, 03 Apr 2026 12:55:43 GMT"},{"key":"Content-Length","value":"23"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": null\n}"}],"_postman_id":"71650fa7-d543-4c1a-82f5-4990359b2e84"},{"name":"GetImageAOIs","id":"f8913a4f-93de-408a-8c3b-71645c037a24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetImageAOIs\",\"params\":{\"ImageID\":\"/test.png\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Get the AOIs data of an image.<br /><strong>Credit:</strong> no credit is charged when using this method.<br /><strong>Method applies to:</strong> image analysis.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the original image including file extension (e.g., <code>/folder/ImageName.png</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"notes\">Notes</h3>\n<ul>\n<li><strong>Scaled AOI values</strong>: AOI values can be scaled to units like 'pixels' or 'percent'. '384x256' is deprecated.</li>\n</ul>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"cfb41043-dc3a-44ed-a8b0-9c184740c2cf","name":"GetImageAOIs","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetImageAOIs\",\"params\":{\"ImageID\":\"/test.png\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:46:47 GMT"},{"key":"Content-Length","value":"397"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334406\",\n    \"result\": \"[{\\\"id\\\":\\\"id1\\\",\\\"text\\\":\\\"Logo\\\",\\\"shape\\\":null,\\\"color\\\":null,\\\"StartTime\\\":0,\\\"EndTime\\\":0,\\\"units\\\":\\\"pixels\\\",\\\"top\\\":341.0,\\\"left\\\":224.0,\\\"width\\\":309.0,\\\"height\\\":149.0,\\\"VisibilityScore\\\":0,\\\"TimeToFirstFixation\\\":0,\\\"FixationsBefore\\\":0,\\\"FixationLength\\\":0,\\\"FixationCount\\\":0,\\\"intensity\\\":0,\\\"orientation\\\":0,\\\"colorRedGreen\\\":0,\\\"colorBlueYellow\\\":0}]\"\n}"}],"_postman_id":"f8913a4f-93de-408a-8c3b-71645c037a24"},{"name":"GetImageAOIs","id":"201f6c6f-7221-4063-8e15-2f66ee1628f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetImageAOIs?ImageID=/test.png","description":"<p>Get the AOIs data of an image.<br /><strong>Credit:</strong> no credit is charged when using this method.<br /><strong>Method applies to:</strong> image analysis.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the original image including file extension (e.g., <code>/folder/ImageName.png</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"notes\">Notes</h3>\n<ul>\n<li><strong>Scaled AOI values</strong>: AOI values can be scaled to units like 'pixels' or 'percent'. '384x256' is deprecated.</li>\n</ul>\n","urlObject":{"path":["GetImageAOIs"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"ImageID","value":"/test.png"}],"variable":[]}},"response":[{"id":"0de46598-fc5c-475c-a0a5-43bc17129938","name":"GetImageAOIs","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/GetImageAOIs?ImageID=/test.png","host":["https://service.feng-gui.com/json/api.ashx"],"path":["GetImageAOIs"],"query":[{"key":"ImageID","value":"/test.png"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 11:58:13 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"383"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": \"[{\\\"id\\\":\\\"id1\\\",\\\"text\\\":\\\"Logo\\\",\\\"shape\\\":\\\"rect\\\",\\\"color\\\":null,\\\"StartTime\\\":0,\\\"EndTime\\\":0,\\\"units\\\":null,\\\"top\\\":10.0,\\\"left\\\":10.0,\\\"width\\\":200.0,\\\"height\\\":100.0,\\\"VisibilityScore\\\":0,\\\"TimeToFirstFixation\\\":0,\\\"FixationsBefore\\\":0,\\\"FixationLength\\\":0,\\\"FixationCount\\\":0,\\\"intensity\\\":0,\\\"orientation\\\":0,\\\"colorRedGreen\\\":0,\\\"colorBlueYellow\\\":0}]\"\n}"}],"_postman_id":"201f6c6f-7221-4063-8e15-2f66ee1628f6"},{"name":"CreateReport","id":"1a9807dd-4461-46b1-9f42-526e7d36a9a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"CreateReport\",\"params\":{\"ImageID\":\"/test.png\",\"ReportTemplate\":\"template.htm\",\"parameters\":\"\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Create a pdf report.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> image analysis only.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the image or video including file extension <code>.png</code> or <code>.mp4</code></td>\n</tr>\n<tr>\n<td><strong>ReportTemplate</strong></td>\n<td>String</td>\n<td>Report template file name. Default: <code>template.htm</code>. Note: MDDDL format is deprecated.</td>\n</tr>\n<tr>\n<td><strong>parameters</strong></td>\n<td>String</td>\n<td>Extra query string parameters sent to the report (internal use only). Default: <code>\"\"</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"e4a2ae8e-e189-4836-bf10-85efe92baded","name":"CreateReport","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"CreateReport\",\"params\":{\"ImageID\":\"/test.png\",\"ReportTemplate\":\"template.mdddl\",\"parameters\":\"\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:56:25 GMT"},{"key":"Content-Length","value":"96"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334981\",\n    \"result\": \"https://service.feng-gui.com/users/testapi/files/images//test.pdf\"\n}"}],"_postman_id":"1a9807dd-4461-46b1-9f42-526e7d36a9a2"},{"name":"CreateReport","id":"c1fff00d-1913-4e8b-b237-cd6a821a2993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/CreateReport?ImageID=test.png&ReportTemplate=template.htm&parameters=\"\"","description":"<p>Create a pdf report.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> image analysis only.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the image or video including file extension <code>.png</code> or <code>.mp4</code></td>\n</tr>\n<tr>\n<td><strong>ReportTemplate</strong></td>\n<td>String</td>\n<td>Report template file name. Default: <code>template.htm</code>. Note: MDDDL format is deprecated.</td>\n</tr>\n<tr>\n<td><strong>parameters</strong></td>\n<td>String</td>\n<td>Extra query string parameters sent to the report (internal use only). Default: <code>\"\"</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["CreateReport"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"ImageID","value":"test.png"},{"key":"ReportTemplate","value":"template.htm"},{"key":"parameters","value":"\"\""}],"variable":[]}},"response":[{"id":"ec95f033-3f1c-48c3-af05-62e0c270e2ab","name":"CreateReport","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/CreateReport?ImageID=/test.png&ReportTemplate=template.mdddl&parameters=\"\"","host":["https://service.feng-gui.com/json/api.ashx"],"path":["CreateReport"],"query":[{"key":"ImageID","value":"/test.png"},{"key":"ReportTemplate","value":"template.mdddl"},{"key":"parameters","value":"\"\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 12:01:18 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"86"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": \"https://service.feng-gui.com/users/testapi/files/images//test.pdf\"\n}"}],"_postman_id":"c1fff00d-1913-4e8b-b237-cd6a821a2993"}],"id":"3757dc94-4a39-4d55-8ff0-de742ac71972","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4973bbbd-87cf-430c-b95c-cdb761e028fe","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"3694bd52-d09f-4308-b9a8-9d6a628c7cd4","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"3757dc94-4a39-4d55-8ff0-de742ac71972","description":""},{"name":"Videos","item":[{"name":"VideoAttention","id":"7db61245-0404-4e39-a291-ffe34e7e989d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"1776207215\",\r\n    \"method\": \"VideoAttention\",\r\n    \"params\": {\r\n        \"InputVideo\": \"https://feng-gui.com/images/tests/test.mp4\",\r\n        \"viewType\": 0,\r\n        \"ViewDistance\": 0,\r\n        \"AnalysisOptions\": 0,\r\n        \"OutputOptions\": 0\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Feng-GUI attention analysis of a video.<br /><strong>Credit:</strong> one credit is charged for every 10 seconds of video.<br /><strong>Method applies to:</strong> video analysis.</p>\n<p>The method generates the Heatmap, Gaze plot and Opacity video reports in one execution.</p>\n<h3 id=\"reports-generated\">Reports generated:</h3>\n<ul>\n<li><p><strong>Input video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName.mp4</code></p>\n</li>\n<li><p><strong>Heatmap video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_heatmap.mp4</code></p>\n</li>\n<li><p><strong>Gazeplot video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_gazeplot.mp4</code></p>\n</li>\n<li><p><strong>Opacity video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_opacity.mp4</code></p>\n</li>\n<li><p><strong>Gaze Data</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_gazedata.csv</code></p>\n</li>\n<li><p><strong>Video Emotion Chart</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_fer.png</code></p>\n</li>\n</ul>\n<p><em>Video analysis can take a few minutes to finish, and the response is asynchronous. To check if the analysis is done, poll the service status every minute using the</em> <code>_GetServiceStatus_</code> <em>method.</em></p>\n<h3 id=\"parameters\">Parameters</h3>\n<p>Parameters are similar to those passed to <code>ImageAttention</code> (<code>InputVideo</code>, <code>ViewType</code>, <code>ViewDistance</code>, <code>AnalysisOptions</code>, <code>OutputOptions</code>).</p>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"916ed659-dda9-4fab-b341-ea719aa33395","name":"VideoAttention","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"1776207215\",\r\n    \"method\": \"VideoAttention\",\r\n    \"params\": {\r\n        \"InputVideo\": \"https://feng-gui.com/images/tests/test.mp4\",\r\n        \"viewType\": 0,\r\n        \"ViewDistance\": 0,\r\n        \"AnalysisOptions\": 0,\r\n        \"OutputOptions\": 0\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:54:19 GMT"},{"key":"Content-Length","value":"631"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334854\",\n    \"result\": {\n        \"imageID\": \"6122d1ec-d9e6-451a-9462-0e907c056f42.mp4\",\n        \"inputImage\": \"https://feng-gui.com/images/tests/test.mp4\",\n        \"outputImage\": \"https://service.feng-gui.com/users/testapi/files/images/6122d1ec-d9e6-451a-9462-0e907c056f42_heatmap.mp4\",\n        \"outputAttentionImage\": \"https://service.feng-gui.com/users/testapi/files/images/6122d1ec-d9e6-451a-9462-0e907c056f42_raw.mp4\",\n        \"analysisResult\": 0,\n        \"analysisOptions\": 1023,\n        \"outputOptions\": 257,\n        \"viewDistanceOptions\": 0,\n        \"viewTypeOptions\": 0,\n        \"faceDetected\": false,\n        \"skinDetected\": false,\n        \"textDetected\": false,\n        \"overall\": 0,\n        \"complexity\": 0,\n        \"clear\": 100,\n        \"focus\": 0,\n        \"exciting\": 0,\n        \"balance\": 0\n    }\n}"}],"_postman_id":"7db61245-0404-4e39-a291-ffe34e7e989d"},{"name":"VideoAttention","id":"40600dcb-e8f0-4f0c-8646-049cc143f264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/VideoAttention?InputVideo=https://feng-gui.com/images/tests/test.mp4&viewType=0&ViewDistance=0&AnalysisOptions=0&OutputOptions=0","description":"<p>Feng-GUI attention analysis of a video.<br /><strong>Credit:</strong> one credit is charged for every 10 seconds of video.<br /><strong>Method applies to:</strong> video analysis.</p>\n<p>The method generates the Heatmap, Gaze plot and Opacity video reports in one execution.</p>\n<h3 id=\"reports-generated\">Reports generated:</h3>\n<ul>\n<li><p><strong>Input video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName.mp4</code></p>\n</li>\n<li><p><strong>Heatmap video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_heatmap.mp4</code></p>\n</li>\n<li><p><strong>Gazeplot video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_gazeplot.mp4</code></p>\n</li>\n<li><p><strong>Opacity video</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_opacity.mp4</code></p>\n</li>\n<li><p><strong>Gaze Data</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_gazedata.csv</code></p>\n</li>\n<li><p><strong>Video Emotion Chart</strong>: <code>http://SERVICE/users/USERNAME/files/images/FileName_fer.png</code></p>\n</li>\n</ul>\n<p><em>Video analysis can take a few minutes to finish, and the response is asynchronous. To check if the analysis is done, poll the service status every minute using the</em> <code>_GetServiceStatus_</code> <em>method.</em></p>\n<h3 id=\"parameters\">Parameters</h3>\n<p>Parameters are similar to those passed to <code>ImageAttention</code> (<code>InputVideo</code>, <code>ViewType</code>, <code>ViewDistance</code>, <code>AnalysisOptions</code>, <code>OutputOptions</code>).</p>\n","urlObject":{"path":["VideoAttention"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"InputVideo","value":"https://feng-gui.com/images/tests/test.mp4"},{"key":"viewType","value":"0"},{"key":"ViewDistance","value":"0"},{"key":"AnalysisOptions","value":"0"},{"key":"OutputOptions","value":"0"}],"variable":[]}},"response":[{"id":"8e4a4384-daba-461e-abec-02cd0598d4ac","name":"VideoAttention","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/VideoAttention?InputVideo=https://feng-gui.com/images/tests/test.mp4&viewType=0&ViewDistance=0&AnalysisOptions=0&OutputOptions=0","host":["https://service.feng-gui.com/json/api.ashx"],"path":["VideoAttention"],"query":[{"key":"InputVideo","value":"https://feng-gui.com/images/tests/test.mp4"},{"key":"viewType","value":"0"},{"key":"ViewDistance","value":"0"},{"key":"AnalysisOptions","value":"0"},{"key":"OutputOptions","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 12:06:34 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"621"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": {\n        \"imageID\": \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471.mp4\",\n        \"inputImage\": \"https://feng-gui.com/images/tests/test.mp4\",\n        \"outputImage\": \"https://service.feng-gui.com/users/testapi/files/images/bf4a6c90-ea93-4ca9-ae33-5b32daee8471_heatmap.mp4\",\n        \"outputAttentionImage\": \"https://service.feng-gui.com/users/testapi/files/images/bf4a6c90-ea93-4ca9-ae33-5b32daee8471_raw.mp4\",\n        \"analysisResult\": 0,\n        \"analysisOptions\": 1023,\n        \"outputOptions\": 257,\n        \"viewDistanceOptions\": 0,\n        \"viewTypeOptions\": 0,\n        \"faceDetected\": false,\n        \"skinDetected\": false,\n        \"textDetected\": false,\n        \"overall\": 0,\n        \"complexity\": 0,\n        \"clear\": 100,\n        \"focus\": 0,\n        \"exciting\": 0,\n        \"balance\": 0\n    }\n}"}],"_postman_id":"40600dcb-e8f0-4f0c-8646-049cc143f264"},{"name":"GetServiceStatus","id":"cb085098-bb28-4a27-8e13-971b3b9fe4f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetServiceStatus\",\"params\":{\"ImageID\":\"/test.mp4\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Check the status of the service.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> image and video analysis.\nUse this method to check if a file is currently being analyzed.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the original image or video URL</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<p>Returns an Integer:</p>\n<ul>\n<li><code>0</code> - Idle</li>\n<li><code>1</code> - Busy</li>\n<li><code>2</code> - Analysis request accepted and is about to start.</li>\n</ul>\n","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"e3f7cdb7-0fcc-4928-a6fb-5f325311afb6","name":"GetServiceStatus","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetServiceStatus\",\"params\":{\"ImageID\":\"/test.mp4\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 09:54:44 GMT"},{"key":"Content-Length","value":"30"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769334884\",\n    \"result\": 0\n}"}],"_postman_id":"cb085098-bb28-4a27-8e13-971b3b9fe4f8"},{"name":"GetServiceStatus","id":"9e7327ec-52b8-4920-a205-bc26094dda8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetServiceStatus?ImageID=/test.mp4","description":"<p>Check the status of the service.\n<strong>Credit:</strong> no credit is charged when using this method.\n<strong>Method applies to:</strong> image and video analysis.\nUse this method to check if a file is currently being analyzed.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ImageID</strong></td>\n<td>String</td>\n<td>The relative file name of the original image or video URL</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<p>Returns an Integer:</p>\n<ul>\n<li><code>0</code> - Idle</li>\n<li><code>1</code> - Busy</li>\n<li><code>2</code> - Analysis request accepted and is about to start.</li>\n</ul>\n","urlObject":{"path":["GetServiceStatus"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"ImageID","value":"/test.mp4"}],"variable":[]}},"response":[{"id":"f462a332-4c65-4ad0-9f45-05e437a01e23","name":"GetServiceStatus","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/GetServiceStatus?ImageID=/test.mp4","host":["https://service.feng-gui.com/json/api.ashx"],"path":["GetServiceStatus"],"query":[{"key":"ImageID","value":"/test.mp4"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 12:16:06 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"20"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": 0\n}"}],"_postman_id":"9e7327ec-52b8-4920-a205-bc26094dda8b"}],"id":"eea58631-c01e-43f8-9f51-5f865de56e3a","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6840bc98-92c2-4d27-9149-25ca8d7fdd5b","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"d7ad8c3f-fe6c-48bd-8f09-7ceca7c172e7","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"eea58631-c01e-43f8-9f51-5f865de56e3a","description":""}],"id":"75ae2cb4-d3da-432d-a206-f9d9384e9611","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"3943330e-a3d4-4a12-ad74-466142cf6897","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"748fabd5-9d68-4e36-83ec-c4e62ae8874e","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"75ae2cb4-d3da-432d-a206-f9d9384e9611","description":""},{"name":"Storage","item":[{"name":"Upload","item":[{"name":"ImageUpload","id":"c2666650-6e9c-41c9-ba26-87451bc35e74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"ImageUpload\",\"params\":{\"FileName\":\"test.png\",\"FileData\":\"BASE64_STRING_HERE\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Upload an image file to your account.\nThe file is uploaded into the root of the account folders.\n<strong>Credit:</strong> one credit is charged for a successful execution.\n<strong>Method applies to:</strong> image analysis.</p>\n<p><em>Performance Tip:</em> Instead of using this method, you can upload the file to your server and set the <code>ImageAttention.InputImage</code> parameter as the URL path of the file.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>FileName</strong></td>\n<td>String</td>\n<td>The name of the uploaded file. Allowed characters: a-z A-Z 0-9.</td>\n</tr>\n<tr>\n<td><strong>FileData</strong></td>\n<td>String</td>\n<td>The uploaded file encoded as base64 byte array.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2666650-6e9c-41c9-ba26-87451bc35e74"},{"name":"VideoUpload","id":"0c0d1f6e-b57c-4173-9d5c-0596cab9acff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"VideoUpload\",\"params\":{\"FileName\":\"test.mp4\",\"FileData\":\"BASE64_STRING_HERE\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Upload a video file to your account.\nThe file is uploaded into the root of the account folders.\n<strong>Credit:</strong> one credit is charged for every 10 seconds of video.\n<strong>Method applies to:</strong> video analysis.</p>\n<p><em>Performance Tip:</em> Instead of using this method, you can upload the file to your server and set the <code>VideoAttention.InputVideo</code> parameter as the URL path of the file.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>FileName</strong></td>\n<td>String</td>\n<td>The name of the uploaded file. Allowed characters: a-z A-Z 0-9.</td>\n</tr>\n<tr>\n<td><strong>FileData</strong></td>\n<td>String</td>\n<td>The uploaded file encoded as base64 byte array.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c0d1f6e-b57c-4173-9d5c-0596cab9acff"},{"name":"WebsiteCapture","id":"17ee390a-9098-437f-b602-3a548557a40d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"WebsiteCapture\",\"params\":{\"url\":\"https://www.google.com\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Capture a Website as an image and upload the image file to your account.\nThe file is uploaded into the root of the account folders.\n<strong>Credit:</strong> one credit is charged for a successful execution.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>url</strong></td>\n<td>String</td>\n<td>Address of a webpage to capture and upload the snapshot image to the service</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"de158d60-0384-4e17-be5a-8e9773f3ee91","name":"WebsiteCapture","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"WebsiteCapture\",\"params\":{\"url\":\"https://www.google.com\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 10:03:11 GMT"},{"key":"Content-Length","value":"71"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769335381\",\n    \"result\": \"e269808a-cc0f-43f9-a3c2-21600478d4a7.png\"\n}"}],"_postman_id":"17ee390a-9098-437f-b602-3a548557a40d"},{"name":"WebsiteCapture","id":"bdc215aa-cd9d-4ee7-8d17-239215be7897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/WebsiteCapture?url=https://www.google.com","description":"<p>Capture a Website as an image and upload the image file to your account.\nThe file is uploaded into the root of the account folders.\n<strong>Credit:</strong> one credit is charged for a successful execution.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>url</strong></td>\n<td>String</td>\n<td>Address of a webpage to capture and upload the snapshot image to the service</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["WebsiteCapture"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"url","value":"https://www.google.com"}],"variable":[]}},"response":[{"id":"4ac9b5f1-29dc-4a57-81d0-17fe2b25ab6d","name":"WebsiteCapture","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/WebsiteCapture?url=https://www.google.com","host":["https://service.feng-gui.com/json/api.ashx"],"path":["WebsiteCapture"],"query":[{"key":"url","value":"https://www.google.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Fri, 03 Apr 2026 12:06:45 GMT"},{"key":"Content-Length","value":"47"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": \"https---www.google.com.png\"\n}"}],"_postman_id":"bdc215aa-cd9d-4ee7-8d17-239215be7897"}],"id":"135e5f96-ee01-4bd0-8cb2-c5afac30c2d5","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"95fb0668-eecb-4106-a1cc-2cc6d9aad120","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"b4b1c56c-fc24-468f-829d-c90c661f980a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"135e5f96-ee01-4bd0-8cb2-c5afac30c2d5","description":""},{"name":"Manage","item":[{"name":"GetDirectories","id":"88595b1d-216d-49a7-9910-dda00ead72c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetDirectories\",\"params\":{\"VirtualSourcePath\":\"/\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Returns the names of the subdirectories in the specified directory.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualSourcePath</strong></td>\n<td>String</td>\n<td>The relative path to the directory to search (e.g., <code>/</code> or <code>/dir1/</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"fd5109fa-a3e7-4706-94f2-992396bc934e","name":"GetDirectories","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetDirectories\",\"params\":{\"VirtualSourcePath\":\"/\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 10:01:57 GMT"},{"key":"Content-Length","value":"44"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769335316\",\n    \"result\": [\n        \"dir1\",\n        \"dir2\"\n    ]\n}"}],"_postman_id":"88595b1d-216d-49a7-9910-dda00ead72c8"},{"name":"GetDirectories","id":"994c8474-c521-4354-95bb-68a6fbcd119a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetDirectories?VirtualSourcePath=/","description":"<p>Returns the names of the subdirectories in the specified directory.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualSourcePath</strong></td>\n<td>String</td>\n<td>The relative path to the directory to search (e.g., <code>/</code> or <code>/dir1/</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetDirectories"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"VirtualSourcePath","value":"/"}],"variable":[]}},"response":[{"id":"f38d797b-f45f-4136-b141-737d255f078c","name":"GetDirectories","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/GetDirectories?VirtualSourcePath=/","host":["https://service.feng-gui.com/json/api.ashx"],"path":["GetDirectories"],"query":[{"key":"VirtualSourcePath","value":"/"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 12:19:10 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"27"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\":[\n        \"dir1\"\n    ]\n}"}],"_postman_id":"994c8474-c521-4354-95bb-68a6fbcd119a"},{"name":"GetFiles","id":"ae20f92f-e90c-4bfe-8c06-29d6e4e18c9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetFiles\",\"params\":{\"VirtualSourcePath\":\"/\",\"Pattern\":\"*.png\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Returns the names of files that match the specified search pattern in the specified directory.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualSourcePath</strong></td>\n<td>String</td>\n<td>The relative path to the directory to search.</td>\n</tr>\n<tr>\n<td><strong>Pattern</strong></td>\n<td>String</td>\n<td>The search string to match against the names of files in path (e.g., <code>*.png</code>, <code>*.*</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"852cddb5-29a4-4cac-bc88-0956963e3f5e","name":"GetFiles","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"GetFiles\",\"params\":{\"VirtualSourcePath\":\"/\",\"Pattern\":\"*.png\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 10:02:14 GMT"},{"key":"Content-Length","value":"1177"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769335333\",\n    \"result\":[\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_fer.png\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_vthumb.png\",\n        \"test_heatmap.png\",\n        \"test_aoi.png\",\n        \"test_aes.png\",\n        \"test_gazeplot.png\",\n        \"test_opacity.png\",\n        \"test_raw_vf.png\",\n        \"test_raw.png\",\n        \"test_thumb.png\",\n        \"test.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_aes.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_aoi.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_heatmap.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_gazeplot.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_opacity.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_raw.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_raw_vf.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_thumb.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2.png\",\n        \"949509_aoi.png\",\n        \"949509_heatmap.png\",\n        \"949509_aes.png\",\n        \"949509_opacity.png\",\n        \"949509_gazeplot.png\",\n        \"949509_raw_vf.png\",\n        \"949509_raw.png\",\n        \"949509.png\",\n        \"949510_aes.png\",\n        \"949510_heatmap.png\",\n        \"949510_aoi.png\",\n        \"949510_gazeplot.png\",\n        \"949510_opacity.png\",\n        \"949510_raw.png\",\n        \"949510_raw_vf.png\",\n        \"949510.png\",\n        \"949510_thumb.png\",\n        \"949511_aoi.png\",\n        \"949511_gazeplot.png\",\n        \"949511_heatmap.png\",\n        \"949511_opacity.png\",\n        \"949511_thumb.png\",\n        \"949511.png\",\n        \"949511_aes.png\",\n        \"949509_thumb.png\"\n    ]\n}"}],"_postman_id":"ae20f92f-e90c-4bfe-8c06-29d6e4e18c9a"},{"name":"GetFiles","id":"5ec8d66a-985d-452b-aa97-53da12b15c7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/GetFiles?VirtualSourcePath=/&Pattern=*.*","description":"<p>Returns the names of files that match the specified search pattern in the specified directory.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualSourcePath</strong></td>\n<td>String</td>\n<td>The relative path to the directory to search.</td>\n</tr>\n<tr>\n<td><strong>Pattern</strong></td>\n<td>String</td>\n<td>The search string to match against the names of files in path (e.g., <code>*.png</code>, <code>*.*</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetFiles"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"VirtualSourcePath","value":"/"},{"key":"Pattern","value":"*.*"}],"variable":[]}},"response":[{"id":"9fea60a4-b335-4d28-8828-becc9c31dd69","name":"GetFiles","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/GetFiles?VirtualSourcePath=/&Pattern=*.*","host":["https://service.feng-gui.com/json/api.ashx"],"path":["GetFiles"],"query":[{"key":"VirtualSourcePath","value":"/"},{"key":"Pattern","value":"*.*"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 12:19:29 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"5101"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\":[\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_msgs.txt\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_aoi.csv\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_thumb.png\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_info.txt\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_opacity.png\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec.png\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_aoi.png\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_gazeplot.png\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_heatmap.png\",\n        \"4dcf83a4-e972-4f80-b7c2-0d47946506ec_aes.png\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_gazeplot.mp4\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_opacity.mp4\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_fer.png\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_fer.mp4\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_heatmap.mp4\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_fer.json\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_gazedata.csv\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_info.txt\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_msgs.txt\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_aoi.csv\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_vthumb.png\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471.mp4\",\n        \"bf4a6c90-ea93-4ca9-ae33-5b32daee8471_media.txt\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_info.txt\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_heatmap.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_aoi.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_aes.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_aoi.csv\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_opacity.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_raw.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_gazedata.csv\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_gazeplot.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_raw_vf.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f.png\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_msgs.txt\",\n        \"b2171aaf-d483-4042-8a47-fccff8829d0f_thumb.png\",\n        \"test.pdf\",\n        \"test_aoi.csv\",\n        \"test_info.txt\",\n        \"test_heatmap.png\",\n        \"test_aoi.png\",\n        \"test_aes.png\",\n        \"test_opacity.png\",\n        \"test_gazeplot.png\",\n        \"test_raw_vf.png\",\n        \"test_raw.png\",\n        \"test_gazedata.csv\",\n        \"test_thumb.png\",\n        \"test.png\",\n        \"test_msgs.txt\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_heatmap.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_info.txt\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_aoi.csv\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_aes.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_aoi.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_opacity.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_gazedata.csv\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_gazeplot.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_raw.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_raw_vf.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe.png\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_msgs.txt\",\n        \"d5a5cc0e-7a51-414a-972b-520fc770aafe_thumb.png\",\n        \"949511_aoi.png\",\n        \"949511_info.txt\",\n        \"949511_aoi.csv\",\n        \"949511_heatmap.png\",\n        \"949511_aes.png\",\n        \"949511_gazeplot.png\",\n        \"949511_opacity.png\",\n        \"949511_raw.png\",\n        \"949511_gazedata.csv\",\n        \"949511_raw_vf.png\",\n        \"949511.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_aoi.csv\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_info.txt\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_info.txt\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_thumb.png\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_aoi.csv\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_msgs.txt\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_aes.png\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7.png\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_opacity.png\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_heatmap.png\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_gazeplot.png\",\n        \"e269808a-cc0f-43f9-a3c2-21600478d4a7_aoi.png\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_gazeplot.mp4\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_opacity.mp4\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_heatmap.mp4\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_fer.mp4\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_fer.png\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_gazedata.csv\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_fer.json\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_info.txt\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42.mp4\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_aoi.csv\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_media.txt\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_msgs.txt\",\n        \"6122d1ec-d9e6-451a-9462-0e907c056f42_vthumb.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_heatmap.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_aes.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_aoi.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_opacity.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_gazeplot.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_gazedata.csv\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_raw_vf.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_raw.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2.png\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_msgs.txt\",\n        \"74a4b8e5-feba-4ae7-aeac-a840b7bb32e2_thumb.png\",\n        \"949509_info.txt\",\n        \"949509_heatmap.png\",\n        \"949509_aoi.png\",\n        \"949509_aoi.csv\",\n        \"949509_aes.png\",\n        \"949509_opacity.png\",\n        \"949509_gazeplot.png\",\n        \"949509_raw_vf.png\",\n        \"949509_raw.png\",\n        \"949509_gazedata.csv\",\n        \"949509.png\",\n        \"949510_info.txt\",\n        \"949510_heatmap.png\",\n        \"949510_aoi.png\",\n        \"949510_aoi.csv\",\n        \"949510_aes.png\",\n        \"949510_opacity.png\",\n        \"949510_gazeplot.png\",\n        \"949510_raw.png\",\n        \"949510_gazedata.csv\",\n        \"949510_raw_vf.png\",\n        \"949510.png\",\n        \"949510_msgs.txt\",\n        \"949510_thumb.png\",\n        \"949511_thumb.png\",\n        \"949511_msgs.txt\",\n        \"949509_msgs.txt\",\n        \"949509_thumb.png\"\n    ]\n}"}],"_postman_id":"5ec8d66a-985d-452b-aa97-53da12b15c7f"},{"name":"DeleteDirectory","id":"2f606a37-3ed2-497c-ba42-cfc6a279bb13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"DeleteDirectory\",\"params\":{\"VirtualDestPath\":\"/dir2\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Delete a directory and all its files and their related report files.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualDestPath</strong></td>\n<td>String</td>\n<td>The relative directory to delete (e.g., <code>/dirA</code> or <code>/dirA/dirB</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"ff551a2c-d680-4131-8604-fac5d3ef8c84","name":"DeleteDirectory","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"DeleteDirectory\",\"params\":{\"VirtualDestPath\":\"/dir2\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 10:02:33 GMT"},{"key":"Content-Length","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769335352\",\n    \"result\": null\n}"}],"_postman_id":"2f606a37-3ed2-497c-ba42-cfc6a279bb13"},{"name":"DeleteDirectory","id":"8758d11e-bc55-464a-b9a1-1acc601153e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/DeleteDirectory?VirtualDestPath=/dir2","description":"<p>Delete a directory and all its files and their related report files.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualDestPath</strong></td>\n<td>String</td>\n<td>The relative directory to delete (e.g., <code>/dirA</code> or <code>/dirA/dirB</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["DeleteDirectory"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"VirtualDestPath","value":"/dir2"}],"variable":[]}},"response":[{"id":"41df3ff7-1a75-4860-be33-0e5534058244","name":"DeleteDirectory","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/DeleteDirectory?VirtualDestPath=/dir2","host":["https://service.feng-gui.com/json/api.ashx"],"path":["DeleteDirectory"],"query":[{"key":"VirtualDestPath","value":"/dir2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Fri, 03 Apr 2026 12:08:14 GMT"},{"key":"Content-Length","value":"23"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": null\n}"}],"_postman_id":"8758d11e-bc55-464a-b9a1-1acc601153e5"},{"name":"DeleteFile","id":"b716e252-ae70-43ab-8a70-ed0474e7facf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"DeleteFile\",\"params\":{\"VirtualDestPath\":\"/test.png\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx","description":"<p>Delete a file and all its related report files.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualDestPath</strong></td>\n<td>String</td>\n<td>The file to delete (e.g., <code>/test.png</code> or <code>/dirA/filename.png</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"host":["https://service.feng-gui.com/json/api.ashx"],"query":[],"variable":[]}},"response":[{"id":"225eb108-62a0-4b47-a6ba-5b9a952adf30","name":"DeleteFile","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"method\":\"DeleteFile\",\"params\":{\"VirtualDestPath\":\"/test.png\"},\"id\":\"1776207215\"}","options":{"raw":{"language":"json"}}},"url":"https://service.feng-gui.com/json/api.ashx"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 25 Jan 2026 10:02:46 GMT"},{"key":"Content-Length","value":"33"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1769335366\",\n    \"result\": null\n}"}],"_postman_id":"b716e252-ae70-43ab-8a70-ed0474e7facf"},{"name":"DeleteFile","id":"b2118681-192c-4ca6-bce2-e8c872fc8fb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-Key"},{"key":"value","value":"YOUR_API_KEY"}]},"isInherited":false},"method":"GET","header":[],"url":"https://service.feng-gui.com/json/api.ashx/DeleteFile?VirtualDestPath=/test.png","description":"<p>Delete a file and all its related report files.\n<strong>Credit:</strong> no credit is charged when using this method.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>VirtualDestPath</strong></td>\n<td>String</td>\n<td>The file to delete (e.g., <code>/test.png</code> or <code>/dirA/filename.png</code>).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["DeleteFile"],"host":["https://service.feng-gui.com/json/api.ashx"],"query":[{"key":"VirtualDestPath","value":"/test.png"}],"variable":[]}},"response":[{"id":"bf718587-2c5b-43af-bfc3-443cb7712eac","name":"DeleteFile","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"X-API-Key","value":"<API Key>"}],"url":{"raw":"https://service.feng-gui.com/json/api.ashx/DeleteFile?VirtualDestPath=/test.png","host":["https://service.feng-gui.com/json/api.ashx"],"path":["DeleteFile"],"query":[{"key":"VirtualDestPath","value":"/test.png"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"description":{"content":"","type":"text/plain"},"key":"Cache-Control","value":"private"},{"description":{"content":"","type":"text/plain"},"key":"Server","value":"Microsoft-IIS/10.0"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Origin","value":"*"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, X-Token, Authorization, X-JSON-RPC"},{"description":{"content":"","type":"text/plain"},"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS"},{"description":{"content":"","type":"text/plain"},"key":"Date","value":"Sat, 31 Jan 2026 12:20:21 GMT"},{"description":{"content":"","type":"text/plain"},"key":"Content-Length","value":"23"},{"key":"Content-Type","value":"application/json; charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": -1,\n    \"result\": null\n}"}],"_postman_id":"b2118681-192c-4ca6-bce2-e8c872fc8fb6"}],"id":"ce93186b-904c-4422-86f4-ddc7963727c8","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"11e459ae-bef2-4a13-b57d-f5ef3ec4e76d","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"6246bfc3-3ecd-4af4-b2d2-e85c5bf5fafe","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"ce93186b-904c-4422-86f4-ddc7963727c8","description":""}],"id":"9b5b1c42-9737-4482-8e1c-9c7d781f2def","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"247b7956-d284-4208-a431-162b60193f2c","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"bf59a260-38bd-4e41-ba96-034703221703","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"9b5b1c42-9737-4482-8e1c-9c7d781f2def","description":""}],"event":[{"listen":"prerequest","script":{"id":"bb03e195-4bde-4d94-9f92-89a8e82725f2","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"4e3c7739-1562-4248-8315-f2dd991ae6e6","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://service.feng-gui.com/json/api.ashx","type":"any"},{"key":"username","value":"YOUR_USERNAME","type":"any"},{"key":"password","value":"YOUR_API_KEY","type":"any"}]}