菜谱查询
生活类厨房类应用必备API

接口地址: https://58.linkpc.net/doc/caipu.html

返回格式: JSON

请求方式: GET/POST

请求示例: https://58.linkpc.net/api/caipu?word=辣椒

请求参数说明:

名称 必填 类型 说明
word String 食材或菜名
num String 返回数量
page String 翻页

返回参数说明:

名称 类型 说明
yuanliao String 原料
tiaoliao String 调料
type_id int 类型ID
type_name String 类型名称
cp_name String 菜肴名称
zuofa String 做法
texing String 菜肴特性
tishi String 提示
id int 菜谱ID

返回示例:

{
"code": 200,
"msg": "success",
"data": {
"curpage": 1,
"allnum": 1,
"list": [
{
"id": 5039,
"type_id": 444,
"type_name": "蔬菜类",
"cp_name": "豆豉辣椒",
"zuofa": "1.豆豉洗净;辣椒洗净,切丁;蒜切末;2.锅内放油,烧热,爆香蒜末和豆豉,放入辣椒煸炒,加入酱油、酒、糖、盐炒匀即可。",
"texing": "咸香微辣,豉香诱人。",
"tishi": "如果加点肉末,这道菜会更鲜美。",
"tiaoliao": "食用油30克;酱油1\/2大匙(15克);料酒1大匙(30克);豆豉1大匙(30克);精盐1小匙(3克);白糖1\/2小匙(1.5克)",
"yuanliao": "红辣椒450克;青辣椒2个;大蒜6瓣"
}
]
}
}

错误码格式说明:

名称 类型 说明

代码示例:

<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/caipu';
$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);