Get event audio recording
Get the audio recording for the given noise event.
Requires an API key with the data.events:read
and data.audio:read
scopes.
Query parameters
-
Choose audio file format and codec
Values are
FLAC
,WAV
,AAC
, orOGG
. Default value isFLAC
.
GET
/data/events/audio/{id}
curl \
--request GET 'https://api.mycirrus.cloud/v1/data/events/audio/{id}'
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 (404)
Example 1
{
"error": "MissingParam",
"description": "The required parameter StartTime was missing from the request."
}
{
"error": "NotFound",
"description": "The instrument QT123456 could not be found."
}
Response examples (429)
{
"error": "TooManyRequests",
"description": "You have made too many requests in a short time. Please wait before trying again."
}