香港儲存庫成員及法律實體識別編碼名單

應用程式介面詳細規格

API URL:

https://api.hkma.gov.hk/public/financial-market-infra/trade-repository/list-of-tr-member-with-lei

API數據查詢

輸出字段(JSON) Swagger格式
名稱 類型 描述
tr_code文字儲存庫成員代碼
tr_name文字名稱
subscribed_service文字使用的服務1
global_lei文字全球法律實體識別編碼 (LEI) / Pre-LEI

備註:

1. RPT – 交易匯報服務

應用程式介面例子

Javascript例子

$.ajax({
url: 'https://api.hkma.gov.hk/public/financial-market-infra/trade-repository/list-of-tr-member-with-lei?offset=0',
dataType:'json',
success:function(data){
alert('results found:'+ data.result.datasize)
}
});

Python例子

import urllib.request
url = 'https://api.hkma.gov.hk/public/financial-market-infra/trade-repository/list-of-tr-member-with-lei?offset=0'
with urllib.request.urlopen (url) as req:
print (req.read())

如何使用應用程式介面

有關詳情,請瀏覧「應用程式介面規格」。