Santander UK cash flow statement data for the quarter ended Dec 2017. This cash flow statement covers 17 quarters of results from Sep 2011 through Dec 2017, standardized by Business Quant from the company’s SEC filings.
| Cash Flow Statement | Sep2011 | Dec2011 | Mar2012 | Jun2012 | Sep2012 | Dec2012 | Mar2013 | Jun2013 | Sep2013 | Dec2013 | Mar2014 | Jun2014 | Sep2014 | Dec2014 | Dec2015 | Dec2016 | Dec2017 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Operating Activities | |||||||||||||||||
| Net Income | 1.06B | -2.93B | 0.73B | 0.66B | 0.72B | 1.76B | 0.88B | 0.26B | 0.53B | 0.50B | 0.69B | 0.22B | 0.78B | 0.61B | |||
| Cash from Operations | -5.91B | ||||||||||||||||
| Depreciation, Depletion & Amortization | |||||||||||||||||
| Depreciation & Amortization (CF)Depreciation & Amortization | -0.56B | -0.36B | -0.09B | 0.10B | 0.09B | -0.29B | -0.09B | -0.09B | -0.09B | -0.11B | -0.12B | -0.46B | -0.11B | -0.11B | |||
| Investing Activities | |||||||||||||||||
| Cash from Investing Activities | -0.79B | -9.13B | |||||||||||||||
| Misc. | |||||||||||||||||
| Cash from Financing Activities | -4.42B | -7.94B | -10.14B | ||||||||||||||
| Change in Cash | -11.12B | ||||||||||||||||
| Free Cash Flow | -5.91B | ||||||||||||||||
| Net Cash Flow | -11.12B | -17.07B | -10.14B |
Pull Santander UK's standardized financial statements into your own models, spreadsheets and apps with the Business Quant Financial Statements API. The request below follows the statement, frequency and period selected above. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/statements?ticker=SNTUF&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/statements"
params = {"ticker": "SNTUF", "statement": "CF", "frequency": "Quarter", "period": "all", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/statements?ticker=SNTUF&statement=CF&frequency=Quarter&period=all&api_key=YOUR_API_KEY");
const data = await res.json();