{"id":240,"date":"2025-08-20T11:53:58","date_gmt":"2025-08-20T06:23:58","guid":{"rendered":"https:\/\/fixmystore.com\/hub\/?page_id=240"},"modified":"2025-08-20T11:53:59","modified_gmt":"2025-08-20T06:23:59","slug":"shopify-break-even-calculator","status":"publish","type":"page","link":"https:\/\/fixmystore.com\/hub\/free-tools\/shopify-break-even-calculator\/","title":{"rendered":"Shopify Break Even Calculator"},"content":{"rendered":"\n<div class=\"wp-block-uagb-container uagb-block-lwzqnnd9 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-info-box uagb-block-a0yw9pnt uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title-prefix\">FREE TOOLS<\/p><h1 class=\"uagb-ifb-title\">Shopify Break Even Calculator<\/h1><\/div><p class=\"uagb-ifb-desc\">The break even calculator helps you quickly figure out how many sales you need to cover your costs. Enter your product cost, selling price, and fixed expenses to instantly see your break even point.<\/p><\/div><\/div>\n\n\n\n<!-- FixMyStore - Centered Broken Link Checker (HTML only, with proxy fallback) -->\n<style>\n  .fms-tool { max-width:820px; margin:40px auto; text-align:center; background:transparent; }\n  .fms-row { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; align-items:center; }\n  .fms-input { padding:10px 12px; font-size:15px; width:60%; max-width:420px; border:1px solid #ccc; border-radius:6px; }\n  .fms-btn { background:#000; color:#fff; border:none; padding:10px 18px; cursor:pointer; border-radius:6px; font-size:15px; }\n  .fms-btn:disabled{ opacity:.6; cursor:default; }\n  .fms-note { font-size:13px; color:#666; margin-top:10px; }\n  .fms-results { text-align:left; margin-top:18px; border-radius:8px; padding:12px; background:#fff; box-shadow:0 1px 4px rgba(0,0,0,.04); }\n  table.fms-table{ width:100%; border-collapse:collapse; font-size:14px; }\n  table.fms-table th, table.fms-table td{ padding:8px 10px; border-bottom:1px solid #eee; }\n  .bad{ color:#c62828; font-weight:600; }\n  .ok{ color:#0a7a3a; font-weight:600; }\n  .small{ font-size:13px; color:#666; }\n<\/style>\n\n<div class=\"fms-tool\" id=\"fmsChecker\">\n  <div class=\"fms-row\">\n    <input id=\"fmsUrl\" class=\"fms-input\" type=\"url\" placeholder=\"Enter Shopify page URL (e.g. https:\/\/yourshopify.com\/product\/abc)\" \/>\n    <button id=\"fmsRun\" class=\"fms-btn\">Scan<\/button>\n  <\/div>\n  <div class=\"fms-note\">Scans a single page and checks links. If the page blocks direct requests, the tool will try a CORS proxy.<\/div>\n  <div id=\"fmsStatus\" class=\"small\" style=\"margin-top:8px\"><\/div>\n\n  <div id=\"fmsResults\" class=\"fms-results\" style=\"display:none\"><\/div>\n<\/div>\n\n<script>\n(async function(){\n  const runBtn = document.getElementById('fmsRun');\n  const urlInput = document.getElementById('fmsUrl');\n  const statusEl = document.getElementById('fmsStatus');\n  const resultsEl = document.getElementById('fmsResults');\n\n  \/\/ Helper: small delay\n  const wait = ms => new Promise(r => setTimeout(r, ms));\n\n  \/\/ Proxy base (fallback)\n  const PROXY_GET = 'https:\/\/api.allorigins.win\/get?url=';\n\n  runBtn.addEventListener('click', async () => {\n    const rawUrl = (urlInput.value||'').trim();\n    resultsEl.style.display = 'none';\n    statusEl.textContent = '';\n\n    if(!rawUrl){\n      alert('Enter a full page URL first (including https:\/\/).');\n      return;\n    }\n\n    runBtn.disabled = true;\n    runBtn.textContent = 'Scanning...';\n    statusEl.textContent = 'Fetching page... (may use proxy if blocked)';\n\n    \/\/ normalize\n    let pageUrl;\n    try { pageUrl = new URL(rawUrl).href; } catch(e){\n      alert('Please enter a valid URL (include https:\/\/).');\n      runBtn.disabled = false;\n      runBtn.textContent = 'Scan';\n      return;\n    }\n\n    try {\n      \/\/ Try direct fetch first\n      let pageHtml = null;\n      try {\n        const r = await fetch(pageUrl, { method: 'GET', headers: { 'Accept': 'text\/html' } });\n        if(r.ok){\n          pageHtml = await r.text();\n          statusEl.textContent = 'Page fetched directly.';\n        } else {\n          \/\/ If direct fetch returned non-ok (like 403), we'll fallback to proxy\n          throw new Error('Direct fetch non-ok: ' + r.status);\n        }\n      } catch (errDirect) {\n        \/\/ Fallback: use CORS proxy\n        statusEl.textContent = 'Direct fetch failed \u2014 trying proxy...';\n        await wait(350); \/\/ small pause\n        const proxyUrl = PROXY_GET + encodeURIComponent(pageUrl);\n        const p = await fetch(proxyUrl);\n        if(!p.ok) throw new Error('Proxy fetch failed');\n        const proxyJson = await p.json();\n        pageHtml = proxyJson.contents || proxyJson.contents || '';\n        statusEl.textContent = 'Page fetched via proxy.';\n      }\n\n      if(!pageHtml){\n        throw new Error('Could not retrieve page HTML');\n      }\n\n      \/\/ parse page and extract links\n      const parser = new DOMParser();\n      const doc = parser.parseFromString(pageHtml, 'text\/html');\n      const anchors = Array.from(doc.querySelectorAll('a[href]'));\n      const links = anchors.map(a => {\n        try { return new URL(a.getAttribute('href'), pageUrl).href; } catch(e){ return null; }\n      }).filter(Boolean);\n\n      \/\/ dedupe & filter out anchors\/mailto\/tel\/js\n      const filtered = Array.from(new Set(links)).filter(l => !l.startsWith('mailto:') && !l.startsWith('tel:') && !l.startsWith('javascript:') && !l.startsWith('#'));\n\n      if(filtered.length === 0){\n        resultsEl.innerHTML = '<div class=\"small\">No links found on this page.<\/div>';\n        resultsEl.style.display = 'block';\n        statusEl.textContent = `Scanned 1 page \u2022 0 links`;\n      } else {\n        statusEl.textContent = `Found ${filtered.length} unique links. Checking... (this may take a few seconds)`;\n        \/\/ check each link via proxy (safer for CORS)\n        const resultRows = [];\n        for (let i=0;i<filtered.length;i++){\n          const link = filtered[i];\n          statusEl.textContent = `Checking ${i+1} \/ ${filtered.length} \u2022 ${short(link)}`;\n          try {\n            \/\/ query proxy for each link\n            const probe = await fetch(PROXY_GET + encodeURIComponent(link));\n            if(!probe.ok){\n              resultRows.push({link, ok:false, status: 'proxy-error'});\n            } else {\n              const pj = await probe.json();\n              \/\/ some proxies return status object\n              let code = (pj.status &#038;&#038; pj.status.http_code) ? pj.status.http_code : null;\n              if(code === null){\n                \/\/ fallback: if we have contents, assume ok\n                code = pj.contents ? 200 : 0;\n              }\n              const ok = code &#038;&#038; code < 400;\n              resultRows.push({ link, ok, status: code || 'unknown' });\n            }\n          } catch(e){\n            resultRows.push({ link, ok:false, status: 'error' });\n          }\n          \/\/ small throttle\n          await wait(150);\n        }\n\n        \/\/ render table\n        let html = `<div class=\"small\">Scanned 1 page \u2022 ${filtered.length} links checked<\/div>`;\n        html += `<table class=\"fms-table\"><thead><tr><th>Link<\/th><th>Status<\/th><\/tr><\/thead><tbody>`;\n        for(const r of resultRows){\n          html += `<tr><td><a href=\"${escapeHtml(r.link)}\" target=\"_blank\" rel=\"noopener\">${escapeHtml(short(r.link))}<\/a><\/td><td class=\"${r.ok?'ok':'bad'}\">${escapeHtml(String(r.status))}<\/td><\/tr>`;\n        }\n        html += `<\/tbody><\/table>`;\n        html += `<div class=\"small\" style=\"margin-top:8px\">Note: If some links show <span class=\"bad\">error<\/span> or <span class=\"bad\">proxy-error<\/span>, they may be blocked or the remote server returned an error. For full-site scans (multi-page) use a server-side crawler.<\/div>`;\n        resultsEl.innerHTML = html;\n        resultsEl.style.display = 'block';\n        statusEl.textContent = `Finished \u2022 ${resultRows.filter(r=>!r.ok).length} possible broken links`;\n      }\n\n    } catch(err){\n      console.error(err);\n      statusEl.textContent = 'Error: ' + (err.message || err);\n      resultsEl.style.display = 'block';\n      resultsEl.innerHTML = `<div class=\"small\">Unable to scan page. If you see a CORS or network error, this page likely blocks direct browser scans. Consider using the server-side scanner for reliable results.<\/div>`;\n    } finally {\n      runBtn.disabled = false;\n      runBtn.textContent = 'Scan';\n    }\n  });\n\n  \/\/ helpers\n  function escapeHtml(s){ return String(s||'').replace(\/[&<>\"']\/g, m => ({'&':'&amp;','<':'&lt;','>':'&gt;','\"':'&quot;',\"'\":'&#39;'}[m])); }\n  function short(u){ return u.length>72 ? u.slice(0,68)+'...' : u; }\n\n})();\n<\/script>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-j0m5lzih alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-info-box uagb-block-prr31lvo uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><h2 class=\"uagb-ifb-title\">What is Break-Even Point?<\/h2><\/div><p class=\"uagb-ifb-desc\">The break-even point is when your total revenue equals your total costs. In simple words, it\u2019s the number of products you need to sell so you don\u2019t lose money.<\/p><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-7vwe9vb6\">\n<div class=\"wp-block-uagb-container uagb-block-uw7riyed\">\n<div class=\"wp-block-uagb-info-box uagb-block-ncilne5k uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title-prefix\">01<\/p><h3 class=\"uagb-ifb-title\"><strong>Below break even:<\/strong> You are at a loss<\/h3><\/div><\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-1qyjs1qc\">\n<div class=\"wp-block-uagb-info-box uagb-block-wpluruvx uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title-prefix\">02<\/p><h3 class=\"uagb-ifb-title\"><strong>At break even:<\/strong> You cover all costs<\/h3><\/div><\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-mkmgvmk6\">\n<div class=\"wp-block-uagb-info-box uagb-block-k9kail1v uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title-prefix\">03<\/p><h3 class=\"uagb-ifb-title\"><strong>Above break even:<\/strong> You are in profit<\/h3><\/div><\/div><\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-t6cr6cnb alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-info-box uagb-block-oftbkl8r uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><h2 class=\"uagb-ifb-title\">What is Break-Even in Shopify?<\/h2><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-wdcnrnpd\">\n<div class=\"wp-block-uagb-info-box uagb-block-lojsw6bn uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title\">Break even means your revenue from a sale covers your product cost, shipping, and ad spend, leaving you with zero profit and zero loss. Once you know this point, every dollar spent above it can be considered profit.<\/p><\/div><p class=\"uagb-ifb-desc\"><strong>For example:<\/strong><br><br>Product Cost: $15<br>Selling Price: $35<br>Other Costs (shipping, packaging): $5<br>Break Even ROAS = 2.0<br><br>This means you need $2 in sales for every $1 in ad spend to avoid losing money.<\/p><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-j5ogbuk5\">\n<div class=\"wp-block-uagb-info-box uagb-block-z8tnyw21 uagb-infobox__content-wrap  uagb-infobox-icon-left-title uagb-infobox-left uagb-infobox-image-valign-middle\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-left-title-image\"><div class=\"uagb-ifb-icon-wrap\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M376.6 427.5c11.31 13.58 9.484 33.75-4.094 45.06c-5.984 4.984-13.25 7.422-20.47 7.422c-9.172 0-18.27-3.922-24.59-11.52L192 305.1l-135.4 162.5c-6.328 7.594-15.42 11.52-24.59 11.52c-7.219 0-14.48-2.438-20.47-7.422c-13.58-11.31-15.41-31.48-4.094-45.06l142.9-171.5L7.422 84.5C-3.891 70.92-2.063 50.75 11.52 39.44c13.56-11.34 33.73-9.516 45.06 4.094L192 206l135.4-162.5c11.3-13.58 31.48-15.42 45.06-4.094c13.58 11.31 15.41 31.48 4.094 45.06l-142.9 171.5L376.6 427.5z\"><\/path><\/svg><\/div><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title\"><strong>Sets Ad Spend Limits<\/strong><\/p><\/div><\/div><p class=\"uagb-ifb-desc\">You know the max you can spend per customer.<\/p><div class=\"uagb-ifb-separator\"><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-info-box uagb-block-vwgxvk6j uagb-infobox__content-wrap  uagb-infobox-icon-left-title uagb-infobox-left uagb-infobox-image-valign-middle\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-left-title-image\"><div class=\"uagb-ifb-icon-wrap\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M376.6 427.5c11.31 13.58 9.484 33.75-4.094 45.06c-5.984 4.984-13.25 7.422-20.47 7.422c-9.172 0-18.27-3.922-24.59-11.52L192 305.1l-135.4 162.5c-6.328 7.594-15.42 11.52-24.59 11.52c-7.219 0-14.48-2.438-20.47-7.422c-13.58-11.31-15.41-31.48-4.094-45.06l142.9-171.5L7.422 84.5C-3.891 70.92-2.063 50.75 11.52 39.44c13.56-11.34 33.73-9.516 45.06 4.094L192 206l135.4-162.5c11.3-13.58 31.48-15.42 45.06-4.094c13.58 11.31 15.41 31.48 4.094 45.06l-142.9 171.5L376.6 427.5z\"><\/path><\/svg><\/div><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title\"><strong>Helps with Pricing Decisions<\/strong><\/p><\/div><\/div><p class=\"uagb-ifb-desc\">If your break-even ROAS is too high, you might need to adjust your prices.<\/p><div class=\"uagb-ifb-separator\"><\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-info-box uagb-block-ekuvxdtv uagb-infobox__content-wrap  uagb-infobox-icon-left-title uagb-infobox-left uagb-infobox-image-valign-middle\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-left-title-image\"><div class=\"uagb-ifb-icon-wrap\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 320 512\"><path d=\"M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z\"><\/path><\/svg><\/div><div class=\"uagb-ifb-title-wrap\"><p class=\"uagb-ifb-title\"><strong>Protects Cash Flow<\/strong><\/p><\/div><\/div><p class=\"uagb-ifb-desc\">revents overspending on campaigns that are not sustainable.<\/p><div class=\"uagb-ifb-separator\"><\/div><\/div><\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-ulcxtjv7 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-info-box uagb-block-8rtxk9za uagb-infobox__content-wrap  uagb-infobox-icon-above-title uagb-infobox-image-valign-top\"><div class=\"uagb-ifb-content\"><div class=\"uagb-ifb-title-wrap\"><h2 class=\"uagb-ifb-title\">Ready to Fix Your Store?<\/h2><\/div><p class=\"uagb-ifb-desc\">Find out what\u2019s broken on your store with our free CRO Audit Tool in less than 2 minutes. Just enter your store URL and get instant, actionable insights.<\/p><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-buttons uagb-buttons__outer-wrap uagb-btn__large-btn uagb-btn-tablet__default-btn uagb-btn-mobile__default-btn uagb-block-jqdmd7lc\"><div class=\"uagb-buttons__wrap uagb-buttons-layout-wrap \">\n<div class=\"wp-block-uagb-buttons-child uagb-buttons__outer-wrap uagb-block-fbmltfxg wp-block-button\"><div class=\"uagb-button__wrapper\"><a class=\"uagb-buttons-repeater wp-block-button__link\" aria-label=\"\" href=\"#\" rel=\"follow noopener\" target=\"_self\" role=\"button\"><div class=\"uagb-button__link\">Get A CRO Audit<\/div><span class=\"uagb-button__icon uagb-button__icon-position-after\"><svg xmlns=\"https:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\" aria-hidden=\"true\" focussable=\"false\"><path d=\"M438.6 278.6l-160 160C272.4 444.9 264.2 448 256 448s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L338.8 288H32C14.33 288 .0016 273.7 .0016 256S14.33 224 32 224h306.8l-105.4-105.4c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160C451.1 245.9 451.1 266.1 438.6 278.6z\"><\/path><\/svg><\/span><\/a><\/div><\/div>\n<\/div><\/div>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Scan Scans a single page and checks links. If the page blocks direct requests, the tool will try a CORS [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":101,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-240","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"Milan P Sony","author_link":"https:\/\/fixmystore.com\/hub\/author\/milan\/"},"uagb_comment_info":0,"uagb_excerpt":"Scan Scans a single page and checks links. If the page blocks direct requests, the tool will try a CORS [&hellip;]","_links":{"self":[{"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/pages\/240","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/comments?post=240"}],"version-history":[{"count":2,"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/pages\/240\/revisions"}],"predecessor-version":[{"id":268,"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/pages\/240\/revisions\/268"}],"up":[{"embeddable":true,"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/pages\/101"}],"wp:attachment":[{"href":"https:\/\/fixmystore.com\/hub\/wp-json\/wp\/v2\/media?parent=240"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}