get_similar_sounds
Find audio samples similar to a specific sound by ID, with options to filter by content descriptors and paginate results.
Instructions
Find sounds similar to a given sound
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sound_id | Yes | The ID of the sound to find similar sounds for | |
| descriptors_filter | No | Filter similar sounds by content descriptors | |
| page | No | Page number (default: 1) | |
| page_size | No | Number of results per page (default: 15) |
Input Schema (JSON Schema)
{
"properties": {
"descriptors_filter": {
"description": "Filter similar sounds by content descriptors",
"type": "string"
},
"page": {
"description": "Page number (default: 1)",
"type": "number"
},
"page_size": {
"description": "Number of results per page (default: 15)",
"type": "number"
},
"sound_id": {
"description": "The ID of the sound to find similar sounds for",
"type": "number"
}
},
"required": [
"sound_id"
],
"type": "object"
}