稳定、快速、免费的 API 接口服务
数据来自互联网,仅供参考
接口地址: https://58.linkpc.net/doc/finance.html
返回格式: JSON
请求方式: GET/POST
请求示例: https://58.linkpc.net/api/finance?code=hk00700&list=1
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
code | 是 | String | 股票代码,多个以半角逗号,分隔,最多10个 |
list | 是 | int | 单个0、批量1 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
hk00700 | String | 股票代码及行情数据 |
返回示例:
{
"code": 200,
"msg": "success",
"data": {
"hk00700": "TENCENT,腾讯控股,381.000,382.400,382.200,378.400,379.800,-2.600,-0.680,379.60001,379.79999,6508060710,17138321,0.000,0.000,482.400,257.972,2025\/01\/17,16:08"
}
}
错误码格式说明:
名称 | 类型 | 说明 |
---|
代码示例:
<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/finance';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);