股票行情分析
数据来自互联网,仅供参考

接口地址: 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,腾讯控股,409.400,410.800,411.400,407.000,407.600,-3.200,-0.779,407.60001,407.79999,5113866289,12501718,0.000,0.000,482.400,257.972,2024\/11\/21,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);