get_sound
Retrieve detailed information about specific audio samples from Freesound.org using sound IDs and content descriptors to analyze sound characteristics and metadata.
Instructions
Get detailed information about a specific sound
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sound_id | Yes | The ID of the sound | |
| descriptors | No | Comma-separated list of content-based descriptors to include |
Input Schema (JSON Schema)
{
"properties": {
"descriptors": {
"description": "Comma-separated list of content-based descriptors to include",
"type": "string"
},
"sound_id": {
"description": "The ID of the sound",
"type": "number"
}
},
"required": [
"sound_id"
],
"type": "object"
}