接口信息
总调用次数: 11
所属分类: 查询
请求方式: GET
响应格式: JSON
添加时间: 2026-06-04
更新时间: 2026-06-24
接口描述: 金价查询网
请求信息
请求地址
https://api.key5.site/API/hotlist/jinjia/index.php
示例地址
https://api.key5.site/API/hotlist/jinjia/index.php?apikey=密钥&type=text
请求参数
参数名 类型 必填 说明
type string json/text
返回示例
品牌: 内地周大福
黄金价格: 1360 元/克
铂金价格: - 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 内地周生生
黄金价格: 1356 元/克
铂金价格: 725 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 内地六福珠宝
黄金价格: 1360 元/克
铂金价格: 725 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 内地谢瑞麟
黄金价格: 1360 元/克
铂金价格: - 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 内地金至尊
黄金价格: 1360 元/克
铂金价格: 725 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 潮宏基
黄金价格: 1360 元/克
铂金价格: 725 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 菜百首饰
黄金价格: 1350 元/克
铂金价格: 680 元/克
金条价格: 1158 元/克
报价时间: 2026-6-4
------------------------
品牌: 老庙黄金
黄金价格: 1355 元/克
铂金价格: 800 元/克
金条价格: 1180 元/克
报价时间: 2026-6-4
------------------------
品牌: 老凤祥
黄金价格: 1352 元/克
铂金价格: 750 元/克
金条价格: 1204 元/克
报价时间: 2026-6-4
------------------------
品牌: 中国黄金
黄金价格: 1317 元/克
铂金价格: 690 元/克
金条价格: - 元/克
报价时间: 2026-6-4
------------------------
品牌: 周六福
黄金价格: 1355 元/克
铂金价格: 745 元/克
金条价格: 1192 元/克
报价时间: 2026-6-4
------------------------
品牌: 香港周大福
黄金价格: 50310 港币/两
铂金价格: - 港币/两
金条价格: - 港币/两
报价时间: 2026-6-4
------------------------
品牌: 香港周生生
黄金价格: 50310 港币/两
铂金价格: 22570 港币/两
金条价格: 45090 港币/两
报价时间: 2026-6-4
------------------------
品牌: 香港谢瑞麟
黄金价格: 50310 港币/两
铂金价格: 22570 港币/两
金条价格: 45090 港币/两
报价时间: 2026-6-4
------------------------
品牌: 香港金至尊
黄金价格: 50310 港币/两
铂金价格: 22570 港币/两
金条价格: 45090 港币/两
报价时间: 2026-6-4
------------------------
品牌: 香港六福珠宝
黄金价格: 50310 港币/两
铂金价格: 22570 港币/两
金条价格: 45090 港币/两
报价时间: 2026-6-4
------------------------
品牌: 香港老凤祥
黄金价格: 50310 港币/两
铂金价格: 22570 港币/两
金条价格: 45090 港币/两
报价时间: 2026-6-4
------------------------
状态码说明
状态码 说明
200请求成功,服务器已成功处理了请求。
403服务器拒绝请求。这可能是由于缺少必要的认证凭据(如API密钥)或权限不足。
404请求的资源未找到。请检查您的请求地址是否正确。
429请求过于频繁。您已超出速率限制,请稍后再试。
500服务器内部错误。服务器在执行请求时遇到了问题。
调用示例
<?php
$url = 'https://api.key5.site/API/hotlist/jinjia/index.php';
$params = [
    'type' => 'YOUR_VALUE',
];
$url .= '?' . http_build_query($params);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>
import requests

url = "https://api.key5.site/API/hotlist/jinjia/index.php"
params = {
    "type": "YOUR_VALUE",
}

response = requests.get(url, params=params)
print(response.text)
const url = new URL('https://api.key5.site/API/hotlist/jinjia/index.php');
const params = {
    'type': 'YOUR_VALUE',
};

Object.keys(params).forEach(key => {
    url.searchParams.append(key, params[key]);
});

fetch(url)
    .then(response => response.text())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
curl "https://api.key5.site/API/hotlist/jinjia/index.php?type=YOUR_VALUE"
联系站长