API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-tender-results-efn?segment=2yearRequest Parameters (Mandatory)
Parameter Name | Description |
---|---|
segment | Used to indicate which sets of data are going to retrieve. Format: segment=data segment name (2year/3year/5year/7year/10year/15year) Example: segment=2year |
Output Fields (JSON) | Swagger Format |
Name | Type | Unit Of Measure | Description |
---|---|---|---|
issue_date | Date | Issue Date Date in ISO format yyyy-mm-dd, For example, 1997-01-01 | |
coupon | Number | % per annum | Coupon |
average_yield_accepted | Number | % | Average yield accepted |
amount_applied | Number | HK$ million | Amount applied |
over_subscription | Number | Times | Over-subscription |
Footnotes:
1. Starting from 2015, the HKMA has ceased new issuance of exchange fund notes of tenor of 3 years and above. |
2. Starting from mid-2007, the HKMA has ceased new issuance of exchange fund notes of tenor of 7 years. |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-tender-results-efn?segment=2year&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/efbn/efbn-tender-results-efn?segment=2year&offset=0'with urllib.request.urlopen (url) as req:print (req.read())