AI智能类
DeepSeek & v2

2025-03-14 22:39:10

Start Me
Pasta

累计调用:7534

头像
客源
未开源

专注于企业级API开发与架构设计,5年以上开发经验

AI模型DeepSeek

GET|POST

DeepSeek正式发布,已在网页端和 API 全面上线,性能领先,速度飞跃,点击查看详情。

接口地址: https://api.qster.top/API/v2/DeepSeek
接口示例: https://api.qster.top/API/v2/DeepSeek/?content=你好

请求参数

参数名 类型 必填 说明
content string 问题
type string 默认json 可选json/text
sessionid string 临时会话缓存ID 支持上下文聊天, 只存在会话ID时可查看过去的会话内容
character string 人物角色描述
think string 深度思考R1,true为开启,默认开启,没有或者false就算v3模式
use_enhance string 联网功能,true为开启,默认关闭
stream string 默认false,不开启流式返回,true为开启
qskey string 申请临时密钥

响应参数

参数 说明
choices.message.content 聊天返回消息
code 200正常400失败 查看更多

代码示例

<?php
// 要调用的 URL
$url = "https://api.qster.top/API/v2/DeepSeek";

// 参数数组
$params = [
"content" => "问题",
"type" => "默认json 可选json/text",
"sessionid" => "临时会话缓存ID 支持上下文聊天, 只存在会话ID时可查看过去的会话内容",
"character" => "人物角色描述",
"think" => "深度思考R1,true为开启,默认开启,没有或者false就算v3模式",
"use_enhance" => "联网功能,true为开启,默认关闭",
"stream" => "默认false,不开启流式返回,true为开启",
"qskey" => "0",
];

// 使用 http_build_query 将参数转换为查询字符串
$queryString = http_build_query($params);

// 在 URL 中添加查询字符串
$finalUrl = $url . '?' . $queryString;

// 使用 file_get_contents 获取内容
$response = file_get_contents($finalUrl);

// 输出响应
echo $response;
?>

import requests

url = "https://api.qster.top/API/v2/DeepSeek";
params = {
"content" : "问题",
"type" : "默认json 可选json/text",
"sessionid" : "临时会话缓存ID 支持上下文聊天, 只存在会话ID时可查看过去的会话内容",
"character" : "人物角色描述",
"think" : "深度思考R1,true为开启,默认开启,没有或者false就算v3模式",
"use_enhance" : "联网功能,true为开启,默认关闭",
"stream" : "默认false,不开启流式返回,true为开启",
"qskey" => "0"
}
response = requests.get(url, params=params)
print(response.text)

function fetchData(url, params) {

const queryString = Object.keys(params)
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(params[key])}`)
.join('&');
const fullUrl = `${url}?${queryString}`;

fetch(fullUrl)
.then(response => response.text())
.then(data => {
const resultElement = document.createElement('pre');
resultElement.textContent = data;
document.body.appendChild(resultElement);
})
.catch(error => console.error('Error fetching data:', error));
}

// 示例用法
const url = "https://api.qster.top/API/v2/DeepSeek";
const params = {
"content" : "问题",
"type" : "默认json 可选json/text",
"sessionid" : "临时会话缓存ID 支持上下文聊天, 只存在会话ID时可查看过去的会话内容",
"character" : "人物角色描述",
"think" : "深度思考R1,true为开启,默认开启,没有或者false就算v3模式",
"use_enhance" : "联网功能,true为开启,默认关闭",
"stream" : "默认false,不开启流式返回,true为开启",
"qskey" => "0"
};
fetchData(url, params);

在线调试