API Detailed Documentation
API URL:
https://api.hkma.gov.hk/public/recruitment?lang=enRequest 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 |
---|---|---|
date | Date | Date in ISO format yyyy-mm-dd. For example, 2018-03-08 |
title | String | Title for the RSS |
link | hyperlink | Related hyper link for RSS |
API Examples
Javascript Example
$.ajax({url: 'https://api.hkma.gov.hk/public/recruitment?lang=en&offset=0',dataType:'json',success:function(data){alert('results found:'+ data.result.datasize)}});
Python Example
import urllib.requesturl = 'https://api.hkma.gov.hk/public/recruitment?lang=en&offset=0'with urllib.request.urlopen (url) as req:print (req.read())