get_person_by_wca_id
Retrieve detailed speedcubing competitor information using their WCA ID, including personal bests, rankings, medal counts, and competition history.
Instructions
Get detailed information about a specific WCA competitor by their WCA ID.
Returns comprehensive information about a speedcuber including their personal bests, rankings, medal counts, and competition history.
Args: wca_id: WCA ID of the person (e.g., "2003SEAR02")
Returns: Detailed person information including records and achievements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wca_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"wca_id": {
"title": "Wca Id",
"type": "string"
}
},
"required": [
"wca_id"
],
"type": "object"
}