返回首页

PPT搜索

/api/v1/ppt 1 积分/次 运行中

PPT模板搜索接口,海量的PPT课件,向量搜索查询,海量PPT数据集。

请求示例
request
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));
响应示例
response.json
{
    "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 Body
Params GET 请求只通过 URL 查询参数发送
Body JSON 模式 POST + application/json 使用原始 JSON 请求体
request body (JSON)

快速信息

接口路由ppt
接口分类-
请求方式POST
计费方式1 积分/次
频率限制5 次/秒
认证方式X-API-Key
接口提供官方接口

如何调用

  1. 注册/登录本站账号
  2. 前往用户中心 → API密钥 ,创建一个密钥
  3. 在请求头添加 X-API-Key 携带密钥即可调用
  4. 每次成功调用将扣除 1 积分
前往创建 API 密钥