get_user_profile
Fetch LeetCode user profile details, including stats, solved problems, and other relevant data by providing the username.
Instructions
Retrieves profile information about a LeetCode user, including user stats, solved problems, and profile details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | LeetCode username to retrieve profile information for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"username": {
"description": "LeetCode username to retrieve profile information for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}