- Open API
- Dataset
- Create DatasetPOST
- Edit DatasetPOST
- Delete DatasetPOST
- Query a single datasetGET
- Query the list of datasetsGET
- Upload the dataset compressed packagePOST
- Query the processing progress of the compressed datasetGET
- Query the data under the datasetGET
- Delete multiple dataPOST
- Query a single dataGET
- Query multiple dataGET
- Generate presigned file upload urlGET
- Upload file through presigned urlPUT
- Annotation
- Model
- Plugin API
Query a single data
Docker Compose
Docker Compose
GET
http://localhost:8190/api/data/info/{id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
integer
required
Example:
3090418
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/data/info/3090418'
Responses
🟢200Successful
application/json
Body
code
string
required
message
string
required
data
object (Dataset)
required
id
string
ID
datasetId
string
Dataset ID
name
string
Name
content
array [object {4}] | null
Json file
status
string
Data status
annotationStatus
string
Annotation status
lockedBy
string | null
Locked by
Example
{
"code": "string",
"message": "string",
"data": {
"id": "string",
"datasetId": "string",
"name": "string",
"content": [
{
"name": "string",
"type": "string",
"files": [
{
"name": "string",
"fileId": "string",
"type": "string",
"file": {
"id": "string",
"name": "string",
"originalName": "string",
"path": "string",
"type": "string",
"size": "string",
"bucketName": "string",
"url": "string",
"pathHash": "string",
"extraInfo": "string"
}
}
],
"directoryType": "string"
}
],
"status": "string",
"annotationStatus": "string",
"lockedBy": "string"
}
}
Modified at 2023-01-04 10:37:09