get_user
Retrieve user profile information from Freesound.org by providing a username to access details about audio contributors.
Instructions
Get information about a Freesound user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | The username of the user |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "The username of the user",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}