{"id":3997,"date":"2026-08-08T04:07:46","date_gmt":"2026-08-08T04:07:46","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=3997"},"modified":"2026-08-08T04:07:50","modified_gmt":"2026-08-08T04:07:50","slug":"retrieve-cpanel-account-statistics-using-uapi","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/","title":{"rendered":"Retrieve cPanel Account Statistics Using UAPI"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>This document explains how to retrieve cPanel account statistics using the <strong>UAPI<\/strong> command-line interface. The <code>StatsBar::get_stats<\/code> API allows administrators to obtain usage information such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-black-color has-text-color has-link-color wp-elements-136b4b7a4df522f2e3e8abac3c635134\">Monthly Bandwidth Transfer<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-00046c06ca2a86f97dc990c896d4aaf0\">Disk Space Usage<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-f75a01a423ae0af01bcc1743ac21ff78\">Email usage<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-f34efc64abb5beeb765f24d467bb7026\">Database usage<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-14ed87f838feecd1056a21a79f98724f\">Other cPanel account statistics<\/li>\n<\/ul>\n\n\n\n<p>In this example, we retrieve only the <strong>bandwidth usage<\/strong> and <strong>disk space usage<\/strong> for a cPanel account.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Prerequisites<\/h1>\n\n\n\n<p>Before running the command, ensure the following requirements are met:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-black-color has-text-color has-link-color wp-elements-ed3f184baaa96fa737cbdd8aa0e055ad\">Root SSH access to the cPanel server.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-9ed0f1d4e9a3b0886ca49daf902cc87b\">WHM\/cPanel installed.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-93cf352261fde98ff011ad0031ae5e6d\">The target cPanel account exists.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-42b137f24933297d81b425c32bad7498\">The <code>uapi<\/code> command is available.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-f1f1d4ca320e663e21edf67de5013d77\">Sufficient privileges to execute UAPI commands for the target account.<\/li>\n<\/ul>\n\n\n\n<p>Verify the UAPI command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ which uapi\n<\/code><\/pre>\n\n\n\n<p>Example output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ \/usr\/bin\/uapi<\/code><\/pre>\n\n\n\n<p>Reference Links:<\/p>\n\n<p>\n    <a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/02\/13\/how-to-check-cpanel-user-resource-usage-using-uapi\/\" target=\"_blank\" rel=\"noopener\">\n        How to check cPanel User Resource Usage using UAPI\n    <\/a>\n<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Command Syntax<\/h1>\n\n\n\n<pre class=\"wp-block-code\"><code>$ uapi --output=jsonpretty --user=&lt;cpanel user name &gt; StatsBar get_stats display='bandwidthusage|diskusage'<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Example<\/h1>\n\n\n\n<p>Suppose the cPanel account username is <strong>example<\/strong>.<\/p>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ uapi --output=jsonpretty --user=example StatsBar get_stats display='bandwidthusage|diskusage'<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Example Output<\/h1>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"apiversion\": 3,\n  \"func\": \"get_stats\",\n  \"module\": \"StatsBar\",\n  \"result\": {\n    \"data\": &#91;\n      {\n        \"item\": \"Monthly Bandwidth Transfer\",\n        \"id\": \"bandwidthusage\",\n        \"count\": \"6.73 GB\",\n        \"max\": \"unlimited\",\n        \"percent\": 0\n      },\n      {\n        \"item\": \"Disk Space Usage\",\n        \"id\": \"diskusage\",\n        \"count\": \"78.71 GB\",\n        \"max\": \"unlimited\",\n        \"percent\": 0\n      }\n    ],\n    \"status\": 1\n  }\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Expected Result<\/h1>\n\n\n\n<p>A successful execution returns:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-black-color has-text-color has-link-color wp-elements-1db0445b7f102706fec6f775323e4246\">Current monthly bandwidth usage.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-ba01e3dde8d16a3d5b1da6b18ff1391b\">Current disk space usage.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-c53bc2960da6c82c3f8c079f80aa0ea8\">Quota information (or <code>unlimited<\/code> if no quota is configured).<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-6c7f8f5b7ce1a9d4e0cf286ac962388e\">JSON output suitable for automation and scripting.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Common Use Cases<\/h1>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-black-color has-text-color has-link-color wp-elements-c7cab1c0a5792032aa2f3800fdd24f35\">Monitor customer resource usage.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-078d2916faa86821407330441abbd605\">Integrate account statistics into monitoring scripts.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-a2ba92479515c56debff64a5e090c284\">Generate hosting usage reports.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-8503053a69a315c61e13b9438e8f92e1\">Validate disk usage before migrations.<\/li>\n\n\n\n<li class=\"has-black-color has-text-color has-link-color wp-elements-e6f809a4c7c19b63cdf5f6c2003382a1\">Check bandwidth consumption for hosted websites.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Conclusion<\/h1>\n\n\n\n<p>The <code>StatsBar::get_stats<\/code> UAPI function provides a simple and efficient way to retrieve cPanel account resource statistics from the command line. By specifying the desired statistics using the <code>display<\/code> parameter, administrators can obtain structured JSON output that is easy to read, automate, and integrate into monitoring or reporting workflows. This method is particularly useful for auditing account usage, tracking resource consumption, and supporting operational tasks such as capacity planning and migrations.<\/p>\n\n\n\n<p>Related Articles:<\/p>\n\n<p>\n    <a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2024\/08\/29\/how-to-create-a-database-user-in-cpanel-via-cli-using-the-uapi-tool\/\" target=\"_blank\" rel=\"noopener\">\n        How to create a database user in cpanel via cli using the uapi tool\n    <\/a>\n<\/p>\n\n<p>\n    <a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2024\/07\/23\/how-to-create-db-user-and-password-and-give-privileges-in-cpanel-using-uapi-in-terminal\/\" target=\"_blank\" rel=\"noopener\">\n        How to create db user and password and give privileges in cpanel using uapi in terminal\n    <\/a>\n<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction This document explains how to retrieve cPanel account statistics using the UAPI command-line interface. The StatsBar::get_stats API allows administrators to obtain usage information such as: In this example, we retrieve only the bandwidth usage and disk space usage for a cPanel account. Prerequisites Before running the command, ensure the following requirements are met: Verify ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[33],"tags":[],"class_list":["post-3997","post","type-post","status-publish","format-standard","hentry","category-whm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Retrieve cPanel Account Statistics Using UAPI - PheonixSolutions Knowledge-Base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Retrieve cPanel Account Statistics Using UAPI - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Introduction This document explains how to retrieve cPanel account statistics using the UAPI command-line interface. The StatsBar::get_stats API allows administrators to obtain usage information such as: In this example, we retrieve only the bandwidth usage and disk space usage for a cPanel account. Prerequisites Before running the command, ensure the following requirements are met: Verify ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-08T04:07:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-08T04:07:50+00:00\" \/>\n<meta name=\"author\" content=\"srisanthosh s\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"srisanthosh s\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/\"},\"author\":{\"name\":\"srisanthosh s\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/070895e04bc57565b04d6106e4da129c\"},\"headline\":\"Retrieve cPanel Account Statistics Using UAPI\",\"datePublished\":\"2026-08-08T04:07:46+00:00\",\"dateModified\":\"2026-08-08T04:07:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/\"},\"wordCount\":290,\"commentCount\":0,\"articleSection\":[\"WHM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/\",\"name\":\"Retrieve cPanel Account Statistics Using UAPI - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"datePublished\":\"2026-08-08T04:07:46+00:00\",\"dateModified\":\"2026-08-08T04:07:50+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/070895e04bc57565b04d6106e4da129c\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2026\\\/08\\\/08\\\/retrieve-cpanel-account-statistics-using-uapi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Retrieve cPanel Account Statistics Using UAPI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\",\"name\":\"PheonixSolutions Knowledge-Base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/070895e04bc57565b04d6106e4da129c\",\"name\":\"srisanthosh s\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6aaff236b178a614b2cfa9b0388af65e26cb08bb19608a622574904d2765036d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6aaff236b178a614b2cfa9b0388af65e26cb08bb19608a622574904d2765036d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6aaff236b178a614b2cfa9b0388af65e26cb08bb19608a622574904d2765036d?s=96&d=mm&r=g\",\"caption\":\"srisanthosh s\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/author\\\/srisanthosh\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Retrieve cPanel Account Statistics Using UAPI - PheonixSolutions Knowledge-Base","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/","og_locale":"en_US","og_type":"article","og_title":"Retrieve cPanel Account Statistics Using UAPI - PheonixSolutions Knowledge-Base","og_description":"Introduction This document explains how to retrieve cPanel account statistics using the UAPI command-line interface. The StatsBar::get_stats API allows administrators to obtain usage information such as: In this example, we retrieve only the bandwidth usage and disk space usage for a cPanel account. Prerequisites Before running the command, ensure the following requirements are met: Verify ..Read more","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2026-08-08T04:07:46+00:00","article_modified_time":"2026-08-08T04:07:50+00:00","author":"srisanthosh s","twitter_card":"summary_large_image","twitter_misc":{"Written by":"srisanthosh s","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/"},"author":{"name":"srisanthosh s","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/070895e04bc57565b04d6106e4da129c"},"headline":"Retrieve cPanel Account Statistics Using UAPI","datePublished":"2026-08-08T04:07:46+00:00","dateModified":"2026-08-08T04:07:50+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/"},"wordCount":290,"commentCount":0,"articleSection":["WHM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/","name":"Retrieve cPanel Account Statistics Using UAPI - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"datePublished":"2026-08-08T04:07:46+00:00","dateModified":"2026-08-08T04:07:50+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/070895e04bc57565b04d6106e4da129c"},"breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2026\/08\/08\/retrieve-cpanel-account-statistics-using-uapi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"Retrieve cPanel Account Statistics Using UAPI"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/","name":"PheonixSolutions Knowledge-Base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/knowledge-base\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/070895e04bc57565b04d6106e4da129c","name":"srisanthosh s","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6aaff236b178a614b2cfa9b0388af65e26cb08bb19608a622574904d2765036d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6aaff236b178a614b2cfa9b0388af65e26cb08bb19608a622574904d2765036d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6aaff236b178a614b2cfa9b0388af65e26cb08bb19608a622574904d2765036d?s=96&d=mm&r=g","caption":"srisanthosh s"},"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/author\/srisanthosh\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/3997","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=3997"}],"version-history":[{"count":9,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/3997\/revisions"}],"predecessor-version":[{"id":4007,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/3997\/revisions\/4007"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=3997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=3997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=3997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}