{"id":18,"date":"2026-04-04T15:34:08","date_gmt":"2026-04-04T15:34:08","guid":{"rendered":"https:\/\/www.martechmonitoring.com\/blog\/?p=18"},"modified":"2026-04-04T15:34:08","modified_gmt":"2026-04-04T15:34:08","slug":"journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts","status":"publish","type":"post","link":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/","title":{"rendered":"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts"},"content":{"rendered":"<h2>Understanding Journey Builder Entry Sources in Salesforce Marketing Cloud<\/h2>\n<p>In Salesforce Marketing Cloud (SFMC), Journey Builder is a powerful tool for orchestrating personalized customer experiences across multiple channels. At the heart of any journey is the entry source, which determines how contacts enter the journey. When your Journey Builder entry source isn&#8217;t working, it can halt campaigns, disrupt automations, and lead to lost revenue opportunities. As an SFMC practitioner with years of hands-on experience, I&#8217;ve seen this issue trip up even seasoned marketers. In this guide, we&#8217;ll dive deep into why entry sources fail, how to diagnose them, and proven fixes to get your journeys back on track.<\/p>\n<p>Entry sources in Journey Builder can be event-based (like API entries or Salesforce Data Events) or data-based (such as Data Extensions or Synchronized Data Sources). A malfunctioning entry source typically means contacts aren&#8217;t populating the journey as expected, resulting in zero injections or incomplete data flows. This isn&#8217;t just a minor glitch\u2014it&#8217;s a critical barrier to effective marketing automation.<\/p>\n<h2>Common Causes of Journey Builder Entry Source Not Working<\/h2>\n<p>Before jumping into fixes, it&#8217;s essential to pinpoint the root cause. Based on real-world troubleshooting, here are the most frequent culprits behind a non-functional entry source:<\/p>\n<ul>\n<li><strong>Configuration Errors:<\/strong> Mismatched field mappings or incorrect data source setups can prevent contacts from entering. For instance, if your Data Extension lacks a primary key or the entry source is set to a filtered audience that doesn&#8217;t exist, journeys won&#8217;t trigger.<\/li>\n<li><strong>Data Quality Issues:<\/strong> Invalid or incomplete data in your source, such as missing email addresses or duplicate records, often blocks entry. SFMC enforces strict data validation, so even small inconsistencies can cause failures.<\/li>\n<li>\n<li><strong>Permission and Access Problems:<\/strong> Insufficient user permissions or API restrictions can halt event-based entries. If your journey relies on an API Entry Source, ensure your Installed Package has the right scopes.<\/li>\n<li><strong>System Limits and Throttling:<\/strong> SFMC has quotas for journey entries (e.g., 100,000 per hour for some sources). Exceeding these can pause injections without clear alerts.<\/li>\n<li><strong>Integration Glitches:<\/strong> For synchronized sources like Salesforce CRM or Google Analytics, sync errors or API downtimes can disrupt the flow.<\/li>\n<li><strong>Journey Status Issues:<\/strong> If the journey is paused, in draft mode, or has scheduling conflicts, no entries will process regardless of the source setup.<\/li>\n<\/ul>\n<p>These issues often compound, making diagnosis tricky. A systematic approach is key to resolving them efficiently.<\/p>\n<h2>Step-by-Step Troubleshooting: How to Fix Journey Builder Entry Source Not Working<\/h2>\n<p>As an SFMC expert, I recommend a structured debugging process. Follow these actionable steps to identify and resolve the problem. This method has helped me restore journeys for clients facing high-stakes campaigns.<\/p>\n<h3>Step 1: Verify Journey Configuration and Status<\/h3>\n<p>Start in Journey Builder. Open your journey and check the Entry Source settings under the canvas. Ensure the journey is active (not paused or in testing mode). Look for errors in the Entry Source configuration:<\/p>\n<ul>\n<li>Confirm the source type matches your needs\u2014e.g., select &#8216;Data Extension&#8217; if using a static list.<\/li>\n<li>Validate field mappings: Map subscriber keys, emails, and attributes correctly. A common pitfall is mapping to non-existent fields, which silently fails entries.<\/li>\n<li>Test the entry source: Use the &#8216;Test&#8217; button to simulate an entry with sample data. If it fails, SFMC will flag validation errors.<\/li>\n<\/ul>\n<p>If the journey status is fine, proceed to data checks.<\/p>\n<h3>Step 2: Audit Your Data Source<\/h3>\n<p>For Data Extension-based entries, navigate to Email Studio > Subscribers > Data Extensions. Open the relevant DE and inspect:<\/p>\n<ul>\n<li><strong>Record Count:<\/strong> Ensure it has entries. Run a SQL query in Query Studio to count rows: <code>SELECT COUNT(*) FROM YourDataExtension<\/code>.<\/li>\n<li><strong>Data Integrity:<\/strong> Check for null values in required fields like EmailAddress. Use Automation Studio to clean data\u2014e.g., filter out invalid emails with a query activity.<\/li>\n<li><strong>Primary Key Setup:<\/strong> Every DE needs a unique identifier. If missing, edit the DE properties and assign one (e.g., SubscriberKey).<\/li>\n<\/ul>\n<p>For event-based sources like API Entries, test the payload in Postman. Ensure it includes mandatory fields like ContactKey and EventDefinitionKey. A sample API call might look like:<\/p>\n<blockquote>\n<p>POST \/interaction\/v1\/events<br \/>Body: {<br \/>  &#8220;ContactKey&#8221;: &#8220;subscriber@example.com&#8221;,<br \/>  &#8220;EventDefinitionKey&#8221;: &#8220;YourEventKey&#8221;<br \/>}<\/p>\n<\/blockquote>\n<p>If the API returns a 400 error, debug the JSON structure.<\/p>\n<h3>Step 3: Check Permissions and Limits<\/h3>\n<p>In Setup, review your user&#8217;s permissions under Platform Tools > Journey Builder. Ensure &#8216;Activate Journeys&#8217; and &#8216;Use API&#8217; are enabled. For API sources, validate your package in Installed Packages\u2014revoke and reauthorize if needed.<\/p>\n<p>Monitor limits via the SFMC dashboard or API queries. If throttled, wait for the reset (hourly) or scale down injections. Pro tip: Use Automation Studio to batch entries and avoid spikes.<\/p>\n<h3>Step 4: Test Integrations and Syncs<\/h3>\n<p>For Synchronized Data Extensions, go to Setup > Data Management > Synchronized Data Sources. Verify sync status\u2014resync if errors appear. Common fixes include updating OAuth tokens or resolving field mismatches in Salesforce.<\/p>\n<p>If using Salesforce Data Events, ensure the Event Definition is published and active in Event Configuration.<\/p>\n<h3>Step 5: Monitor Logs and Track Injections<\/h3>\n<p>Use Journey Builder&#8217;s tracking view to see injection stats. If zero entries, enable debug logging via support tickets or custom events. Query the _Journey table in Contact Builder for insights:<\/p>\n<p><code>SELECT * FROM _Journey WHERE JourneyID = 'YourJourneyID'<\/code><\/p>\n<p>This reveals entry attempts and failures. For deeper analysis, integrate with SFMC&#8217;s Automation Insights.<\/p>\n<h2>Best Practices to Prevent Journey Builder Entry Source Failures<\/h2>\n<p>Prevention is better than cure. Incorporate these practitioner-level tips into your SFMC workflows:<\/p>\n<ul>\n<li><strong>Pre-Launch Testing:<\/strong> Always run end-to-end tests with mock data before going live. Use Entry Source testing and preview modes extensively.<\/li>\n<li><strong>Data Governance:<\/strong> Implement validation rules in Automations to scrub data upstream. Tools like Validation Activity can catch issues early.<\/li>\n<li><strong>Monitoring and Alerting:<\/strong> Set up real-time alerts for journey failures. Track metrics like injection rates and drop-offs using SFMC reports or third-party tools.<\/li>\n<li><strong>Scalability Planning:<\/strong> Design journeys with limits in mind\u2014e.g., use Wait activities to pace entries. For high-volume campaigns, consider multi-threaded automations.<\/li>\n<li><strong>Documentation and Version Control:<\/strong> Maintain detailed notes on entry source setups. Use SFMC&#8217;s versioning for journeys to rollback changes quickly.<\/li>\n<li><strong>Regular Audits:<\/strong> Schedule monthly reviews of data sources and permissions. This catches drift before it impacts performance.<\/li>\n<\/ul>\n<p>By adopting these practices, you&#8217;ll minimize downtime and ensure reliable journey performance.<\/p>\n<h2>Advanced Debugging Techniques for Stubborn Issues<\/h2>\n<p>When basic troubleshooting falls short, escalate to advanced methods. Leverage SFMC&#8217;s SOAP API to query journey activities programmatically. For example, retrieve entry source details with:<\/p>\n<p><code>RetrieveRequest: {ObjectType: 'Journey', Properties: ['EntrySource']}<\/code><\/p>\n<p>If suspecting backend issues, open a support case with logs from the Tracking dashboard. Share specifics like journey ID, timestamps, and error codes for faster resolution.<\/p>\n<p>In my experience, 80% of persistent entry source problems stem from overlooked data syncs or API misconfigurations\u2014double-check these before escalating.<\/p>\n<h2>Conclusion: Keep Your SFMC Journeys Flowing Seamlessly<\/h2>\n<p>A Journey Builder entry source not working can derail your marketing efforts, but with the right debugging techniques and best practices, you can resolve it swiftly. By verifying configurations, auditing data, and implementing proactive monitoring, you&#8217;ll build more resilient automations. Remember, SFMC&#8217;s power lies in its interconnected ecosystem\u2014stay vigilant to unlock its full potential.<\/p>\n<p>For continuous SFMC monitoring that catches journey failures, automation errors, and data issues before they impact your campaigns, learn more about MarTech Monitoring at <a href=\"https:\/\/www.martechmonitoring.com\">https:\/\/www.martechmonitoring.com<\/a>. Sign up today to safeguard your marketing operations.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Journey Builder entry source not working? Discover expert troubleshooting steps, common causes, and best practices to fix SFMC journey issues and keep your campaigns running smoothly. (152 characters)<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-18","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts - Martech Monitoring<\/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:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts - Martech Monitoring\" \/>\n<meta property=\"og:description\" content=\"Journey Builder entry source not working? Discover expert troubleshooting steps, common causes, and best practices to fix SFMC journey issues and keep your campaigns running smoothly. (152 characters)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/\" \/>\n<meta property=\"og:site_name\" content=\"Martech Monitoring\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-04T15:34:08+00:00\" \/>\n<meta name=\"author\" content=\"Martech Monitoring Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Martech Monitoring Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/\"},\"author\":{\"name\":\"Martech Monitoring Team\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#\\\/schema\\\/person\\\/afd6b3932a86aecb0e3714d726a70c7d\"},\"headline\":\"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts\",\"datePublished\":\"2026-04-04T15:34:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/\"},\"wordCount\":1211,\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/\",\"url\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/\",\"name\":\"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts - Martech Monitoring\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-04-04T15:34:08+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#\\\/schema\\\/person\\\/afd6b3932a86aecb0e3714d726a70c7d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/\",\"name\":\"Martech Monitoring\",\"description\":\"SFMC Silent Failure Detection\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#\\\/schema\\\/person\\\/afd6b3932a86aecb0e3714d726a70c7d\",\"name\":\"Martech Monitoring Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g\",\"caption\":\"Martech Monitoring Team\"},\"sameAs\":[\"https:\\\/\\\/martechmonitoring.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/author\\\/martech-monitoring\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts - Martech Monitoring","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:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/","og_locale":"en_US","og_type":"article","og_title":"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts - Martech Monitoring","og_description":"Journey Builder entry source not working? Discover expert troubleshooting steps, common causes, and best practices to fix SFMC journey issues and keep your campaigns running smoothly. (152 characters)","og_url":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/","og_site_name":"Martech Monitoring","article_published_time":"2026-04-04T15:34:08+00:00","author":"Martech Monitoring Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Martech Monitoring Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/#article","isPartOf":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/"},"author":{"name":"Martech Monitoring Team","@id":"https:\/\/www.martechmonitoring.com\/blog\/#\/schema\/person\/afd6b3932a86aecb0e3714d726a70c7d"},"headline":"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts","datePublished":"2026-04-04T15:34:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/"},"wordCount":1211,"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/","url":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/","name":"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts - Martech Monitoring","isPartOf":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/#website"},"datePublished":"2026-04-04T15:34:08+00:00","author":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/#\/schema\/person\/afd6b3932a86aecb0e3714d726a70c7d"},"breadcrumb":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.martechmonitoring.com\/blog\/journey-builder-entry-source-not-working-troubleshooting-guide-for-sfmc-experts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.martechmonitoring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Journey Builder Entry Source Not Working: Troubleshooting Guide for SFMC Experts"}]},{"@type":"WebSite","@id":"https:\/\/www.martechmonitoring.com\/blog\/#website","url":"https:\/\/www.martechmonitoring.com\/blog\/","name":"Martech Monitoring","description":"SFMC Silent Failure Detection","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.martechmonitoring.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.martechmonitoring.com\/blog\/#\/schema\/person\/afd6b3932a86aecb0e3714d726a70c7d","name":"Martech Monitoring Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g","caption":"Martech Monitoring Team"},"sameAs":["https:\/\/martechmonitoring.com\/blog"],"url":"https:\/\/www.martechmonitoring.com\/blog\/author\/martech-monitoring\/"}]}},"_links":{"self":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts\/18","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/comments?post=18"}],"version-history":[{"count":1,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts\/18\/revisions"}],"predecessor-version":[{"id":36,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts\/18\/revisions\/36"}],"wp:attachment":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/media?parent=18"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/categories?post=18"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/tags?post=18"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}