{"id":286,"date":"2024-07-13T12:06:52","date_gmt":"2024-07-13T12:06:52","guid":{"rendered":"https:\/\/microsaas.art\/blog\/?p=286"},"modified":"2024-07-13T12:06:53","modified_gmt":"2024-07-13T12:06:53","slug":"most-important-statistics","status":"publish","type":"post","link":"https:\/\/microsaas.art\/blog\/most-important-statistics\/","title":{"rendered":"What are the Most Important Statistics in Micro SaaS?"},"content":{"rendered":"\n<p>You have a <strong>micro SaaS<\/strong>. You have added many analysis tools. Some tools you even built yourself. But if you miss the <strong>most important statistics<\/strong>, can be disastrous.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>So what are these statistics? Which tools can we use to find them? Or how do we make this tool ourselves, what <a href=\"https:\/\/microsaas.art\/blog\/i-explain-the-golden-formula-for-getting-clicks\/\" target=\"_blank\" rel=\"noreferrer noopener\">formulas<\/a>, what algorithms do we use to make the tool? Let&#8217;s get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Most Important Statistic List for Micro SaaS<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Most Important Statistics: Growth Rate<\/h3>\n\n\n\n<p>It&#8217;s been 6 months since you launched your <strong>micro SaaS<\/strong>. So what is the growth rate? What does growth rate mean?<\/p>\n\n\n\n<p>A growth rate is the percentage increase of data added to an existing value at regular intervals. My base here is the number of members. How much does the number of members increase? Do you get 10 members a day? And how many members come in a month? And how do we calculate the rate?<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Growth Rate Formula<\/h4>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Growth Rate = (Final Value \/ Start Value) * 100<\/p>\n<\/blockquote>\n\n\n\n<h5 class=\"wp-block-heading\">Let&#8217;s take this as an example:<\/h5>\n\n\n\n<p>You have 4200 members. Every day 10 people become members. To calculate your monthly growth rate, we first need to find out how many people should become members per month.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Step 1:<\/h6>\n\n\n\n<p>Number of daily memberships * Number of days of the month i.e. 30 =<br>10*30=300 new members per month. The number of new members per month is our final value.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Step 2:<\/h6>\n\n\n\n<p>Divide the final value by the number of your current members.<br>300\/4200=0.0714285714285714<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Step 3:<\/h6>\n\n\n\n<p>We multiply the result by 100 to form a percentage.<br>0.0714285714285714*100=7.142857142857143<br>If we round up the result, we get a growth rate of 7.14%.<\/p>\n\n\n\n<p>I have converted this into SQL code for you. When you run this code you can see your monthly growth rate.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-sql\" data-lang=\"SQL\"><code>SELECT \n    ((SELECT COUNT(*) \/ 30 AS daily_average FROM users WHERE created_at &gt;= DATE_SUB(CURDATE(), INTERVAL 30 DAY)) * 30) \/ (COUNT(*)) * 100 AS sonuc\nFROM \n    users;<\/code><\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2. Most Important Statistics: Number of Active Users<\/h3>\n\n\n\n<p>The easiest way to learn this is to add a column named &#8220;<em>login_number<\/em>&#8221; to your members table in your database. Each time a member logs in, increase the number here by <strong>+1<\/strong>. In this way, you can see its activity.<\/p>\n\n\n\n<p>For more advanced statistics, you can also add a timestamp to the &#8220;loginlogs&#8221; table every time a member logs in. In this way, you can find out which days are logged in or which hours are active.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Most Important Statistics: Conversion Rate<\/h3>\n\n\n\n<p>The conversion rate is the calculation of the rate at which new members subscribe. We will do the same process here as we did above. But this time we have a condition. It must also include paid members!<\/p>\n\n\n\n<p>Suppose there is a Confirmation column. If the contents of this column are &#8220;0&#8221;, let&#8217;s assume that they are regular members. Then we can extract the following code if we want to include those who are not &#8220;0&#8221;.<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-sql\" data-lang=\"SQL\"><code>SELECT \n    ((SELECT COUNT(*) \/ 30 AS daily_average FROM users WHERE confirmation != 0 and created_at &gt;= DATE_SUB(CURDATE(), INTERVAL 30 DAY)) * 30) \/ (COUNT(*)) * 100 AS sonuc\nFROM \n    users;<\/code><\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">4. Most Important Statistics: Retention Rate<\/h3>\n\n\n\n<p>Retention is the rate at which your members or subscribers, or perhaps your employees, choose you or your product. The longer you keep a customer, the more effective your work will be.<\/p>\n\n\n\n<p>When calculating the retention rate, we first need to find the number of customers\/members\/employees remaining at the end of the period. To do this, you first need to subtract the total number of subscribers at the beginning of the period from the subscribers who canceled their subscriptions during the period. We have reached the number of your actual subscribers remaining at the end of the period.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>(Total number of subscribers at the beginning of the period) &#8211; (number of subscribers who left during the period) = (number of subscribers remaining at the end of the period)<\/p>\n<\/blockquote>\n\n\n\n<p>You should now divide the number of subscribers remaining at the end of the period by the total number of subscribers. We now have the retention percentage. This result is a decimal number. If you multiply the result by 100, you will calculate it as a percentage.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>(Number of remaining subscribers) \u00f7 (total number of subscribers) = (retention percentage)<br>(retention percentage) * 100 = (retention rate)<\/p>\n<\/blockquote>\n\n\n\n<p><strong>Let me write the retention rate as SQL code:<\/strong><\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-sql\" data-lang=\"SQL\"><code>SET @periodSubscribers = (SELECT COUNT(*)\n                         FROM users\n                         WHERE conf != 0\n                         AND created_at &gt;= DATE_SUB(CURDATE(), INTERVAL 3 MONTH));\n\nSET @lostSubscribers = 27;\n\nSET @totalSubscribers = (SELECT COUNT(*)\n                        FROM users\n                        WHERE conf != 0);\n\nSET @remainingSubscribers = @periodSubscribers - @lostSubscribers;\n\nSELECT (@remainingSubscribers - @totalSubscribers) * 100 AS resultSubscribers;<\/code><\/pre><\/div>\n\n\n\n<p>Here you need to look at the payment channel you use for <strong>lostSubscribers<\/strong>. Here&#8217;s how to look for it in <a href=\"https:\/\/lemonsqueezy.com?ref=microsaas.art\" target=\"_blank\" rel=\"noreferrer noopener\">LemonSqueezy<\/a> as an example.<\/p>\n\n\n\n<p>From LemonSqueezy, under the chart on the Subscriptions page from the Store menu, there is <em>&#8220;Status: All Subscriptions&#8221;.<\/em> Click here and select <em>&#8220;Past due&#8221;, &#8220;Expired&#8221;, &#8220;Unpaid&#8221;, &#8220;Cancelled&#8221;, and &#8220;Paused&#8221;<\/em> in order. Each time you select, you should click on the date option above and list it as the last 3 months. When you look at these 5 options, add the total number with &#8220;xxx results&#8221; at the bottom of the page for each page.<\/p>\n\n\n\n<p>So <em><strong>total Past due + total Expired + total Unpaid + total Cancelled + total Paused<\/strong> = number of lost subscribers.<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Most Important Statistics: Churn Rate<\/h3>\n\n\n\n<p>Churn means a lost user. They come and sign up, then cancel their membership and leave. One of the worst things about churn is members who disappear without giving any reason and without deleting their accounts. Since there is no member activity, it makes it difficult to calculate churn.<\/p>\n\n\n\n<p>Users who do not delete their accounts and disappear are called <em>&#8220;ghost members&#8221;<\/em> or <em>&#8220;ghost users&#8221;<\/em>. There is a possibility that these ghosts can be reactivated by sending an extra email.<\/p>\n\n\n\n<p>The easiest way to understand these one-offs is the number &#8220;2&#8221; in &#8220;login_number&#8221; in the &#8220;<em>users<\/em>&#8221; table. &#8220;1&#8221; works when you log in for the first time. But &#8220;2&#8221; or above indicates that you have logged in more than once.<\/p>\n\n\n\n<p>This alone is not informative enough. If you open a table called &#8220;<em>userlogs<\/em>&#8221; and record the user&#8217;s movements or open a table called &#8220;<em>userloginlogs<\/em>&#8221; and record at least when the user logged in, then you can get stronger results!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.<\/p>\n","protected":false},"author":1,"featured_media":302,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[12],"tags":[42,116,113,114,25,26,112,115,117],"class_list":["post-286","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technical-issues","tag-churn-rate","tag-conversion-rate","tag-growth-rate","tag-growth-rate-formula","tag-micro-saas","tag-microsaas","tag-most-important-statistics","tag-number-of-active-users","tag-retention-rate"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What are the Most Important Statistics in Micro SaaS? - MicroSaaS Art<\/title>\n<meta name=\"description\" content=\"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are the Most Important Statistics in Micro SaaS?\" \/>\n<meta property=\"og:description\" content=\"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\" \/>\n<meta property=\"og:site_name\" content=\"MicroSaaS Art\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-13T12:06:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-13T12:06:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"ugur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"What are the Most Important Statistics in Micro SaaS?\" \/>\n<meta name=\"twitter:description\" content=\"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ugur\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\"},\"author\":{\"name\":\"ugur\",\"@id\":\"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b\"},\"headline\":\"What are the Most Important Statistics in Micro SaaS?\",\"datePublished\":\"2024-07-13T12:06:52+00:00\",\"dateModified\":\"2024-07-13T12:06:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\"},\"wordCount\":924,\"publisher\":{\"@id\":\"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b\"},\"image\":{\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png\",\"keywords\":[\"churn rate\",\"conversion rate\",\"growth rate\",\"growth rate formula\",\"micro saas\",\"microsaas\",\"Most Important Statistics\",\"number of active users\",\"retention rate\"],\"articleSection\":[\"Technical Issues\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\",\"url\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\",\"name\":\"What are the Most Important Statistics in Micro SaaS? - MicroSaaS Art\",\"isPartOf\":{\"@id\":\"https:\/\/microsaas.art\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png\",\"datePublished\":\"2024-07-13T12:06:52+00:00\",\"dateModified\":\"2024-07-13T12:06:53+00:00\",\"description\":\"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.\",\"breadcrumb\":{\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/microsaas.art\/blog\/most-important-statistics\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage\",\"url\":\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png\",\"contentUrl\":\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png\",\"width\":1280,\"height\":720,\"caption\":\"Micro SaaS most important statistics\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/microsaas.art\/blog\/most-important-statistics\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/microsaas.art\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What are the Most Important Statistics in Micro SaaS?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/microsaas.art\/blog\/#website\",\"url\":\"https:\/\/microsaas.art\/blog\/\",\"name\":\"MicroSaaS Art\",\"description\":\"Learn about Micro-SaaS in depth!\",\"publisher\":{\"@id\":\"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/microsaas.art\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b\",\"name\":\"ugur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/microsaas.art\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2023\/09\/ugur.jpg\",\"contentUrl\":\"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2023\/09\/ugur.jpg\",\"width\":400,\"height\":400,\"caption\":\"ugur\"},\"logo\":{\"@id\":\"https:\/\/microsaas.art\/blog\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/microsaas.art\/blog\"],\"url\":\"https:\/\/microsaas.art\/blog\/author\/ugur\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What are the Most Important Statistics in Micro SaaS? - MicroSaaS Art","description":"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.","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:\/\/microsaas.art\/blog\/most-important-statistics\/","og_locale":"en_US","og_type":"article","og_title":"What are the Most Important Statistics in Micro SaaS?","og_description":"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.","og_url":"https:\/\/microsaas.art\/blog\/most-important-statistics\/","og_site_name":"MicroSaaS Art","article_published_time":"2024-07-13T12:06:52+00:00","article_modified_time":"2024-07-13T12:06:53+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","type":"image\/png"}],"author":"ugur","twitter_card":"summary_large_image","twitter_title":"What are the Most Important Statistics in Micro SaaS?","twitter_description":"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.","twitter_image":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","twitter_misc":{"Written by":"ugur","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#article","isPartOf":{"@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/"},"author":{"name":"ugur","@id":"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b"},"headline":"What are the Most Important Statistics in Micro SaaS?","datePublished":"2024-07-13T12:06:52+00:00","dateModified":"2024-07-13T12:06:53+00:00","mainEntityOfPage":{"@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/"},"wordCount":924,"publisher":{"@id":"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b"},"image":{"@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage"},"thumbnailUrl":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","keywords":["churn rate","conversion rate","growth rate","growth rate formula","micro saas","microsaas","Most Important Statistics","number of active users","retention rate"],"articleSection":["Technical Issues"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/","url":"https:\/\/microsaas.art\/blog\/most-important-statistics\/","name":"What are the Most Important Statistics in Micro SaaS? - MicroSaaS Art","isPartOf":{"@id":"https:\/\/microsaas.art\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage"},"image":{"@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage"},"thumbnailUrl":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","datePublished":"2024-07-13T12:06:52+00:00","dateModified":"2024-07-13T12:06:53+00:00","description":"You have a micro SaaS. You have added many analysis tools. But if you miss the most important statistics, the consequences can be disastrous.","breadcrumb":{"@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/microsaas.art\/blog\/most-important-statistics\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#primaryimage","url":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","contentUrl":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","width":1280,"height":720,"caption":"Micro SaaS most important statistics"},{"@type":"BreadcrumbList","@id":"https:\/\/microsaas.art\/blog\/most-important-statistics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/microsaas.art\/blog\/"},{"@type":"ListItem","position":2,"name":"What are the Most Important Statistics in Micro SaaS?"}]},{"@type":"WebSite","@id":"https:\/\/microsaas.art\/blog\/#website","url":"https:\/\/microsaas.art\/blog\/","name":"MicroSaaS Art","description":"Learn about Micro-SaaS in depth!","publisher":{"@id":"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/microsaas.art\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/microsaas.art\/blog\/#\/schema\/person\/9eb9ea58458a3dc0406379fb6a81c80b","name":"ugur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/microsaas.art\/blog\/#\/schema\/person\/image\/","url":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2023\/09\/ugur.jpg","contentUrl":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2023\/09\/ugur.jpg","width":400,"height":400,"caption":"ugur"},"logo":{"@id":"https:\/\/microsaas.art\/blog\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/microsaas.art\/blog"],"url":"https:\/\/microsaas.art\/blog\/author\/ugur\/"}]}},"jetpack_featured_media_url":"https:\/\/microsaas.art\/blog\/wp-content\/uploads\/2024\/07\/most-important-statistics.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/posts\/286","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/comments?post=286"}],"version-history":[{"count":8,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/posts\/286\/revisions"}],"predecessor-version":[{"id":304,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/posts\/286\/revisions\/304"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/media\/302"}],"wp:attachment":[{"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/media?parent=286"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/categories?post=286"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/microsaas.art\/blog\/wp-json\/wp\/v2\/tags?post=286"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}