Fetch SIC results
Get System Integrity Check (SIC) results for the selected instruments and time range.
The maximum date range per request is 1 year. If you request a longer range, the server will respond with an error.
Requires an API key with the data.system:read
scope.
Query parameters
-
instruments
array[string] Required Serial numbers of selected instruments
-
start
string(date-time) Required Start date and time for loading a range of data. Must be in UTC.
This uses the ISO8601 format. For example,
2023-01-01T00:00:00Z
is 1st January 2023 at midnight UTC. -
end
string(date-time) Required End date and time for loading a range of data. Must be in UTC.
This uses the ISO8601 format. For example,
2023-01-01T00:00:00Z
is 1st January 2023 at midnight UTC.
GET
/data/sic
curl \
--request GET 'https://api.mycirrus.cloud/v1/data/sic?instruments=QT123456&instruments=QT234567&start=2023-01-01T00%3A00%3A00Z&end=2023-01-31T00%3A00%3A00Z'
Response examples (200)
[
{
"time": "2023-06-14T14:00:00.2074974Z",
"_1KHz": 48.5379,
"_8KHz": 35.7019,
"_500Hz": 55.3829,
"status": "Error",
"instrument": "QT800002"
}
]
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."
}