<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Build a STOCK Database with Data in JSON format via API from a homepages in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Build-a-STOCK-Database-with-Data-in-JSON-format-via-API-from-a/m-p/2483007#M21291</link>
    <description>&lt;P&gt;You probably want a nosql database like MongoDB or dynamodb which store data directly as json. In terms of cost it depends entirely on what the data quantity and your access patterns.&lt;/P&gt;</description>
    <pubDate>Mon, 23 Sep 2024 12:05:34 GMT</pubDate>
    <dc:creator>marcce</dc:creator>
    <dc:date>2024-09-23T12:05:34Z</dc:date>
    <item>
      <title>Build a STOCK Database with Data in JSON format via API from a homepages</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Build-a-STOCK-Database-with-Data-in-JSON-format-via-API-from-a/m-p/1786550#M13925</link>
      <description>&lt;P&gt;Hi friends&lt;/P&gt;&lt;P&gt;I am trying to build a Qliview application about stocks, showing&lt;/P&gt;&lt;P&gt;Income Statement, Balance Sheet and Cash Flow&lt;/P&gt;&lt;P&gt;Yearly and Quarterly&lt;/P&gt;&lt;P&gt;I can get free data via API from a homepages &lt;A href="http://www.alphavantage.co/documentation/" target="_blank"&gt;www.alphavantage.co/documentation/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and the data looks like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;INCOME STATEMENT FOR IBM - DEMO&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.alphavantage.co/query?function=INCOME_STATEMENT&amp;amp;symbol=IBM&amp;amp;apikey=demo" target="_blank"&gt;https://www.alphavantage.co/query?function=INCOME_STATEMENT&amp;amp;symbol=IBM&amp;amp;apikey=demo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And the same for&amp;nbsp;&lt;/P&gt;&lt;P&gt;BALANCE SHEET&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.alphavantage.co/query?function=BALANCE_SHEET&amp;amp;symbol=IBM&amp;amp;apikey=demo" target="_blank"&gt;https://www.alphavantage.co/query?function=BALANCE_SHEET&amp;amp;symbol=IBM&amp;amp;apikey=demo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And the same for&lt;/P&gt;&lt;P&gt;CASH FLOW&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.alphavantage.co/query?function=CASH_FLOW&amp;amp;symbol=IBM&amp;amp;apikey=demo" target="_blank"&gt;https://www.alphavantage.co/query?function=CASH_FLOW&amp;amp;symbol=IBM&amp;amp;apikey=demo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Can you tell me how this possible to load into Qlikview or Qlik Sense or both?&lt;/P&gt;&lt;P&gt;2) This DEMO shows "symbol" "IBM"&lt;/P&gt;&lt;P&gt;I want the LOAD to import many COMPANIES at the same time and thereforee lookup "symbol" in an Excelsheet where I have lots of companies, where the TICKER SYMBOL are listed by me.&lt;/P&gt;&lt;P&gt;Is that possible?&lt;/P&gt;&lt;P&gt;I am not a developer but hope to get help from you great people to solve this&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;Have a nice day and take care&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below I show a litle draft of the Income Statement file&lt;/P&gt;&lt;PRE&gt;{
    "symbol": "IBM",
    "annualReports": [
        {
            "fiscalDateEnding": "2020-12-31",
            "reportedCurrency": "USD",
            "totalRevenue": "73620000000",
            "totalOperatingExpense": "28789000000",
            "costOfRevenue": "38046000000",
            "grossProfit": "35575000000",
            "ebit": "5925000000",
            "netIncome": "5590000000",
            "researchAndDevelopment": "6333000000",
            "effectOfAccountingCharges": "None",
            "incomeBeforeTax": "4637000000",
            "minorityInterest": "129000000",
            "sellingGeneralAdministrative": "22456000000",
            "otherNonOperatingIncome": "-861000000",
            "operatingIncome": "6786000000",
            "otherOperatingExpense": "-626000000",
            "interestExpense": "1288000000",
            "taxProvision": "-864000000",
            "interestIncome": "None",
            "netInterestIncome": "-1288000000",
            "extraordinaryItems": "-21000000",
            "nonRecurring": "None",
            "otherItems": "None",
            "incomeTaxExpense": "-864000000",
            "totalOtherIncomeExpense": "-861000000",
            "discontinuedOperations": "89000000",
            "netIncomeFromContinuingOperations": "5501000000",
            "netIncomeApplicableToCommonShares": "5590000000",
            "preferredStockAndOtherAdjustments": "None"
        },
        {
            "fiscalDateEnding": "2019-12-31",
            "reportedCurrency": "USD",
            "totalRevenue": "77147000000",&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 11:16:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Build-a-STOCK-Database-with-Data-in-JSON-format-via-API-from-a/m-p/1786550#M13925</guid>
      <dc:creator>jtandersen</dc:creator>
      <dc:date>2021-02-26T11:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Build a STOCK Database with Data in JSON format via API from a homepages</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Build-a-STOCK-Database-with-Data-in-JSON-format-via-API-from-a/m-p/2483007#M21291</link>
      <description>&lt;P&gt;You probably want a nosql database like MongoDB or dynamodb which store data directly as json. In terms of cost it depends entirely on what the data quantity and your access patterns.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2024 12:05:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Build-a-STOCK-Database-with-Data-in-JSON-format-via-API-from-a/m-p/2483007#M21291</guid>
      <dc:creator>marcce</dc:creator>
      <dc:date>2024-09-23T12:05:34Z</dc:date>
    </item>
  </channel>
</rss>

