{"id":4194,"date":"2023-05-02T16:44:51","date_gmt":"2023-05-02T23:44:51","guid":{"rendered":"https:\/\/jeremywhittaker.com\/?p=4194"},"modified":"2023-05-02T16:44:55","modified_gmt":"2023-05-02T23:44:55","slug":"getting-started-with-interactivebrokers-tws-api","status":"publish","type":"post","link":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/","title":{"rendered":"Getting Started with InteractiveBrokers TWS API"},"content":{"rendered":"\n<p>This is a simple tutorial on how to get started with TWS API from Interactive Brokers and subscribe to a few test symbols to get stock updates in Ubuntu. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>You need to first install the Trader Workstation client &#8211; https:\/\/www.interactivebrokers.com\/en\/trading\/tws-updateable-latest.php<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/download2.interactivebrokers.com\/installers\/tws\/latest\/tws-latest-linux-x64.sh\n.\/tws-latest-linux-x64.sh<\/code><\/pre>\n\n\n\n<p>You need to launch the client and login with your credentials. You then need to go to Global Configuration and &#8220;Enable ActiveX and Socket Clients&#8221;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2.png\"><img decoding=\"async\" width=\"1024\" height=\"552\" data-src=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png\" alt=\"\" class=\"wp-image-4195 lazyload\" data-srcset=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png 1024w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-300x162.png 300w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-768x414.png 768w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-500x270.png 500w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2.png 1430w\" data-sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024\/552;\" \/><\/a><\/figure>\n\n\n\n<p><br>Next you need to download install the TWS API<\/p>\n\n\n\n<p>Download and Unzip<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/interactivebrokers.github.io\/downloads\/twsapi_macunix.1019.01.zip\nunzip twsapi_macunix.1019.01.zip \n\n\n\r<\/code><\/pre>\n\n\n\n<p>Install<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd IBJts\/source\/pythonclient\nconda activate interacivebrokers\npython3 setup.py install<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>Now that both of these are installed here is the Python code to subscribe to some data. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from ibapi.wrapper import EWrapper\r\nfrom ibapi.client import EClient\r\nfrom ibapi.contract import Contract\r\nfrom ibapi.ticktype import TickTypeEnum\r\nfrom threading import Thread\r\n\r\n\r\nclass IBQuotePrint(EWrapper, EClient):\r\n    def __init__(self):\r\n        EClient.__init__(self, self)\r\n\r\n    def error(self, reqId, errorCode, errorString, errorExtraInfo):\r\n        print(f\"Error {reqId}: {errorCode} - {errorString}\")\r\n\r\n    def tickPrice(self, reqId, tickType, price, attrib):\r\n        print(f\"Request {reqId}: {TickTypeEnum.to_str(tickType)} - Price: {price}\")\r\n\r\n\r\ndef main():\r\n    # Define the symbols you want to get quotes for\r\n    symbols = &#91;'AAPL', 'GOOGL', 'MSFT']\r\n\r\n    # Create the IB client and connect to the API\r\n    app = IBQuotePrint()\r\n    app.connect('127.0.0.1', 7497, clientId=1)\r\n\r\n    # Start the message thread\r\n    thread = Thread(target=app.run)\r\n    thread.start()\r\n\r\n    # Define a function to create a stock contract\r\n    def create_stock_contract(symbol):\r\n        contract = Contract()\r\n        contract.symbol = symbol\r\n        contract.secType = 'STK'\r\n        contract.exchange = 'SMART'\r\n        contract.currency = 'USD'\r\n        return contract\r\n\r\n    # Request quotes for each symbol\r\n    for i, symbol in enumerate(symbols, start=1):\r\n        contract = create_stock_contract(symbol)\r\n        app.reqMktData(i, contract, '', False, True, &#91;])\r\n\r\n    # Wait for user to press Enter to exit\r\n    input(\"\\nPress Enter to exit...\\n\")\r\n\r\n    # Disconnect and clean up\r\n    app.disconnect()\r\n    thread.join()\r\n\r\n\r\nif __name__ == \"__main__\":\r\n    main()\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>This is a simple tutorial on how to get started with TWS API from Interactive Brokers and subscribe to a few test symbols to get stock updates in&#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-4194","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>Getting Started with InteractiveBrokers TWS API - 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=\"Getting Started with InteractiveBrokers TWS API - Jeremy Whittaker\" \/>\n<meta property=\"og:description\" content=\"This is a simple tutorial on how to get started with TWS API from Interactive Brokers and subscribe to a few test symbols to get stock updates in...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/\" \/>\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=\"2023-05-02T23:44:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-02T23:44:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png\" \/>\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\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/\"},\"author\":{\"name\":\"JeremyWhittaker\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"headline\":\"Getting Started with InteractiveBrokers TWS API\",\"datePublished\":\"2023-05-02T23:44:51+00:00\",\"dateModified\":\"2023-05-02T23:44:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/\"},\"wordCount\":108,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"image\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/\",\"url\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/\",\"name\":\"Getting Started with InteractiveBrokers TWS API - Jeremy Whittaker\",\"isPartOf\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png\",\"datePublished\":\"2023-05-02T23:44:51+00:00\",\"dateModified\":\"2023-05-02T23:44:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage\",\"url\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2.png\",\"contentUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2.png\",\"width\":1430,\"height\":771},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new.jeremywhittaker.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started with InteractiveBrokers TWS API\"}]},{\"@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":"Getting Started with InteractiveBrokers TWS API - 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":"Getting Started with InteractiveBrokers TWS API - Jeremy Whittaker","og_description":"This is a simple tutorial on how to get started with TWS API from Interactive Brokers and subscribe to a few test symbols to get stock updates in...","og_url":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/","og_site_name":"Jeremy Whittaker","article_publisher":"https:\/\/www.facebook.com\/WhittakerJeremy","article_author":"https:\/\/www.facebook.com\/WhittakerJeremy","article_published_time":"2023-05-02T23:44:51+00:00","article_modified_time":"2023-05-02T23:44:55+00:00","og_image":[{"url":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png","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\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#article","isPartOf":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/"},"author":{"name":"JeremyWhittaker","@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"headline":"Getting Started with InteractiveBrokers TWS API","datePublished":"2023-05-02T23:44:51+00:00","dateModified":"2023-05-02T23:44:55+00:00","mainEntityOfPage":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/"},"wordCount":108,"commentCount":0,"publisher":{"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"image":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage"},"thumbnailUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/","url":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/","name":"Getting Started with InteractiveBrokers TWS API - Jeremy Whittaker","isPartOf":{"@id":"https:\/\/new.jeremywhittaker.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage"},"image":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage"},"thumbnailUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2-1024x552.png","datePublished":"2023-05-02T23:44:51+00:00","dateModified":"2023-05-02T23:44:55+00:00","breadcrumb":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#primaryimage","url":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2.png","contentUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2023\/05\/image-2.png","width":1430,"height":771},{"@type":"BreadcrumbList","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2023\/05\/02\/getting-started-with-interactivebrokers-tws-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new.jeremywhittaker.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started with InteractiveBrokers TWS API"}]},{"@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\/4194","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=4194"}],"version-history":[{"count":0,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts\/4194\/revisions"}],"wp:attachment":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/media?parent=4194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/categories?post=4194"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/tags?post=4194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}