Retrieve the list of instruments

GET /control/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.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • type string

      Type of instrument

      Values are Noise, AirQuality, or Vibration.

    • Serial number of the instrument

    • model string

      Model of the instrument

    • name string

      Friendly name or description of the instrument

    • image string(uri)

      URL of the image for the instrument

    • Subscription details for this instrument

      Additional properties are allowed.

      Hide subscription attributes Show subscription attributes object
      • status string

        Status of the subscription

        Values are Active, Cancelled, or Expired.

      • tier string

        Tier of the subscription

        Values are Standard, Pro, Storage, Track, or Enviro.

      • addons array[string]

        Addons for the subscription

        Value is Audio.

    • position object

      Position of the instrument

      Additional properties are allowed.

      Hide position attributes Show position attributes object
    • feature array[string]

      Additional features available on this instrument

      Values are SIC, Modem, or Weather.

  • 401 application/json

    Your access token is invalid or has expired

    Hide response attributes Show response attributes object
  • 403 application/json

    You do not have permission to access this data

    Hide response attributes Show response attributes object
  • 429 application/json

    You have made too many requests in a short time

    Hide response attributes Show response attributes object
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."
}