API for Table II.1 Finance Companies: Assets and Liabilities, Monthly
Monthly Statistical Bulletin
 
See the data published through this API 


How to use the APIs


The Resource ID for this resource is 3bdfa4ca-297b-45f0-bdf9-25ee0e1db59a. For more details on how to use the API, see the API documentation.


Return the first five results




Fields


NoNameTitleTypeUnit Of MeasureDescription
1end_of_monthEnd of monthDatetime (Month) "YYYY-MM"  
2total_assets_liabTotal Assets / LiabilitiesNumeric (General)S$ Million 
3assets_cash_bal_with_masAssets - Cash and Balances with MASNumeric (General)S$ Million 
4assets_deposits_fin_instsAssets - Deposits with Banks and other InstitutionsNumeric (General)S$ Million 
5assets_saeAssets - Securities and EquitiesNumeric (General)S$ Million 
6assets_laaAssets - Loans and AdvancesNumeric (General)S$ Million 
7assets_othersAssets - OthersNumeric (General)S$ Million 
8liab_capital_reservesLiabilities - Capital and ReservesNumeric (General)S$ Million 
9liab_deposits_totalLiabilities - Deposits - TotalNumeric (General)S$ Million 
10liab_deposits_fixedLiabilities - Deposits - FixedNumeric (General)S$ Million 
11liab_deposits_savingsLiabilities - Deposits - SavingsNumeric (General)S$ Million 
12liab_deposits_othersLiabilities - Deposits - OthersNumeric (General)S$ Million 
13liab_other_creditorsLiabilities - Other CreditorsNumeric (General)S$ Million 
14liab_othersLiabilities - OthersNumeric (General)S$ Million 



API Examples


Javascript example

Making an ajax request with jQuery:
                                
                var data = {

                       resource_id:'3bdfa4ca-297b-45f0-bdf9-25ee0e1db59a',//the resource id
                   
                       limit:5 //get 5 results                                                                   

                };

                $.ajax({

                     url: 'https://eservices.mas.gov.sg/api/action/datastore/search.json',

                     data:data,

                     dataType:'json',
                        
                     success:function(data){

                      alert('Total results found:'+ data.result.total)

                     }

                 });  

            


Python Example


               import urllib.request

                url = 'https://eservices.mas.gov.sg/api/action/datastore/search.json?resource_id=3bdfa4ca-297b-45f0-bdf9-25ee0e1db59a&limit=5'
with urllib.request.urlopen (url) as req:   print (req.read())


Last Modified on 08/06/2017