{"id":913,"date":"2021-09-27T17:39:17","date_gmt":"2021-09-28T00:39:17","guid":{"rendered":"https:\/\/jeremywhittaker.com\/?p=913"},"modified":"2021-09-27T19:51:17","modified_gmt":"2021-09-28T02:51:17","slug":"how-to-enable-python-api-in-interactive-brokers-trader-workstation","status":"publish","type":"post","link":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/","title":{"rendered":"How to enable Python API in Interactive Brokers Trader Workstation"},"content":{"rendered":"\n<p>You&#8217;re going to want to open Interactive Brokers trader workstation as normal. Then head over to edit&gt;Global Configuration and check that first box. <\/p>\n\n\n\n<p>Enable ActiveX and Socket Clients<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"683\" data-src=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg\" alt=\"\" class=\"wp-image-918 lazyload\" data-srcset=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg 1024w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-300x200.jpg 300w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-768x512.jpg 768w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-450x300.jpg 450w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin.jpg 1283w\" data-sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024\/683;\" \/><\/figure>\n\n\n\n<p>The next thing you&#8217;ll want to download is the API&#8217;s found here &#8211; http:\/\/interactivebrokers.github.io\/<\/p>\n\n\n\n<p>Next, open the command prompt as an administrator and switch directories where you installed it. <\/p>\n\n\n\n<p>d:<\/p>\n\n\n\n<p>D:\\TWS API\\source\\pythonclient<\/p>\n\n\n\n<p>python setup.py install<\/p>\n\n\n\n<p>You will see this if it is completed successfully<\/p>\n\n\n\n<p>Installed c:\\program files\\python39\\lib\\site-packages\\ibapi-9.76.1-py3.9.egg<br>Processing dependencies for ibapi==9.76.1<br>Finished processing dependencies for ibapi==9.76.1<\/p>\n\n\n\n<p>D:\\TWS API\\source\\pythonclient&gt;<\/p>\n\n\n\n<p>I use IntelliJ to to test I&#8217;m going to run a simple command<\/p>\n\n\n\n<p>import ibapi<\/p>\n\n\n\n<p>You can see it ran successfully.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"207\" data-src=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/image-13-1024x207.png\" alt=\"\" class=\"wp-image-923 lazyload\" data-srcset=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/image-13-1024x207.png 1024w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/image-13-300x61.png 300w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/image-13-768x155.png 768w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/image-13-500x101.png 500w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/image-13.png 1054w\" data-sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024\/207;\" \/><\/figure>\n\n\n\n<p>So let&#8217;s test a little further.<\/p>\n\n\n\n<p>I&#8217;m going to run the following Python code<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import ibapi<br><br>from ibapi.client import EClient<br>from ibapi.wrapper import EWrapper<br><br>class IBapi(EWrapper, EClient):<br>    def __init__(self):<br>        EClient.__init__(self, self)<br><br>app = IBapi()<br>app.connect('172.16.105.5', 7496, 123)<br><br><br>app.run()<br><br>import time<br>time.sleep(2)<br>app.disconnect()<\/pre>\n\n\n\n<p>This shows it was successful<\/p>\n\n\n\n<p>&#8220;C:\\Program Files\\Python39\\python.exe&#8221; &#8220;G:\/My Drive\/IdeaProjects\/interactive_brokers\/interactive_brokers_api_test.py&#8221;<br>ERROR -1 2104 Market data farm connection is OK:usfarm.nj<br>ERROR -1 2104 Market data farm connection is OK:cashfarm<br>ERROR -1 2104 Market data farm connection is OK:usfarm<br>ERROR -1 2106 HMDS data farm connection is OK:euhmds<br>ERROR -1 2106 HMDS data farm connection is OK:fundfarm<br>ERROR -1 2106 HMDS data farm connection is OK:ushmds<br>ERROR -1 2158 Sec-def data farm connection is OK:secdefnj<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You&#8217;re going to want to open Interactive Brokers trader workstation as normal. Then head over to edit&gt;Global Configuration and check that first box. Enable ActiveX and Socket Clients&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-913","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to enable Python API in Interactive Brokers Trader Workstation - Jeremy Whittaker<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to enable Python API in Interactive Brokers Trader Workstation - Jeremy Whittaker\" \/>\n<meta property=\"og:description\" content=\"You&#8217;re going to want to open Interactive Brokers trader workstation as normal. Then head over to edit&gt;Global Configuration and check that first box. Enable ActiveX and Socket Clients...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/\" \/>\n<meta property=\"og:site_name\" content=\"Jeremy Whittaker\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/WhittakerJeremy\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/WhittakerJeremy\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-28T00:39:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-28T02:51:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg\" \/>\n<meta name=\"author\" content=\"JeremyWhittaker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"JeremyWhittaker\" \/>\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:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/\"},\"author\":{\"name\":\"JeremyWhittaker\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"headline\":\"How to enable Python API in Interactive Brokers Trader Workstation\",\"datePublished\":\"2021-09-28T00:39:17+00:00\",\"dateModified\":\"2021-09-28T02:51:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/\"},\"wordCount\":236,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"image\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/\",\"url\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/\",\"name\":\"How to enable Python API in Interactive Brokers Trader Workstation - Jeremy Whittaker\",\"isPartOf\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg\",\"datePublished\":\"2021-09-28T00:39:17+00:00\",\"dateModified\":\"2021-09-28T02:51:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage\",\"url\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin.jpg\",\"contentUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin.jpg\",\"width\":1283,\"height\":856},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new.jeremywhittaker.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to enable Python API in Interactive Brokers Trader Workstation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/#website\",\"url\":\"https:\/\/new.jeremywhittaker.com\/\",\"name\":\"Jeremy Whittaker\",\"description\":\"Research, software, markets, housing, and energy\",\"publisher\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new.jeremywhittaker.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\",\"name\":\"JeremyWhittaker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\",\"caption\":\"JeremyWhittaker\"},\"logo\":{\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\"},\"sameAs\":[\"http:\/\/www.jeremywhittaker.com\",\"https:\/\/www.facebook.com\/WhittakerJeremy\",\"https:\/\/www.linkedin.com\/in\/jeremywhittaker\/\"],\"url\":\"https:\/\/new.jeremywhittaker.com\/index.php\/author\/jeremywhittaker\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to enable Python API in Interactive Brokers Trader Workstation - Jeremy Whittaker","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"How to enable Python API in Interactive Brokers Trader Workstation - Jeremy Whittaker","og_description":"You&#8217;re going to want to open Interactive Brokers trader workstation as normal. Then head over to edit&gt;Global Configuration and check that first box. Enable ActiveX and Socket Clients...","og_url":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/","og_site_name":"Jeremy Whittaker","article_publisher":"https:\/\/www.facebook.com\/WhittakerJeremy","article_author":"https:\/\/www.facebook.com\/WhittakerJeremy","article_published_time":"2021-09-28T00:39:17+00:00","article_modified_time":"2021-09-28T02:51:17+00:00","og_image":[{"url":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg","type":"","width":"","height":""}],"author":"JeremyWhittaker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"JeremyWhittaker","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#article","isPartOf":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/"},"author":{"name":"JeremyWhittaker","@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"headline":"How to enable Python API in Interactive Brokers Trader Workstation","datePublished":"2021-09-28T00:39:17+00:00","dateModified":"2021-09-28T02:51:17+00:00","mainEntityOfPage":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/"},"wordCount":236,"commentCount":0,"publisher":{"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"image":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage"},"thumbnailUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/","url":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/","name":"How to enable Python API in Interactive Brokers Trader Workstation - Jeremy Whittaker","isPartOf":{"@id":"https:\/\/new.jeremywhittaker.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage"},"image":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage"},"thumbnailUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin-1024x683.jpg","datePublished":"2021-09-28T00:39:17+00:00","dateModified":"2021-09-28T02:51:17+00:00","breadcrumb":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#primaryimage","url":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin.jpg","contentUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2021\/09\/Interactive-Brokers-API-plugin.jpg","width":1283,"height":856},{"@type":"BreadcrumbList","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2021\/09\/27\/how-to-enable-python-api-in-interactive-brokers-trader-workstation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new.jeremywhittaker.com\/"},{"@type":"ListItem","position":2,"name":"How to enable Python API in Interactive Brokers Trader Workstation"}]},{"@type":"WebSite","@id":"https:\/\/new.jeremywhittaker.com\/#website","url":"https:\/\/new.jeremywhittaker.com\/","name":"Jeremy Whittaker","description":"Research, software, markets, housing, and energy","publisher":{"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new.jeremywhittaker.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c","name":"JeremyWhittaker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g","caption":"JeremyWhittaker"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g"},"sameAs":["http:\/\/www.jeremywhittaker.com","https:\/\/www.facebook.com\/WhittakerJeremy","https:\/\/www.linkedin.com\/in\/jeremywhittaker\/"],"url":"https:\/\/new.jeremywhittaker.com\/index.php\/author\/jeremywhittaker\/"}]}},"_links":{"self":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts\/913","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/comments?post=913"}],"version-history":[{"count":0,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts\/913\/revisions"}],"wp:attachment":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/media?parent=913"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/categories?post=913"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/tags?post=913"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}