{"id":193950,"date":"2023-07-25T11:11:49","date_gmt":"2023-07-25T15:11:49","guid":{"rendered":"https:\/\/ibkrcampus.com\/?post_type=trading-lessons&#038;p=193950"},"modified":"2025-10-03T13:16:04","modified_gmt":"2025-10-03T17:16:04","slug":"requesting-market-data","status":"publish","type":"trading-lessons","link":"https:\/\/www.interactivebrokers.com\/campus\/trading-lessons\/requesting-market-data\/","title":{"rendered":"Requesting Market Data"},"content":{"rendered":"\n<p>Hello, and welcome to this lesson on requesting market data in the Interactive Brokers Client Portal API. In this lesson, we will be discussing how to find the snapshot fields, how to request live market data snapshots, and how to request historical market data.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Finding Market Data Fields<\/h4>\n\n\n\n<p>Let\u2019s begin by first looking at the Interactive Brokers endpoints documentation page. If we scroll down, we will eventually find our iserver\/marketdata\/snapshot endpoint that we will be working with today. If we click on the banner, we will expand the snapshot section to reveal more information on the endpoint. The reason to point out this section is that we can find what data values we want to work with. Under the \u2018Responses\u2019 portion, I can see here where it shows \u2018Model\u2019. If we click that, we should find a new grey box.<\/p>\n\n\n\n<p>I can click that right-pointed arrow to expand things, I will see a massive list of all available field values to use with the snapshot endpoint. Some of the most popular values are 31, 55, 84, and 86. As we can see by looking through this page, I will retrieve my last price, symbol, bid, and ask values respectively. There are many more values here that we encourage you to explore, but this will give us a great example to get started. With our fields found, we can start taking a closer look at the actual request.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Requesting Market Data<\/h4>\n\n\n\n<p>Jumping back to VS Code, I will create a new program with my typical framework, and a method named marketSnapshot(). I will create my endpoint for my market data request and set to \u201ciserver\/marketdata\/snapshot\u201d. The snapshot endpoint utilizes a GET request, so now we can start building the parameters list.<\/p>\n\n\n\n<p>We can first create a conid variable, and set it equal to \u201cconids=265598\u201d. Some viewers may have picked up the fact that we stated \u201cconids\u201d instead of just \u201cconid\u201d. That is because this endpoint allows for multiple contract requests at once. You will just need to use a comma to separate each contract ID. Let\u2019s do that by including IBM, or 8314.<\/p>\n\n\n\n<p>With our contracts set, I will move on to our fields variable. I will set this variable equal to \u201cfields=31,55,84,86\u201d based on what we found before. That is all we need in order to get started with our requests. I will create a params variable, and concatenate my parameters. After that I can create my full url with the request_url set to \u201c\u201d.join([base_url, endpoint, \u201c?\u201d, params]).<\/p>\n\n\n\n<p>Again, I can create a market_req variable and create a new GET request. I can use my json.dumps() method from before to help with readability. And finally, we will print both variables to see our response status and body. So if we make a few requests, we should see all of our fields returned.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Discussing the return<\/h4>\n\n\n\n<p>I would like to take a moment to discuss how data is requested and returned. The first request will typically only display the coindex, and the conid. This is just to signify that you have requested data for the given contract. You can think of it as instantiating the market data stream. Often times for stocks, you can make another follow up request right away, and receive data. However, it\u2019s important to note that fields like 7310, or the Option\u2019s Greek Theta, can take a few requests, or even a few moments to begin. That is because some values may not be readily available and must be calculated by Interactive Brokers before returning. Especially on less active strikes, this can take up to a minute before returning these fields.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-requesting-historical-data\">Requesting Historical Data<\/h4>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; With our live market data returning as intended, we can now move on to a historical market data request. In addition to our standard framework, I will add an endpoint variable, and set this equal to \u201chmds\/history\u201d for my historical data request. This is yet another GET request, so this will be built with a set of parameters: conid, period, bar and optionally, outsideRth and barType.<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; As opposed to live data, the historical data request will only allow a single conid at a time. As such, I will make a conid variable and set it equal to 265598 for AAPL. Now, I can make a period variable. This will determine the total range of data returned. It can scale from minutes, hours, days, weeks, months, or even years. But given our example today, I will set it equal to \u20181w\u2019 for 1 week. Then I can create my bar variable and set it equal to \u20181d\u2019, so I can see each day\u2019s bar for the whole week.<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If I wanted to, I could make a request now and receive data without issue. However, I would like to move on to our optional parameters. I will start by setting outsideRth to \u2018true\u2019. By default, outsideRth is set to \u2018false\u2019 so we only see regular trading hours; however, we can choose to disable this. Next, I will create a barType variable and, in my case, set it equal to \u2018midpoint\u2019.<\/p>\n\n\n\n<p>Available values:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Period: {Xmin, Xh, Xd, Xw, Xm, Xy}<\/li>\n\n\n\n<li>Bar: {Xmin, Xh, Xd, Xw, Xm}<\/li>\n\n\n\n<li>outsideRth: {true (for times outside the 9:30 \u2013 16:00 trading hours), false (for those during regular trading hours only)}<\/li>\n\n\n\n<li>barType: &nbsp;&nbsp;{last, midprice, bid, ask, inventory}<\/li>\n<\/ul>\n\n\n\n<p>Again, I will create a few join variables followed by my request, json, and print values. And so if I request this data, we will see 7 bars returned, for our requested 7 days, along with their OHLC values. It\u2019s important to note that some values, such as the default \u2018last\u2019 value for the barType parameter will return Volume for the bar as well, notated by the \u2018v\u2019 field returned. Please feel free to explore our available values for both of these endpoints to find the best data for you.<\/p>\n\n\n\n<p>Thank you for watching this lesson on requesting market data in the Client Portal API. If you find this lesson helpful, please check out our other lessons in the Client Portal API tutorial series.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-code-snippet-livedata-py\">Code Snippet &#8211; liveData.py<\/h4>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import requests\nimport json\n\n# Disable SSL Warnings\nimport urllib3\nurllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)\n\ndef marketSnapshot():\n    base_url = \"https:\/\/localhost:5000\/v1\/api\/\"\n    endpoint = \"iserver\/marketdata\/snapshot\"\n\n    conid=\"conids=265598,8314\"\n    fields=\"fields=31,55,84,86\"\n\n\n    params = \"&amp;\".join([conid, fields])\n    request_url = \"\".join([base_url, endpoint, \"?\", params])\n\n    md_req = requests.get(url=request_url, verify=False)\n    md_json = json.dumps(md_req.json(), indent=2)\n\n    print(md_req)\n    print(md_json)\n\nif __name__ == \"__main__\":\n    marketSnapshot()<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-code-snippet-histdata-py\">Code Snippet &#8211; histData.py<\/h4>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import requests\nimport json\n\n# Disable SSL Warnings\nimport urllib3\nurllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)\n\ndef historicalData():\n    base_url = \"https:\/\/localhost:5000\/v1\/api\/\"\n    endpoint = \"hmds\/history\"\n\n    conid=\"conid=265598\"\n    period=\"period=1w\"\n    bar=\"bar=1d\"\n    outsideRth=\"outsideRth=true\"\n    barType=\"barType=midpoint\"\n\n    params = \"&amp;\".join([conid, period, bar,outsideRth, barType])\n    request_url = \"\".join([base_url, endpoint, \"?\", params])\n\n    hd_req = requests.get(url=request_url, verify=False)\n    hd_json = json.dumps(hd_req.json(), indent=2)\n\n    print(hd_req)\n    print(hd_json)\n\nif __name__ == \"__main__\":\n    historicalData()<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as well as historical market data using Python and the requests library.<\/p>\n","protected":false},"author":850,"featured_media":193951,"parent":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"contributors-categories":[13576],"traders-academy":[13126,13128,13132],"class_list":{"0":"post-193950","1":"trading-lessons","2":"type-trading-lessons","3":"status-publish","4":"has-post-thumbnail","6":"contributors-categories-interactive-brokers","7":"traders-academy-intermediate-trading","8":"traders-academy-level","9":"traders-academy-trading-lesson"},"pp_statuses_selecting_workflow":false,"pp_workflow_action":"current","pp_status_selection":"publish","acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Archives | Traders&#039; Academy | IBKR Campus<\/title>\n<meta name=\"description\" content=\"We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as...\" \/>\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.interactivebrokers.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/193950\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Requesting Market Data | IBKR Campus US\" \/>\n<meta property=\"og:description\" content=\"We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as well as historical market data using Python and the requests library.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.interactivebrokers.com\/campus\/trading-lessons\/requesting-market-data\/\" \/>\n<meta property=\"og:site_name\" content=\"IBKR Campus US\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-03T17:16:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/07\/cp-api4-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\\\/\\\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/\",\n\t            \"name\": \"Requesting Market Data | IBKR Campus US\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#website\"\n\t            },\n\t            \"primaryImageOfPage\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/07\\\/cp-api4-1.jpg\",\n\t            \"datePublished\": \"2023-07-25T15:11:49+00:00\",\n\t            \"dateModified\": \"2025-10-03T17:16:04+00:00\",\n\t            \"description\": \"We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as well as historical market data using Python and the requests library.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"ImageObject\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/#primaryimage\",\n\t            \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/07\\\/cp-api4-1.jpg\",\n\t            \"contentUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/07\\\/cp-api4-1.jpg\",\n\t            \"width\": 1920,\n\t            \"height\": 1080\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/requesting-market-data\\\/#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Academy Lessons\",\n\t                    \"item\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/trading-lessons\\\/\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"Requesting Market Data\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#website\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/\",\n\t            \"name\": \"IBKR Campus US\",\n\t            \"description\": \"Financial Education from Interactive Brokers\",\n\t            \"publisher\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\"\n\t            },\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Organization\",\n\t            \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#organization\",\n\t            \"name\": \"Interactive Brokers\",\n\t            \"alternateName\": \"IBKR\",\n\t            \"url\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/\",\n\t            \"logo\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/logo\\\/image\\\/\",\n\t                \"url\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2024\\\/05\\\/ibkr-campus-logo.jpg\",\n\t                \"contentUrl\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2024\\\/05\\\/ibkr-campus-logo.jpg\",\n\t                \"width\": 669,\n\t                \"height\": 669,\n\t                \"caption\": \"Interactive Brokers\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\\\/\\\/ibkrcampus.com\\\/campus\\\/#\\\/schema\\\/logo\\\/image\\\/\"\n\t            },\n\t            \"publishingPrinciples\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/about-ibkr-campus\\\/\",\n\t            \"ethicsPolicy\": \"https:\\\/\\\/www.interactivebrokers.com\\\/campus\\\/cyber-security-notice\\\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Archives | Traders' Academy | IBKR Campus","description":"We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as...","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.interactivebrokers.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/193950\/","og_locale":"en_US","og_type":"article","og_title":"Requesting Market Data | IBKR Campus US","og_description":"We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as well as historical market data using Python and the requests library.","og_url":"https:\/\/www.interactivebrokers.com\/campus\/trading-lessons\/requesting-market-data\/","og_site_name":"IBKR Campus US","article_modified_time":"2025-10-03T17:16:04+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/07\/cp-api4-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/","url":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/","name":"Requesting Market Data | IBKR Campus US","isPartOf":{"@id":"https:\/\/ibkrcampus.com\/campus\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/#primaryimage"},"image":{"@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/#primaryimage"},"thumbnailUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/07\/cp-api4-1.jpg","datePublished":"2023-07-25T15:11:49+00:00","dateModified":"2025-10-03T17:16:04+00:00","description":"We will be discussing how to market data in the Client Portal API. Here, we will be specifically focusing on retrieving live market data snapshots, as well as historical market data using Python and the requests library.","breadcrumb":{"@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/#primaryimage","url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/07\/cp-api4-1.jpg","contentUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2023\/07\/cp-api4-1.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/requesting-market-data\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Academy Lessons","item":"https:\/\/ibkrcampus.com\/campus\/trading-lessons\/"},{"@type":"ListItem","position":2,"name":"Requesting Market Data"}]},{"@type":"WebSite","@id":"https:\/\/ibkrcampus.com\/campus\/#website","url":"https:\/\/ibkrcampus.com\/campus\/","name":"IBKR Campus US","description":"Financial Education from Interactive Brokers","publisher":{"@id":"https:\/\/ibkrcampus.com\/campus\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ibkrcampus.com\/campus\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ibkrcampus.com\/campus\/#organization","name":"Interactive Brokers","alternateName":"IBKR","url":"https:\/\/ibkrcampus.com\/campus\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/logo\/image\/","url":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2024\/05\/ibkr-campus-logo.jpg","contentUrl":"https:\/\/www.interactivebrokers.com\/campus\/wp-content\/uploads\/sites\/2\/2024\/05\/ibkr-campus-logo.jpg","width":669,"height":669,"caption":"Interactive Brokers"},"image":{"@id":"https:\/\/ibkrcampus.com\/campus\/#\/schema\/logo\/image\/"},"publishingPrinciples":"https:\/\/www.interactivebrokers.com\/campus\/about-ibkr-campus\/","ethicsPolicy":"https:\/\/www.interactivebrokers.com\/campus\/cyber-security-notice\/"}]}},"_links":{"self":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/193950","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/trading-lessons"}],"about":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/types\/trading-lessons"}],"author":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/users\/850"}],"replies":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/comments?post=193950"}],"version-history":[{"count":0,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/trading-lessons\/193950\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/media\/193951"}],"wp:attachment":[{"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/media?parent=193950"}],"wp:term":[{"taxonomy":"contributors-categories","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/contributors-categories?post=193950"},{"taxonomy":"traders-academy","embeddable":true,"href":"https:\/\/ibkrcampus.com\/campus\/wp-json\/wp\/v2\/traders-academy?post=193950"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}