Press Releases

API Detailed Documentation

API URL:

https://api.hkma.gov.hk/public/press-releases?lang=en

Request Parameters (Mandatory)

Parameter Name Description
lang To input the language selected to output.
Format: lang=(en|tc|sc)
Example: lang=tc
Output Fields (JSON) Swagger Format
Name Type Description
dateDateDate in ISO format yyyy-mm-dd. For example, 2018-03-08
titleStringTitle for the RSS
linkhyperlinkRelated hyper link for RSS

API Examples

Javascript Example

$.ajax({
url: 'https://api.hkma.gov.hk/public/press-releases?lang=en&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/press-releases?lang=en&offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

How to use the APIs

To learn more, please visit API documentation.