The sound effect object

❗️

Limited Access

Access to this resource is limited. Contact our sales team for more information.

Attributes

AttributeTypeDescription
titlestringSound effect title
descriptionstringDescription of the sound effect
primary_categorystringThe primary category name of the sound effect
primary_subcategorystring or nullThe primary subcategory of the sound effect
categoriesarray<string>The primary categories of the sound effect
subcategoriesarray<string>The subcategories of the sound effect if any
durationnumberDuration in seconds, or null when it is unavailable.
versionsobject
  • mp3 [string]: URL for the MP3 version.
  • wav [string]: URL for the WAV version.
URLs are signed and expire after seven days; request the sound effect again to obtain fresh URLs.

Example

{
  "id": "1",
  "type": "sound_effects",
  "attributes": {
    "title": "Thunderstorm",
    "description": "Rain falling with thunder.",
    "primary_category": "ambiance",
    "primary_subcategory": "weather",
    "categories": [
      "Ambiance"
    ],
    "subcategories": [
      "Weather"
    ],
    "duration": 10,
    "versions": {
      "mp3": "https://soundstripe.example.com/thunderstorm.mp3",
      "wav": "https://soundstripe.example.com/thunderstorm.wav"
    }
  }
}