BasicAI CE Open & Plugin API
  1. Annotation
BasicAI CE Open & Plugin API
  • 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
      • Get data and result information
        GET
      • Download dataset annotation results
        GET
    • Model
      • Image object detection
      • Point cloud object detection
  • Plugin API
    • Model
      • Point cloud object detection
      • Image object detection
  1. Annotation

Download dataset annotation results

Deprecated
Docker Compose
http://localhost:8190/api
Docker Compose
http://localhost:8190/api
GET
http://localhost:8190/api
/annotate/data/listByDataIds

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
dataIds
array[string]
required

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 GET 'http://localhost:8190/api/annotate/data/listByDataIds?dataIds'

Responses

🟢200Successful
application/json
Body
code
string 
required
message
string 
required
data
array [object {3}] 
required
dataId
number 
required
objects
array [object {5}]  | null 
optional
classificationValues
array [object {4}]  | null 
optional
Example
{
    "code": "string",
    "message": "string",
    "data": [
        {
            "dataId": 0,
            "objects": [
                {
                    "id": 0,
                    "datasetId": 0,
                    "dataId": 0,
                    "classId": 0,
                    "classAttributes": {}
                }
            ],
            "classificationValues": [
                {
                    "id": 0,
                    "datasetId": 0,
                    "dataId": 0,
                    "classificationId": {}
                }
            ]
        }
    ]
}
Modified at 2023-01-05 04:09:13
Previous
Get data and result information
Next
Image object detection
Built with