action shutterstock_list_moods { label: "List audio moods" description: "This endpoint returns a list of all audio moods." provider: shutterstock method: GET path: "/v2/audio/moods" encoding: json input: { type: "object" properties: { language: { type: "string" } } additionalProperties: false } output: { type: "object" description: "List of audio moods" required: ["data"] properties: { data: { type: "array" description: "List of audio moods" items: { type: "string" } } } additionalProperties: false } }