Audio Object

The REST endpoints that return asset objects will return different objects for each type of asset (Video, Photo, Audio). Below are examples of the Audio object in their authenticated and unauthenticated states.

You can also check out the Video Object Documentation , Photo Object Documentation or the Audio Object Documentation

Authenticated Audio Object

{
  "uuid": "au-263e9822-d532-411b-b80a-1004540c01a1",
  "mp3_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/mp3.mp3",
  "waveform_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/waveform.jpg",
  "negative_waveform_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/negative_waveform.png",
  "preview_thumbnail_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/waveform.jpg",
  "state": "approved",
  "name": "Demo Sound",
  "description": null,
  "type": "Audio",
  "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
  "captions": [

  ],
  "medias": {
    "mp3": {
      "width": null,
      "height": null,
      "length": 32,
      "media_type": "mp3",
      "name": "mp3",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/mp3/mp3.mp3"
      }
    },
    "waveform": {
      "width": 2000,
      "height": 375,
      "length": 32,
      "media_type": "waveform",
      "name": "waveform",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/png/waveform.png"
      }
    },
    "negative_waveform": {
      "width": 2000,
      "height": 375,
      "length": 32,
      "media_type": "negative_waveform",
      "name": "negative_waveform",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/png/negative_waveform.png"
      }
    }
  }
}

Unauthenticated Audio Object

{
  "uuid": "au-263e9822-d532-411b-b80a-1004540c01a1",
  "mp3_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/mp3.mp3",
  "waveform_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/waveform.jpg",
  "negative_waveform_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/negative_waveform.png",
  "preview_thumbnail_url": "https://www.cameratag.com/assets/au-263e9822-d532-411b-b80a-1004540c01a1/waveform.jpg",
  "state": "approved",
  "name": "Demo Sound",
  "description": null,
  "type": "Audio",
  "app_uuid": "63f9c870-72c4-0130-04c5-123139045d73",
  "captions": [

  ],
  "medias": {
    "mp3": {
      "width": null,
      "height": null,
      "length": 32,
      "media_type": "mp3",
      "name": "mp3",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/mp3/mp3.mp3"
      }
    },
    "waveform": {
      "width": 2000,
      "height": 375,
      "length": 32,
      "media_type": "waveform",
      "name": "waveform",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/png/waveform.png"
      }
    },
    "negative_waveform": {
      "width": 2000,
      "height": 375,
      "length": 32,
      "media_type": "negative_waveform",
      "name": "negative_waveform",
      "state": "COMPLETED",
      "urls": {
        "cameratag": "https://cameratag.com/downloads/au-263e9822-d532-411b-b80a-1004540c01a1/png/negative_waveform.png"
      }
    }
  }
}