This API will be discontinued by 31 October 2023, please update your APIs and bookmark to "https://eservices.mas.gov.sg/apimg-portal/".

For more information, please subscribe to the new API resources and accelerate your app roadmap. "Browse the new API Catalogue"

[Deprecation]
API for Table I.2C Monetary Authority: Assets and Liabilities, Yearly
Monthly Statistical Bulletin
 
See the data published through this API 


How to use the APIs


The Resource ID for this resource is 30e3e253-c05a-4287-bf6d-2792f8f01320. For more details on how to use the API, see the API documentation.


Return the first five results




Fields


NoNameTitleTypeUnit Of MeasureDescription
1end_of_yearEnd of yearDatetime (Year) "YYYY"  
2preliminaryPreliminary indicatorNumeric (General) '1' if preliminary, '0' otherwise.
3assets_foreignAssets - Foreign AssetsNumeric (General)S$ Million 
4assets_dom_credit_totalAssets - Total Domestic CreditNumeric (General)S$ Million 
5assets_dom_credit_govtAssets - Domestic Credit to GovernmentNumeric (General)S$ Million 
6assets_dom_credit_pteAssets - Domestic Credit to Private SectorNumeric (General)S$ Million 
7liab_reserve_moneyLiabilities - Reserve MoneyNumeric (General)S$ Million 
8liab_foreignLiabilities - Foreign LiabilitiesNumeric (General)S$ Million 
9liab_govt_depositsLiabilities - Government DepositsNumeric (General)S$ Million 
10other_items_netOther Items (Net)Numeric (General)S$ Million 



API Examples


Javascript example

Making an ajax request with jQuery:
                                
                var data = {

                       resource_id:'30e3e253-c05a-4287-bf6d-2792f8f01320',//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?resource_id=30e3e253-c05a-4287-bf6d-2792f8f01320&limit=5'
with urllib.request.url.open (url) as req:   print req.read()


© 2023, Government of Singapore. Last updated on 01 Aug 2023