API Basics
Samples
Metadata & Tags
Analyses
- The Analysis Resource
- GETRetrieve All Analyses
- GETRetrieve An Analysis
- GETRetrieve Analysis Results
- GETRetrieve Analysis Files
- GETRetrieve Analysis Output File Details
- The Classification Resource
- GETRetrieve All Classifications
- GETRetrieve A Classification
- GETRetrieve Classification Results
- GETRead-Level Results
- The Panel Resource
- GETRetrieve All Panels
- GETRetrieve A Panel
- GETPanel Results
- The Alignment Resource
- GETRetrieve All Alignments
- GETRetrieve An Alignment
Documents
Analyses
Retrieve An Analysis
Analyses
Retrieve An Analysis
GET
/
api
/
v1
/
analyses
/
{id}
{
"$uri": "<string>",
"analysis_type": "<string>",
"complete": true,
"cost": {
"amount": 123,
"currency": "USD"
},
"created_at": "2023-11-07T05:31:56Z",
"dependencies": [],
"error_msg": "<string>",
"job": {
"$ref": "<string>"
},
"job_args": {},
"sample": {
"$ref": "<string>"
},
"success": true,
"updated_at": "2023-11-07T05:31:56Z"
}
GET a single analysis by its ID.
Path Parameters
Response
200 - application/json
Successful operation
The response is of type object
.
{
"$uri": "<string>",
"analysis_type": "<string>",
"complete": true,
"cost": {
"amount": 123,
"currency": "USD"
},
"created_at": "2023-11-07T05:31:56Z",
"dependencies": [],
"error_msg": "<string>",
"job": {
"$ref": "<string>"
},
"job_args": {},
"sample": {
"$ref": "<string>"
},
"success": true,
"updated_at": "2023-11-07T05:31:56Z"
}