PPT模板搜索接口,海量的PPT课件,向量搜索查询,海量PPT数据集。
返回首页
PPT搜索
请求示例
curl -X POST https://api.zhuimengapi.com/api/v1/ppt \
-H "X-API-Key: RPA-xxxxxxxx"
-H "Content-Type: application/json"
-d '{
"keyword": "搜索词"
}'import requests
url = "https://api.zhuimengapi.com/api/v1/ppt"
headers = {"X-API-Key": "RPA-xxxxxxxx", "Content-Type": "application/json"}
data = {
"keyword": "搜索词"
}
res = requests.post(url, json=data, headers=headers)
print(res.json())const axios = require('axios');
axios.post("https://api.zhuimengapi.com/api/v1/ppt", {
"keyword": "搜索词"
}, {
headers: { "X-API-Key": "RPA-xxxxxxxx", "Content-Type": "application/json" }
}).then(res => console.log(res.data));响应示例
{
"status": "请求状态",
"keyword": "搜索词",
"count": 0,
"data": {
"id": 0,
"title": "模板标题",
"image": "模板封面图片URL",
"tags": "标签",
"download_link": "下载链接",
"pan_status": "网盘状态"
}
}
接口信息
请求地址
https://api.zhuimengapi.com/api/v1/ppt
请求方式
POST
Content-Type
application/json
鉴权方式
X-API-Key: RPA-xxxxxxxx
请求参数
keyword
string
必填 搜索词
返回字段
status
string
必填 请求状态
keyword
string
必填 搜索词
count
int
必填 结果数量
data
array
必填 搜索结果列表
id
int
必填 模板ID
title
string
必填 模板标题
image
string
必填 模板封面图片URL
tags
string
必填 标签
download_link
string
必填 下载链接
pan_status
string
必填 网盘状态
- 200请求成功
- 401API Key 无效或已过期,请检查密钥是否正确
- 402余额不足,请充值后再试
- 403IP 地址不在允许范围内或被限制访问
- 404接口路由不存在,请检查接口地址
- 429请求频率超限,请稍后再试
- 500服务器内部错误,请联系技术支持
- 502接口异常,或者传参错误,请联系技术支持
请求地址
https://api.zhuimengapi.com/api/v1/ppt
请求方式
POST
Content-Type
application/json
鉴权 Header
X-API-Key
Params
GET 请求只通过 URL 查询参数发送
Body JSON 模式
POST + application/json 使用原始 JSON 请求体
request body (JSON)
快速信息
| 接口路由 | ppt |
| 接口分类 | - |
| 请求方式 | POST |
| 计费方式 | 1 积分/次 |
| 频率限制 | 5 次/秒 |
| 认证方式 | X-API-Key |
| 接口提供 | 官方接口 |