- MoreAPI接口说明
- 用户登录注册
- 自助充值
- 更新记录
- 用户
- 抖音API
- 获取视频详情POST
- 批量获取视频详情POST
- 获取视频详情 V3POST
- 获取视频详情V4POST
- 批量解析视频详情POST
- 获取视频涨粉数量POST
- 获取用户信息POST
- 获取用户信息 _V2POST
- 获取用户信息 _V3POST
- 获取用户信息 _V4POST
- 获取用户标签POST
- 通过UID获取用户信息POST
- 通过抖音号获取用户信息POST
- 获取用户主页发布POST
- 获取用户最新作品V2POST
- 获取用户主页作品分析数据POST
- 获取用户合集POST
- 获取合集信息POST
- 获取合集视频列表POST
- 搜索用户指定作品POST
- 用户喜欢的作品POST
- 获取视频一级评论POST
- 获取视频子评论POST
- 获取用户短剧集POST
- 获取短剧详细信息POST
- 获取短剧视频列表POST
- 获取同城视频POST
- 获取同城直播POST
- 综合搜索POST
- 综合搜索v2POST
- 搜索视频POST
- 搜索用户POST
- 搜索用户_v2POST
- 搜索用户V3POST
- 搜索音乐POST
- 获取音乐详情POST
- 获取音乐相关视频POST
- 搜索直播用户POST
- 获取直播间信息与视频流直链POST
- 根据ID获取直播间信息POST
- 检查用户直播状态POST
- 获取开放直播间用户列表POST
- 搜索话题POST
- 获取话题详情POST
- 获取话题视频POST
- 获取话题视频 _v2POST
- 获取视频弹幕POST
- 获取视频短连接POST
- 生成视频抖音码POST
- 搜索长尾关键词POST
- 热点讨论POST
- 用户橱窗销售信息POST
- 获取协议链接POST
- TikTok
- Lemon8
- 快手API
- 小红薯API
- 微博API
- 哔哩哔哩API
- 头条 | 西瓜 API
- 榜单API
- youtube
- KOL红薯、KOL抖音
- 创作者API
获取笔记详情
开发中
POST
http://api.moreapi.cn/api/note/detail
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
note_id
string
笔记ID
proxy
string
可选
示例
{
"note_id": "679d9cb0000000002802afcb"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://api.moreapi.cn/api/note/detail' \
--header 'Content-Type: application/json' \
--data-raw '{
"note_id":"679d9cb0000000002802afcb"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
path
null
必需
data
object
必需
code
integer
必需
msg
string
必需
guid
null
必需
success
boolean
必需
data
object
必需
示例
{
"code": 0,
"msg": "string",
"path": null,
"data": {
"code": 0,
"msg": "string",
"guid": null,
"success": true,
"data": {
"noteId": "string",
"noteLink": "string",
"userId": "string",
"headPhoto": "string",
"name": "string",
"redId": null,
"type": 0,
"atUserList": null,
"title": "string",
"content": "string",
"imagesList": [
{
"fileId": "string",
"url": "string",
"original": "string",
"width": 0,
"height": 0,
"latitude": null,
"longitude": null,
"traceId": "string",
"sticker": null
}
],
"videoInfo": {
"id": "string",
"videoKey": "string",
"originVideoKey": "string",
"meta": {
"width": 0,
"height": 0,
"duration": 0
},
"gifKey": "string",
"videoUrl": "string",
"gifUrl": "string",
"videoKeyList": [
null
],
"hasFragments": true,
"thumbnail": "string",
"firstFrame": "string",
"volume": 0,
"chapters": null
},
"time": {
"createTime": 0,
"updateTime": 0,
"userUpdateTime": 0
},
"createTime": "string",
"impNum": 0,
"likeNum": 0,
"favNum": 0,
"cmtNum": 0,
"readNum": 0,
"shareNum": 0,
"followCnt": 0,
"reportBrandUserId": "string",
"reportBrandName": "string",
"featureTags": null,
"userInfo": {
"nickName": "string",
"avatar": "string",
"userId": "string",
"advertiserId": null,
"fansNum": 0,
"cooperType": 0,
"priceState": 0,
"pictureState": 0,
"picturePrice": 0,
"videoState": 0,
"videoPrice": 0,
"userType": 0,
"operateState": 0,
"currentLevel": 0,
"location": "string",
"contentTags": [
{
"taxonomy1Tag": "string",
"taxonomy2Tags": [
"string"
]
}
],
"featureTags": [
"string"
],
"personalTags": null,
"gender": "string",
"isCollect": true,
"clickMidNum": 0,
"interMidNum": 0,
"pictureInCart": null,
"videoInCart": null,
"kolType": 0,
"mEngagementNum": 0
},
"compClickData": {
"noteComment": "string",
"noteBottom": "string",
"engage": "string",
"content": "string",
"commentTag": null,
"hover": "string"
}
}
}
}
修改于 2025-03-26 07:15:02