API for Table I.12 Banks: Classified Exposures, Quarterly
Monthly Statistical Bulletin
 
See the data published through this API 


How to use the APIs


The Resource ID for this resource is 4bca1f3d-ab23-4852-afa1-d4ee9bb28dad. For more details on how to use the API, see the API documentation.


Return the first five results




Fields


NoNameTitleTypeUnit Of MeasureDescription
1end_of_quarterEnd of quarterDatetime (Quarter) "YYYY-Q[Q]"  
2passPassNumeric (Percent)% of Total Exposures 
3special_mentionSpecial MentionNumeric (Percent)% of Total Exposures 
4classified_substandardClassified Exposures - SubstandardNumeric (Percent)% of Total Exposures 
5classified_doubtfulClassified Exposures - DoubtfulNumeric (Percent)% of Total Exposures 
6classified_lossClassified Exposures - LossNumeric (Percent)% of Total Exposures 
7classified_exposures_netNet Classified ExposuresNumeric (Percent)% of Total ExposuresNote: Net of specific provisions.



Additional Notes


Figures are as a percentage of total exposures

API Examples


Javascript example

Making an ajax request with jQuery:
                                
                var data = {

                       resource_id:'4bca1f3d-ab23-4852-afa1-d4ee9bb28dad',//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=4bca1f3d-ab23-4852-afa1-d4ee9bb28dad&limit=5'
with urllib.request.urlopen (url) as req:   print (req.read())


Last Modified on 06/03/2017