{"id":90459,"date":"2025-06-24T13:24:31","date_gmt":"2025-06-24T07:54:31","guid":{"rendered":"https:\/\/www.seminarsonly.com\/news\/?p=90459"},"modified":"2025-06-24T22:05:36","modified_gmt":"2025-06-24T16:35:36","slug":"solved-certificate-verify-unable-to-get-local-issuer-certificate","status":"publish","type":"post","link":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/","title":{"rendered":"Solved : Certificate Verify Unable to Get Local Issuer Certificate"},"content":{"rendered":"<h3 data-start=\"0\" data-end=\"280\"><span style=\"color: #008000;\"><em>The error <strong data-start=\"10\" data-end=\"81\">&#8220;certificate verify failed: unable to get local issuer certificate&#8221;<\/strong> typically occurs when a program (e.g., Python, curl, or an API client) can&#8217;t verify the SSL certificate of the server because it doesn&#8217;t have access to a trusted <strong data-start=\"244\" data-end=\"279\">root certificate authority (CA)<\/strong>.<\/em><\/span><\/h3>\n<hr data-start=\"282\" data-end=\"285\" \/>\n<h2 data-start=\"287\" data-end=\"307\"><span style=\"color: #800000;\">\ud83d\udd27 Common Causes<\/span><\/h2>\n<ol data-start=\"309\" data-end=\"628\">\n<li data-start=\"309\" data-end=\"406\">\n<p data-start=\"312\" data-end=\"406\"><strong data-start=\"312\" data-end=\"339\">Missing CA certificates<\/strong> (your system or language runtime doesn&#8217;t have the right CA chain).<\/p>\n<\/li>\n<li data-start=\"407\" data-end=\"474\">\n<p data-start=\"410\" data-end=\"474\"><strong data-start=\"410\" data-end=\"441\">Outdated certificate bundle<\/strong> (especially in Python or macOS).<\/p>\n<\/li>\n<li data-start=\"475\" data-end=\"553\">\n<p data-start=\"478\" data-end=\"553\"><strong data-start=\"478\" data-end=\"505\">Behind a proxy\/firewall<\/strong> that intercepts SSL (e.g., corporate networks).<\/p>\n<\/li>\n<li data-start=\"554\" data-end=\"628\">\n<p data-start=\"557\" data-end=\"628\"><strong data-start=\"557\" data-end=\"613\">The server itself has a misconfigured SSL cert chain<\/strong> (less common).<\/p>\n<\/li>\n<\/ol>\n<hr data-start=\"630\" data-end=\"633\" \/>\n<h2 data-start=\"635\" data-end=\"665\"><span style=\"color: #800000;\">\u2705 Solutions by Environment<\/span><\/h2>\n<h3 data-start=\"667\" data-end=\"709\"><span style=\"color: #000080;\">\ud83d\udc0d <strong data-start=\"675\" data-end=\"709\">Python (Requests, pip, urllib)<\/strong><\/span><\/h3>\n<ol data-start=\"711\" data-end=\"1242\">\n<li data-start=\"711\" data-end=\"884\">\n<p data-start=\"714\" data-end=\"752\"><strong data-start=\"714\" data-end=\"752\">Use <code data-start=\"720\" data-end=\"729\">certifi<\/code> (trusted CA bundle):<\/strong><\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-python\"><code class=\"whitespace-pre! language-python\"><span class=\"hljs-keyword\">import<\/span> requests<br \/>\n<span class=\"hljs-keyword\">import<\/span> certifi<\/code><\/code>response = requests.get(<span class=\"hljs-string\">&#8220;https:\/\/example.com&#8221;<\/span>, verify=certifi.where())<\/p>\n<\/div>\n<\/div>\n<\/li>\n<li data-start=\"886\" data-end=\"1102\">\n<p data-start=\"889\" data-end=\"909\"><strong data-start=\"889\" data-end=\"909\">Update CA Certs:<\/strong><\/p>\n<ul data-start=\"913\" data-end=\"1102\">\n<li data-start=\"913\" data-end=\"1020\">\n<p data-start=\"915\" data-end=\"943\">If you&#8217;re on <strong data-start=\"928\" data-end=\"937\">macOS<\/strong>, run:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre!\">\/Applications\/Python 3.x\/Install Certificates.<span class=\"hljs-built_in\">command<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li data-start=\"1024\" data-end=\"1102\">\n<p data-start=\"1026\" data-end=\"1049\">Or reinstall <code data-start=\"1039\" data-end=\"1048\">certifi<\/code>:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre!\">pip install <span class=\"hljs-attr\">--upgrade<\/span> certifi<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<\/ul>\n<\/li>\n<li data-start=\"1104\" data-end=\"1242\">\n<p data-start=\"1107\" data-end=\"1169\"><strong data-start=\"1107\" data-end=\"1135\">Disable SSL verification<\/strong> (not recommended for production):<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-python\">requests.get(<span class=\"hljs-string\">\"https:\/\/example.com\"<\/span>, verify=<span class=\"hljs-literal\">False<\/span>)<br \/>\n<\/code><\/div>\n<\/div>\n<div dir=\"ltr\"><\/div>\n<\/li>\n<\/ol>\n<h3>Also Read : <a href=\"https:\/\/www.seminarsonly.com\/news\/peacock-military-discount-deals-and-offers\/\">Peacock Military Discount<\/a><\/h3>\n<hr data-start=\"1244\" data-end=\"1247\" \/>\n<h2 data-start=\"1249\" data-end=\"1280\"><span style=\"color: #000080;\">\ud83e\uddf0 <strong data-start=\"1257\" data-end=\"1280\">Curl \/ Command Line<\/strong><\/span><\/h2>\n<ul data-start=\"1282\" data-end=\"1510\">\n<li data-start=\"1282\" data-end=\"1445\">\n<p data-start=\"1284\" data-end=\"1316\">Update CA bundle on your system:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo apt-get install ca-certificates  <span class=\"hljs-comment\"># Debian\/Ubuntu<\/span><br \/>\nsudo yum install ca-certificates      <span class=\"hljs-comment\"># Red Hat\/CentOS<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<li data-start=\"1447\" data-end=\"1510\">\n<p data-start=\"1449\" data-end=\"1464\">Test with curl:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">curl -v https:\/\/example.com<br \/>\n<\/code><\/div>\n<\/div>\n<\/li>\n<\/ul>\n<hr data-start=\"1512\" data-end=\"1515\" \/>\n<h2 data-start=\"1517\" data-end=\"1562\"><span style=\"color: #000080;\">\ud83c\udf0d <strong data-start=\"1525\" data-end=\"1562\">macOS Users (Python via Homebrew)<\/strong><\/span><\/h2>\n<p data-start=\"1564\" data-end=\"1580\">Run this script:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">\/Applications\/Python\\ 3.x\/Install\\ Certificates.<span class=\"hljs-built_in\">command<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1650\" data-end=\"1720\">It installs the missing certs needed for HTTPS verification by Python.<\/p>\n<hr data-start=\"1722\" data-end=\"1725\" \/>\n<h3 data-start=\"1727\" data-end=\"1766\"><span style=\"color: #000080;\">\ud83c\udfe2 <strong data-start=\"1735\" data-end=\"1766\">Corporate or Proxy Networks<\/strong><\/span><\/h3>\n<p data-start=\"1768\" data-end=\"1851\">If you\u2019re behind a firewall or proxy that uses <strong data-start=\"1815\" data-end=\"1833\">SSL inspection<\/strong>, you may need to:<\/p>\n<ul data-start=\"1852\" data-end=\"1975\">\n<li data-start=\"1852\" data-end=\"1894\">\n<p data-start=\"1854\" data-end=\"1894\"><strong data-start=\"1854\" data-end=\"1894\">Export your organization\u2019s root cert<\/strong><\/p>\n<\/li>\n<li data-start=\"1895\" data-end=\"1975\">\n<p data-start=\"1897\" data-end=\"1975\"><strong data-start=\"1897\" data-end=\"1932\">Add it to the trusted CA bundle<\/strong> in your tool (e.g., Python, curl, browser)<\/p>\n<\/li>\n<\/ul>\n<hr data-start=\"1977\" data-end=\"1980\" \/>\n<h2 data-start=\"1982\" data-end=\"1998\"><span style=\"color: #800000;\">\ud83d\udd12 Final Tip<\/span><\/h2>\n<p data-start=\"2000\" data-end=\"2053\">You can test the server\u2019s SSL certificate chain with:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">openssl s_client -connect example.com:443 -showcerts.<\/code><\/div>\n<\/div>\n<div dir=\"ltr\"><\/div>\n<div dir=\"ltr\"><span data-huuid=\"9945990068179005264\">The &#8220;certificate verify failed: unable to get local issuer certificate&#8221; error\u00a0<mark class=\"QVRyCf\">occurs when your system or application cannot verify the authenticity of a website&#8217;s SSL\/TLS certificate because it&#8217;s missing the necessary root or intermediate certificates<\/mark>.\u00a0<\/span><span data-huuid=\"9945990068179002291\">This prevents establishing a secure connection, as the client (your system\/application) cannot confirm that the website&#8217;s certificate was issued by a trusted authority.<span class=\"pjBG2e\" data-cid=\"df0d1506-4b78-4af8-8153-bdd5b793a3ef\"><span class=\"UV3uM\">\u00a0<\/span><\/span><\/span><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The error &#8220;certificate verify failed: unable to get local issuer certificate&#8221; typically occurs when a program (e.g., Python, curl, or an API client) can&#8217;t verify the SSL certificate of the&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6048],"tags":[],"class_list":["post-90459","post","type-post","status-publish","format-standard","hentry","category-error-fix"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Solved : Certificate Verify Unable to Get Local Issuer Certificate - Seminarsonly.com<\/title>\n<meta name=\"description\" content=\"The &quot;certificate verify failed: unable to get local issuer certificate&quot; error\u00a0occurs when your system or application cannot verify the authenticity of a website&#039;s SSL\/TLS certificate because it&#039;s missing the necessary root or intermediate certificates.\u00a0\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Solved : Certificate Verify Unable to Get Local Issuer Certificate\" \/>\n<meta property=\"og:description\" content=\"The &quot;certificate verify failed: unable to get local issuer certificate&quot; error\u00a0occurs when your system or application cannot verify the authenticity of a website&#039;s SSL\/TLS certificate because it&#039;s missing the necessary root or intermediate certificates.\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\" \/>\n<meta property=\"og:site_name\" content=\"Seminarsonly.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/seminarsonly\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-24T07:54:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-24T16:35:36+00:00\" \/>\n<meta name=\"author\" content=\"Freddy John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:site\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Freddy John\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\"},\"author\":{\"name\":\"Freddy John\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"headline\":\"Solved : Certificate Verify Unable to Get Local Issuer Certificate\",\"datePublished\":\"2025-06-24T07:54:31+00:00\",\"dateModified\":\"2025-06-24T16:35:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\"},\"wordCount\":292,\"commentCount\":0,\"articleSection\":[\"Error Fix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\",\"url\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\",\"name\":\"Solved : Certificate Verify Unable to Get Local Issuer Certificate - Seminarsonly.com\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\"},\"datePublished\":\"2025-06-24T07:54:31+00:00\",\"dateModified\":\"2025-06-24T16:35:36+00:00\",\"author\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"description\":\"The \\\"certificate verify failed: unable to get local issuer certificate\\\" error\u00a0occurs when your system or application cannot verify the authenticity of a website's SSL\/TLS certificate because it's missing the necessary root or intermediate certificates.\u00a0\",\"breadcrumb\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seminarsonly.com\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solved : Certificate Verify Unable to Get Local Issuer Certificate\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\",\"url\":\"https:\/\/seminarsonly.com\/news\/\",\"name\":\"Seminarsonly.com\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seminarsonly.com\/news\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\",\"name\":\"Freddy John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"caption\":\"Freddy John\"},\"sameAs\":[\"https:\/\/seminarsonly.com\/news\"],\"url\":\"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Solved : Certificate Verify Unable to Get Local Issuer Certificate - Seminarsonly.com","description":"The \"certificate verify failed: unable to get local issuer certificate\" error\u00a0occurs when your system or application cannot verify the authenticity of a website's SSL\/TLS certificate because it's missing the necessary root or intermediate certificates.\u00a0","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:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/","og_locale":"en_US","og_type":"article","og_title":"Solved : Certificate Verify Unable to Get Local Issuer Certificate","og_description":"The \"certificate verify failed: unable to get local issuer certificate\" error\u00a0occurs when your system or application cannot verify the authenticity of a website's SSL\/TLS certificate because it's missing the necessary root or intermediate certificates.\u00a0","og_url":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/","og_site_name":"Seminarsonly.com","article_publisher":"https:\/\/facebook.com\/seminarsonly","article_published_time":"2025-06-24T07:54:31+00:00","article_modified_time":"2025-06-24T16:35:36+00:00","author":"Freddy John","twitter_card":"summary_large_image","twitter_creator":"@seminarsonly","twitter_site":"@seminarsonly","twitter_misc":{"Written by":"Freddy John","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#article","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/"},"author":{"name":"Freddy John","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"headline":"Solved : Certificate Verify Unable to Get Local Issuer Certificate","datePublished":"2025-06-24T07:54:31+00:00","dateModified":"2025-06-24T16:35:36+00:00","mainEntityOfPage":{"@id":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/"},"wordCount":292,"commentCount":0,"articleSection":["Error Fix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/","url":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/","name":"Solved : Certificate Verify Unable to Get Local Issuer Certificate - Seminarsonly.com","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/#website"},"datePublished":"2025-06-24T07:54:31+00:00","dateModified":"2025-06-24T16:35:36+00:00","author":{"@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"description":"The \"certificate verify failed: unable to get local issuer certificate\" error\u00a0occurs when your system or application cannot verify the authenticity of a website's SSL\/TLS certificate because it's missing the necessary root or intermediate certificates.\u00a0","breadcrumb":{"@id":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/seminarsonly.com\/news\/solved-certificate-verify-unable-to-get-local-issuer-certificate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seminarsonly.com\/news\/"},{"@type":"ListItem","position":2,"name":"Solved : Certificate Verify Unable to Get Local Issuer Certificate"}]},{"@type":"WebSite","@id":"https:\/\/seminarsonly.com\/news\/#website","url":"https:\/\/seminarsonly.com\/news\/","name":"Seminarsonly.com","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seminarsonly.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd","name":"Freddy John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","caption":"Freddy John"},"sameAs":["https:\/\/seminarsonly.com\/news"],"url":"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/"}]}},"_links":{"self":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/90459","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/comments?post=90459"}],"version-history":[{"count":0,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/90459\/revisions"}],"wp:attachment":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/media?parent=90459"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/categories?post=90459"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/tags?post=90459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}