📅  最后修改于: 2023-12-03 15:31:20.517000             🧑  作者: Mango
https://www.mca.gov.in
开源 API该开源 API 提供了印度工商部门的数据查询服务,包括公司注册信息、股东信息、年报信息、董事和高管信息等。
API 请求 URL 的格式为 https://www.mca.gov.in/mcafoportal/data/DirectorMasterDetails.asp?DirectorID=<DirectorID>
。其中 <DirectorID>
为指定董事 ID。
API 的返回值为 HTML 页面,需要通过正则表达式或 HTML 解析器进行解析。一个样例返回值如下:
<!DOCTYPE html>
<html>
<head>
<title>MCA</title>
<link href="css/datepicker.css" rel="stylesheet" type="text/css" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-datepicker.js" type="text/javascript"></script>
<script src="js/bootstrap-select.js"></script>
<script src="js/custom.js" type="text/javascript"></script>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap-select.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<style>
...
</style>
</head>
<body>
<form id="aspnetForm" action="/mcafoportal/data/DirectorMasterDetails.asp?DirectorID=123456" method="post">
<input type="hidden" name="" value="" />
...
</form>
</body>
</html>