Tender results of Exchange Fund Bills and Notes – Exchange Fund Notes

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/market-data-and-statistics/monthly-statistical-bulletin/efbn/efbn-tender-results-efn?segment=2year

Request 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_dateDateIssue Date
Date in ISO format yyyy-mm-dd, For example, 1997-01-01
couponNumber% per annumCoupon
average_yield_acceptedNumber%Average yield accepted
amount_appliedNumberHK$ millionAmount applied
over_subscriptionNumberTimesOver-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.request
url = '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())

How to use the APIs

To learn more, please visit API documentation.