{"id":755,"date":"2026-02-18T14:05:41","date_gmt":"2026-02-18T14:05:41","guid":{"rendered":"https:\/\/acivica.com\/home\/?p=755"},"modified":"2026-02-18T14:05:43","modified_gmt":"2026-02-18T14:05:43","slug":"case-study-building-an-isv-presales-team-from-zero","status":"publish","type":"post","link":"https:\/\/acivica.com\/home\/case-study-building-an-isv-presales-team-from-zero\/","title":{"rendered":"Case Study &#8211; Building an ISV Presales Team from Zero"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_0 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_0 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><ol>\n<li style=\"text-align: center;\"><a href=\"#InfographicID\">Case Study Infographic<\/a><\/li>\n<li style=\"text-align: center;\"><a href=\"#SummaryID\">Case Study Deeper Dive<\/a><\/li>\n<\/ol>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_1 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_1 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_1 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_code_0 et_pb_code et_pb_module\" id=\"InfographicID\"><div class=\"et_pb_code_inner\"><!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Building an ISV Presales Team from Zero - Key Results<\/title>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap\" rel=\"stylesheet\">\n    <style>\n        :root {\n            --primary: #004aab;\n            --accent: #fdbb59;\n            --dark: #2d2d2d;\n            --light: #ffffff;\n            --off-white: #f7f0d5;\n            --gray: #6b6b6b;\n        }\n        \n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n        \n        body {\n            font-family: 'Open Sans', sans-serif;\n            background: var(--off-white);\n            color: var(--dark);\n            padding: 40px 20px;\n            min-height: 100vh;\n        }\n        \n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            animation: fadeIn 0.8s ease-out;\n        }\n        \n        @keyframes fadeIn {\n            from { opacity: 0; transform: translateY(20px); }\n            to { opacity: 1; transform: translateY(0); }\n        }\n        \n        header {\n            text-align: center;\n            margin-bottom: 60px;\n            animation: slideDown 0.6s ease-out;\n        }\n        \n        @keyframes slideDown {\n            from { opacity: 0; transform: translateY(-30px); }\n            to { opacity: 1; transform: translateY(0); }\n        }\n        \n        h1 {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 3rem;\n            font-weight: 700;\n            color: var(--primary);\n            margin-bottom: 10px;\n            letter-spacing: -1px;\n        }\n        \n        .subtitle {\n            font-size: 1.2rem;\n            color: var(--gray);\n            font-weight: 400;\n        }\n\n        .byline {\n            font-size: 1rem;\n            color: var(--gray);\n            margin-top: 8px;\n        }\n        \n        .stats-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 30px;\n            margin-bottom: 60px;\n        }\n        \n        .stat-card {\n            background: var(--light);\n            border-radius: 16px;\n            padding: 35px;\n            position: relative;\n            overflow: hidden;\n            transition: all 0.3s ease;\n            animation: popIn 0.6s ease-out backwards;\n            box-shadow: 0 4px 12px rgba(0, 74, 171, 0.1);\n        }\n        \n        .stat-card:nth-child(1) { animation-delay: 0.1s; }\n        .stat-card:nth-child(2) { animation-delay: 0.2s; }\n        .stat-card:nth-child(3) { animation-delay: 0.3s; }\n        .stat-card:nth-child(4) { animation-delay: 0.4s; }\n        \n        @keyframes popIn {\n            from { opacity: 0; transform: scale(0.9); }\n            to { opacity: 1; transform: scale(1); }\n        }\n        \n        .stat-card:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 8px 24px rgba(0, 74, 171, 0.15);\n        }\n        \n        .stat-card::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 4px;\n            background: var(--accent);\n        }\n        \n        .stat-number {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 3.5rem;\n            font-weight: 700;\n            color: var(--primary);\n            margin-bottom: 10px;\n            line-height: 1;\n        }\n        \n        .stat-label {\n            font-size: 1.1rem;\n            color: var(--gray);\n            font-weight: 600;\n            line-height: 1.4;\n        }\n        \n        .benefits-section {\n            margin-top: 80px;\n        }\n        \n        .section-title {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 2rem;\n            text-align: center;\n            margin-bottom: 50px;\n            position: relative;\n            animation: fadeIn 0.8s ease-out 0.4s backwards;\n            color: var(--primary);\n        }\n        \n        .section-title::after {\n            content: '';\n            display: block;\n            width: 80px;\n            height: 4px;\n            background: var(--accent);\n            margin: 15px auto 0;\n            border-radius: 2px;\n        }\n        \n        .benefits-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));\n            gap: 25px;\n        }\n        \n        .benefit-card {\n            background: var(--light);\n            border-radius: 12px;\n            padding: 30px;\n            display: flex;\n            gap: 20px;\n            transition: all 0.3s ease;\n            animation: slideIn 0.6s ease-out backwards;\n            box-shadow: 0 2px 8px rgba(0, 74, 171, 0.08);\n        }\n        \n        .benefit-card:nth-child(1) { animation-delay: 0.5s; }\n        .benefit-card:nth-child(2) { animation-delay: 0.6s; }\n        .benefit-card:nth-child(3) { animation-delay: 0.7s; }\n        .benefit-card:nth-child(4) { animation-delay: 0.8s; }\n        .benefit-card:nth-child(5) { animation-delay: 0.9s; }\n        \n        @keyframes slideIn {\n            from { opacity: 0; transform: translateX(-30px); }\n            to { opacity: 1; transform: translateX(0); }\n        }\n        \n        .benefit-card:hover {\n            transform: translateX(5px);\n            box-shadow: 0 4px 16px rgba(0, 74, 171, 0.12);\n        }\n        \n        .benefit-icon {\n            width: 50px;\n            height: 50px;\n            border-radius: 12px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 24px;\n            flex-shrink: 0;\n            background: var(--accent);\n        }\n        \n        .benefit-content h3 {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 1.2rem;\n            margin-bottom: 8px;\n            color: var(--primary);\n            font-weight: 700;\n        }\n        \n        .benefit-content p {\n            font-size: 0.95rem;\n            color: var(--gray);\n            line-height: 1.5;\n        }\n        \n        .approach-section {\n            margin-top: 80px;\n            background: var(--light);\n            border-radius: 16px;\n            padding: 50px;\n            box-shadow: 0 4px 12px rgba(0, 74, 171, 0.1);\n            animation: fadeIn 0.8s ease-out 1s backwards;\n        }\n        \n        .approach-title {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 2rem;\n            text-align: center;\n            margin-bottom: 40px;\n            color: var(--primary);\n        }\n        \n        .approach-steps {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n            gap: 30px;\n        }\n        \n        .step-card {\n            background: var(--off-white);\n            border-radius: 12px;\n            padding: 30px;\n            border-left: 4px solid var(--accent);\n            transition: all 0.3s ease;\n        }\n        \n        .step-card:hover {\n            transform: scale(1.02);\n            box-shadow: 0 4px 16px rgba(0, 74, 171, 0.1);\n        }\n        \n        .step-number {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 2rem;\n            color: var(--primary);\n            margin-bottom: 10px;\n        }\n        \n        .step-title {\n            font-family: 'Montserrat', sans-serif;\n            font-size: 1.3rem;\n            font-weight: 700;\n            margin-bottom: 10px;\n            color: var(--dark);\n        }\n        \n        .step-description {\n            color: var(--gray);\n            line-height: 1.6;\n        }\n        \n        footer {\n            text-align: center;\n            margin-top: 80px;\n            padding-top: 40px;\n            border-top: 2px solid var(--accent);\n            color: var(--gray);\n            animation: fadeIn 0.8s ease-out 1.2s backwards;\n        }\n        \n        @media (max-width: 768px) {\n            h1 { font-size: 2rem; }\n            .stat-number { font-size: 2.5rem; }\n            .approach-section { padding: 30px 20px; }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\">\n        <header>\n            <h1>Acivica Case Study: Building an ISV Presales Team from Zero<\/h1>\n            <p class=\"subtitle\">How the right methodology, training, and process took a struggling sales organization from <1% to 70% win rates in two years<\/p>\n            <p class=\"byline\">A case study by Acivica Managing Principal: Scott Stamper<\/p>\n        <\/header>\n        \n        <div class=\"stats-grid\">\n            <div class=\"stat-card\">\n                <div class=\"stat-number\">30%<\/div>\n                <div class=\"stat-label\">First-year win rate on new leads (from <1%)<\/div>\n            <\/div>\n            \n            <div class=\"stat-card\">\n                <div class=\"stat-number\">70%<\/div>\n                <div class=\"stat-label\">Win rate with existing customers<\/div>\n            <\/div>\n            \n            <div class=\"stat-card\">\n                <div class=\"stat-number\">10x<\/div>\n                <div class=\"stat-label\">Revenue growth in year one<\/div>\n            <\/div>\n\n            <div class=\"stat-card\">\n                <div class=\"stat-number\">3x<\/div>\n                <div class=\"stat-label\">Additional revenue growth in year two<\/div>\n            <\/div>\n        <\/div>\n        \n        <section class=\"benefits-section\">\n            <h2 class=\"section-title\">Key Benefits<\/h2>\n            \n            <div class=\"benefits-grid\">\n                <div class=\"benefit-card\">\n                    <div class=\"benefit-icon\">&#x1f4c8;<\/div>\n                    <div class=\"benefit-content\">\n                        <h3>Explosive Growth<\/h3>\n                        <p>Revenue increased 10x in the first year and another 3x in the second, proving that process beats heroics every time<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"benefit-card\">\n                    <div class=\"benefit-icon\">&#x1f3af;<\/div>\n                    <div class=\"benefit-content\">\n                        <h3>Competitive Repositioning<\/h3>\n                        <p>Moved the firm away from competing on price and toward competing on value, quality, and solving real problems<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"benefit-card\">\n                    <div class=\"benefit-icon\">&#x1f4da;<\/div>\n                    <div class=\"benefit-content\">\n                        <h3>Scalable Process<\/h3>\n                        <p>Built repeatable frameworks that didn't depend on one person being in the room \u2014 enabling growth, hiring, and expansion<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"benefit-card\">\n                    <div class=\"benefit-icon\">&#x1f4ac;<\/div>\n                    <div class=\"benefit-content\">\n                        <h3>Story Over Specs<\/h3>\n                        <p>Trained the team to win on storytelling and empathy, not just technical features \u2014 connecting solutions to real-world challenges<\/p>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"benefit-card\">\n                    <div class=\"benefit-icon\">&#x1f91d;<\/div>\n                    <div class=\"benefit-content\">\n                        <h3>Culture of Listening<\/h3>\n                        <p>Shifted the team from \"completing the spiel\" to truly understanding what prospects were struggling with and why<\/p>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <section class=\"approach-section\">\n            <h2 class=\"approach-title\">The Four Core Lessons<\/h2>\n            \n            <div class=\"approach-steps\">\n                <div class=\"step-card\">\n                    <div class=\"step-number\">01<\/div>\n                    <h3 class=\"step-title\">Quality Over Price<\/h3>\n                    <p class=\"step-description\">If you win on price, you lose on value. Stop racing to the bottom and start focusing on quality, outcomes, and differentiation.<\/p>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\">02<\/div>\n                    <h3 class=\"step-title\">Consistency is Everything<\/h3>\n                    <p class=\"step-description\">If your success depends on one person, 100% of your risk goes through that person. Build a process that ensures consistency every time.<\/p>\n                <\/div>\n                \n                <div class=\"step-card\">\n                    <div class=\"step-number\">03<\/div>\n                    <h3 class=\"step-title\">Storytelling Wins Deals<\/h3>\n                    <p class=\"step-description\">Organizations rarely win on technical specs alone. They win by building bridges between their solution and the prospect's real-world problems.<\/p>\n                <\/div>\n\n                <div class=\"step-card\">\n                    <div class=\"step-number\">04<\/div>\n                    <h3 class=\"step-title\">Empathy and Listening<\/h3>\n                    <p class=\"step-description\">If you talk more than you listen, you're off base. If you leave without understanding their real struggle, you've missed the point entirely.<\/p>\n                <\/div>\n            <\/div>\n        <\/section>\n        \n        <footer><\/footer>\n    <\/div>\n<\/body>\n<\/html>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_2 et_pb_section et_section_regular et_flex_section\">\n<div class=\"et_pb_row_2 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_2 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_heading_0 et_pb_heading et_pb_module et_flex_module\" id=\"SummaryID\"><div class=\"et_pb_heading_container\"><h1 class=\"et_pb_module_header\">Acivica Case Study: Building a Presales Team from Zero \u2014 Deeper Dive<\/h1><\/div><\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_row_3 et_pb_row et_flex_row\">\n<div class=\"et_pb_column_3 et_pb_column et-last-child et_flex_column et_pb_css_mix_blend_mode_passthrough et_flex_column_24_24 et_flex_column_24_24_tablet et_flex_column_24_24_phone\">\n<div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_flex_module\"><div class=\"et_pb_text_inner\"><h1><span style=\"text-decoration: underline;\"><strong>Executive Summary<\/strong><\/span><\/h1>\n<p>What does it take to build a presales team from the ground up? And how do you do it fast enough that the investment actually makes financial sense? Scott Stamper, Managing Principal of Acivica, was brought in to build sales capacity for an ISV that had been wasting leads and opportunities by leading with technical specs and hoping to win on price. Within two years, the team went from a win rate under 1% to 70% on existing customers and 30% on new leads. Revenue grew 10x in year one and another 3x in year two. This is the story of how process, training, and empathy remade an entire sales organization.<\/p>\n<h1><span style=\"text-decoration: underline;\"><strong>The Challenge<\/strong><\/span><\/h1>\n<p>The company had a problem. They had a solid technical solution, but they couldn't sell it. Their approach was to show up with technical presentations, walk through features, and hope they could undercut the competition on price. It wasn't working. Leads were being wasted. Opportunities were slipping away. And the win rate was abysmal \u2014 less than 1% the year before Scott came in.<\/p>\n<p>The root of the problem wasn't the product. It was the sales approach. The team was competing on the wrong thing. They were trying to win on price, which meant they were losing on value. And even when they did win, it was on terms that didn't set them up for long-term success.<\/p>\n<h1><span style=\"text-decoration: underline;\"><strong>Our Approach<\/strong><\/span><\/h1>\n<p>Scott came in with four core lessons that he had learned over years of building presales teams. Each one challenged how the organization thought about selling, and together, they formed the foundation for a complete transformation.<\/p>\n<h2>Lesson One: If You Win on Price, You Lose on Value<\/h2>\n<ul>\n<li>One of Scott's first moves was to get the team to stop focusing on being the cheapest option.<\/li>\n<li>Market research on optimal pricing often starts with the question: \"at what price would this be too cheap to trust?\" Quite simply, too much emphasis on price can destroy perception of value.<\/li>\n<li>Scott's first act was to shift the team's mindset from competing on price to competing on quality. That meant building confidence in the value they were delivering, not just the cost.<\/li>\n<\/ul>\n<h2>Lesson Two: Consistency is the Foundation<\/h2>\n<ul>\n<li>If presales is won or lost based on whether a specific person is in the room, then there hasn't been enough training, planning, or preparation.<\/li>\n<li>Scott would often say: if your path to success goes through one person, 100% of the risk also goes through that person. It's the process that ensures success.<\/li>\n<li>He worked with the team to build repeatable frameworks, training programs, and demo scripts that worked regardless of who was in the room.<\/li>\n<li>The goal was to make the entire team effective, not just the star players.<\/li>\n<\/ul>\n<h2>Lesson Three: Organizations Win on Storytelling, Not Technical Solutions<\/h2>\n<ul>\n<li>Here's the hard truth: organizations rarely win on the technical solution alone.<\/li>\n<li>They win on storytelling. Not lying. Not spinning fantastic tales about capabilities that don't exist. But being able to connect the solution to real-world problems, challenges, and needs in a way that makes sense to the prospect.<\/li>\n<li>The solution is obviously part of the story. But if the prospect has to make a big leap to understand how the technology solves their specific problems, presales hasn't built a big enough bridge yet.<\/li>\n<li>Scott's approach was to focus discussions, requirement gathering, demos, and more on the \"why,\" not just the \"how.\"<\/li>\n<\/ul>\n<h2>Lesson Four: Empathy and Listening Win Deals<\/h2>\n<ul>\n<li>This was the most important lesson, but also the hardest to teach. Scott drove home a few simple rules:<\/li>\n<ul>\n<li>If you show up with a goal of completing your spiel no matter what, you're doing it wrong.<\/li>\n<li>If you find you're talking more than listening, you're off base.<\/li>\n<li>If you leave without having learned what they're really struggling with \u2014 enough that they're considering a massive disruption \u2014 you've missed the point entirely.<\/li>\n<\/ul>\n<li>Empathy wasn't a soft skill. It was the whole game. The team needed to understand what prospects were actually dealing with, not just what they said they needed.<\/li>\n<\/ul>\n<h1><span style=\"text-decoration: underline;\"><strong>The Results:<\/strong><\/span><\/h1>\n<p>The numbers tell part of the story. But the real story is about what those numbers represent: a complete transformation in how the team approached selling.<\/p>\n<h2>The Numbers<\/h2>\n<ul>\n<li>Year one: Win rate went from less than 1% to over 30% on new leads.<\/li>\n<li>Existing customer win rate: 70%.<\/li>\n<li>Revenue growth: 10x in year one, another 3x in year two.<\/li>\n<li>The change in process and methodology didn't just improve results \u2014 it remade the team.<\/li>\n<\/ul>\n<h2>Beyond the Bottom Line<\/h2>\n<ul>\n<li>The new approach allowed for significant expansion and hiring.<\/li>\n<li>A profitability roadmap was established that continues to this day.<\/li>\n<li>The team shifted from being a cost center to a growth engine.<\/li>\n<li>Consistency in process meant less dependency on individual heroics, reducing risk and enabling scale.<\/li>\n<\/ul>\n<h2>What did Acivica Learn from This?<\/h2>\n<ol>\n<li>Price is a trap \u2014 competing on price signals low value; competing on quality and outcomes builds lasting client relationships.<\/li>\n<li>Process beats talent \u2014 a solid, repeatable process performed by a good team will outperform a star performer with no process.<\/li>\n<li>The bridge matters more than the tech \u2014 if prospects can't easily see how your solution solves their problem, the fault isn't theirs.<\/li>\n<li>Listening is a competitive advantage \u2014 the team that understands the prospect's real struggle wins, even if they don't have the \"best\" product.<\/li>\n<li>Empathy is measurable \u2014 when teams prioritize understanding over pitching, win rates go up.<\/li>\n<\/ol>\n<h1><span style=\"text-decoration: underline;\"><strong><\/strong><\/span><\/h1>\n<h1><span style=\"text-decoration: underline;\"><strong>Conclusion<\/strong><\/span><\/h1>\n<p>Building a presales team from zero isn't just about hiring people and giving them a script. It's about building a methodology that focuses on the right things: quality over price, consistency over heroics, storytelling over specs, and empathy over pitching. Scott's work with this ISV proved that when you get those fundamentals right, the results aren't incremental \u2014 they're transformational. A team that was barely winning any deals became a team with a 70% win rate on existing customers and 30% on new business. Revenue grew 30x over two years. And the company built a foundation for growth that continues to pay off today.<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n<div class=\"et_pb_section_3 et_pb_section et_section_regular et_flex_section\"><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":15,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31],"tags":[],"class_list":["post-755","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-case-study"],"_links":{"self":[{"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/posts\/755","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/comments?post=755"}],"version-history":[{"count":14,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/posts\/755\/revisions"}],"predecessor-version":[{"id":769,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/posts\/755\/revisions\/769"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/media\/15"}],"wp:attachment":[{"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/media?parent=755"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/categories?post=755"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/acivica.com\/home\/wp-json\/wp\/v2\/tags?post=755"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}