NeuRecon_API
  1. api
NeuRecon_API
  • api
    • 上传capture
      POST
    • 查询单个capture
      POST
    • 查询所有captures
      POST
    • capture下载
      POST
    • 查询credits
      POST
  1. api

上传capture

开发中
POST
http://recon.neudim.com/taskApi/public/upload_capture

请求参数

Header 参数
Authorization
string 
必需
示例值:
neudim-api-key=10beba23-2acc-48ac-b0f8-5a05d1a7a411
Body 参数multipart/form-data
way
string 
处理任务算法
必需
示例值:
gaussian
task_name
string 
capture标题
必需
示例值:
test capture
file
file 
视频或zip压缩包
必需
示例值:
file://D:\Downloads\231225145238.mp4

示例代码

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://recon.neudim.com/taskApi/public/upload_capture' \
--header 'Authorization: neudim-api-key=10beba23-2acc-48ac-b0f8-5a05d1a7a411' \
--form 'way="gaussian"' \
--form 'task_name="test capture"' \
--form 'file=@"D:\\Downloads\\231225145238.mp4"'

返回响应

🟢200任务创建成功
application/json
Body
message
string 
必需
status
string 
必需
task_id
string 
必需
示例
{
  "message": "task created",
  "status": "success",
  "task_id": "755dbcf7-96dc-4fe5-92e1-720696960d79"
}
下一页
查询单个capture
Built with