香港储存库成员及法律实体识别编码名单

应用程式介面详细规格

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())

如何使用应用程式介面

有关详情,请浏覧「应用程式介面规格」。