action freesound_get_sound_by_id { label: "Details of a sound" description: "This resource allows the retrieval of detailed information about a sound." provider: freesound method: GET path: "/sounds/{soundId}" encoding: json input: { type: "object" properties: { soundId: { type: "string" } } required: ["soundId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }