- Open API
- Dataset
- Create Dataset
- Edit Dataset
- Delete Dataset
- Query a single dataset
- Query the list of datasets
- Upload the dataset compressed package
- Query the processing progress of the compressed dataset
- Query the data under the dataset
- Delete multiple data
- Query a single data
- Query multiple data
- Generate presigned file upload url
- Upload file through presigned url
- Annotation
- Model
- Plugin API
Image object detection
Docker Compose
Docker Compose
POST
http://localhost:8190/api/model/image/recognition
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
dataId
integer
The data ID that needs to be predicted.
minConfidence
number
Min confidence
maxConfidence
number
Max confidence
classes
array[string]
Class list
Example
{
"dataId": 0,
"minConfidence": 0,
"maxConfidence": 0,
"classes": [
"string"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8190/api/model/image/recognition' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Successful
application/json
Body
object {0}
Example
{}
Modified at 2023-01-04 10:37:26