Retrieve the list of instruments
Get a list of all instruments that can be accessed with your account or api key.
Requires an API key with the instruments:read
scope.
GET
/control/instruments
curl \
--request GET 'https://api.mycirrus.cloud/v1/control/instruments'
Response examples (200)
[
{
"name": "My Quantum",
"type": "Noise",
"image": "https://images.mycirrus.cloud/xxxxxxxx-xxxxxxxx-xxxxxxxx.jpg",
"model": "CR:900",
"feature": [
"SIC",
"Modem"
],
"position": {
"lat": 0,
"long": 0
},
"serialNumber": "QT123456",
"subscription": {
"tier": "Standard",
"status": "Active"
}
}
]
Response examples (401)
{
"error": "TokenExpired",
"description": "Your access token is invalid or has expired. Try refreshing the token."
}
Response examples (403)
{
"error": "AccessDenied",
"description": "You do not have permission to access this data."
}
Response examples (429)
{
"error": "TooManyRequests",
"description": "You have made too many requests in a short time. Please wait before trying again."
}