List all devices

GET /v1/devices

Returns a list of Auditzy supported devices

Responses

  • 200 application/json

    Successful response.

    Hide response attribute Show response attribute object

    An object containing a list of device objects

    • data array[object]

      An array of device objects

      Hide data attributes Show data attributes object
      • id string

        Values are mobile, desktop, macbookAir2020, highEndLaptop, macbookPro133, macbookPro16, msSurfaceBook315, msSurfaceBook3135, msSurface, ipad102, samsungGalaxyTab7, iphone13ProMax, iphone11, samsungGalaxyS10Plus, redmiNote8Pro, iphone7, samsungGalaxyA50, motorolaMotoG5, redmi5A, iphone13Pro, iphone8Plus, ipadPro129, samsungGalaxyA32, samsungGalaxyS21Ultra, samsungGalaxyS20, oneplus10Pro, oneplus7, iphoneXR, iphone5, iphone6, iphone11Pro, iphone12Pro, iphone12Mini, pixel, oneplusNord, samsungGalaxyS8, pixel3, pixel4, pixel5, pixel6, or pixel6Pro.

      • name string
      • mode string

        Values are mobile or desktop.

GET /v1/devices
curl \
 -X GET https://api.auditzy.com/v1/devices
Response examples (200)
{
  "data": [
    {
      "id": "macbookAir2020",
      "mode": "desktop",
      "name": "Macbook Air 2020 (1440 x 900)"
    },
    {
      "id": "iphone13ProMax",
      "mode": "mobile",
      "name": "iPhone 13 Pro Max (428 x 926)"
    },
    "{...}",
    "{...}"
  ],
  "status": "SUCCESS"
}