API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hk-interbank-ir-daily?segment=hibor.fixingRequest Parameters (Mandatory)
Parameter Name | Description |
---|---|
segment | Used to indicate which sets of data are going to retrieve. Format: segment=data segment name (hibor.fixing/hibor/honia) Example: segment=hibor.fixing |
HIBOR Fixing(hibor.fixing) / HIBOR(hibor)
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_day | Date | As at 11:15 am Date in ISO format yyyy-mm-dd, For example, 1997-01-01 | |
ir_overnight | Number | percent per annum | Overnight |
ir_1w | Number | percent per annum | 1-week |
ir_1m | Number | percent per annum | 1-month |
ir_3m | Number | percent per annum | 3-month |
ir_6m | Number | percent per annum | 6-month |
ir_9m | Number | percent per annum | 9-month |
ir_12m | Number | percent per annum | 12-month |
HONIA(honia)
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
end_of_day | Date | As at 11:15 am Date in ISO format yyyy-mm-dd, For example, 1997-01-01 | |
ir_overnight | Number | percent per annum | Overnight |
FootNotes(HIBOR Fixing):
1. The Hong Kong Association of Banks (HKAB) is the source and owner of the HKD Interest Settlement Rates. As part of the HKAB FRA terms, daily HKD Interest Settlement Rates are fixed by reference to market rates for HKD deposits in the Hong Kong interbank market. These fixings are usually released on the website of the HKAB each business day (excluding Saturdays) at 11.15 a.m., on the basis of quotations provided by 12-20 banks designated by the HKAB. The HKD Interest Settlement Rates are calculated by averaging the middle quotes after excluding the highest three quotes and lowest three quotes received from the reference banks. |
2. The HKAB has ceased to calculate and publish the 9-month HKD Interest Settlement Rates since 1 April 2014. |
FootNotes(HIBOR):
1. Hong Kong Interbank Offered Rates (HIBOR) refer to the middle closing rates quoted by the Standard Chartered Bank in the interbank money market. |
2. Reporting discontinued since 1 January 2013. |
FootNotes(HONIA):
1. The Treasury Markets Association (TMA) is the source and owner of Hong Kong Dollar (HKD) Overnight Index Average (HONIA) with effect from 5 April 2016. HONIA is a volume-weighted mean of overnight HKD unsecured interbank lending transactions executed through a panel of five contributing money brokers between 8:00 a.m. and 4:00 p.m. Hong Kong time on a business day. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hk-interbank-ir-daily?segment=hibor.fixing&offset=0',dataType:'json',success:function(data){alert('results found:'+ data.result.datasize)}});
Python Example
import urllib.requesturl = 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/er-ir/hk-interbank-ir-daily?segment=hibor.fixing&offset=0'with urllib.request.urlopen (url) as req:print (req.read())