action shutterstock_get_sfx_details { label: "Get details about sound effects" description: "This endpoint shows information about a sound effect." provider: shutterstock method: GET path: "/v2/sfx/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } language: { type: "string" description: "Language code" enum: ["ar", "bg", "bn", "cs", "da", "de", "el", "en", "es", "fi", "fr", "gu", "he", "hi", "hr", "hu", "id", "it", "ja", "kn", "ko", "ml", "mr", "nb", "nl", "or", "pl", "pt", "ro", "ru", "sk", "sl", "sv", "ta", "te", "th", "tr", "uk", "ur", "vi", "zh", "zh-Hant"] } library: { type: "string" enum: ["shutterstock", "premier", "premiumbeat"] } search_id: { type: "string" } view: { type: "string" enum: ["minimal", "full"] } } required: ["id"] additionalProperties: false } output: { type: "object" description: "SFX metadata" required: ["contributor", "id", "media_type"] properties: { added_date: { type: "string" format: "date" description: "Date this sound effect was added to the Shutterstock library" } affiliate_url: { type: "string" description: "Affiliate referral link; appears only for registered affiliate partners" } artist: { type: "string" description: "Artist of the sound effect" } assets: { type: "object" description: "Files that are available as part of an sound effect asset" properties: { preview_mp3: { type: "object" description: "Information about a file that is part of an sound effect asset" properties: { file_size: { type: "integer" description: "File size of the sound effect" } url: { type: "string" description: "URL the sound effect is available at" } } } waveform: { type: "object" additionalProperties: true } } } contributor: { type: "object" description: "Information about a contributor" required: ["id"] properties: { id: { type: "string" description: "ID of the contributor" } } } description: { type: "string" description: "Description of this sound effect" } duration: { type: "number" description: "Duration of this sound effect in seconds" } id: { type: "string" description: "Shutterstock ID of this sound effect" } keywords: { type: "array" description: "List of all keywords for this sound effect" items: { type: "string" description: "Keyword for this track" } } media_type: { type: "string" description: "Media type of this track; should always be \"sfx\"" } releases: { type: "array" description: "List of all releases of this sound effect" items: { type: "string" description: "Release of this sound effect" } } title: { type: "string" description: "Title of this sound effect" } updated_time: { type: "string" format: "date-time" description: "Time this sound effect was last updated" } url: { type: "string" } } } }