get_mlb_awards
Retrieve MLB award recipients by specifying the award ID. This tool provides detailed information on winners, enabling integration of baseball award data into applications.
Instructions
Get award recipients for a specific award.
Args: award_id (int): Award ID.
Returns: dict: Award recipients.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
award_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"award_id": {
"title": "Award Id",
"type": "integer"
}
},
"required": [
"award_id"
],
"type": "object"
}