chatgpt
当下流行的chatgpt

接口地址: https://api.hexsen.com/api/chatgpt

返回格式: JSON

请求方式: POST

请求示例: https://api.hexsen.com/api/chatgpt

请求参数说明:

名称 必填 类型 说明
question string 你的问题

返回参数说明:

名称 类型 说明

返回示例:

 请求示例返回如下:
加载中...

错误码格式说明:

名称 类型 说明

代码示例:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ChatGPT</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<h1>ChatGPT</h1>
<label for="question">请输入问题:</label>
<input type="text" id="question">
<button id="submit">提交</button>
<div id="response"></div>
<script>
$('#submit').click(function() {
var question = $('#question').val();
$.ajax({
type: 'POST',
url: ‘https://api.hexsen.com/api/chatgpt’,
data: {question: question},
success: function(response) {
$('#response').html(response);
}
});
});
</script>
</body>
</html>