The sound effect object

❗️

Limited Access

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

Attributes

Attribute

Type

Description

title

string

Sound effect title

description

string

Description of the sound effect

primary_category

string

The primary category name of the sound effect

primary_subcategory

string or null

The primary subcategory of the sound effect

categories

[string]

The primary categories of the sound effect

subcategories

[string]

The subcategories of the sound effect if any

duration

number

Duration in seconds

versions

object

  • mp3 [string]: .mp3 URL. Useful for previewing or when minimizing file size is important, such as for previewing or access on mobile devices.
  • wav [string]: .wav URL. Useful when the highest quality, film-standard audio resolution is required (48kHz/24-bit).
Note: URLs expire. If caching URLs, please reindex nightly at a minimum.

Example

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