get-user-submissions
Fetch and analyze user submissions from LeetCode by entering a username and submission limit. Retrieve up to 100 recent submissions for insights or evaluation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of submissions to return | |
username | Yes | LeetCode username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"description": "Maximum number of submissions to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"username": {
"description": "LeetCode username",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}