get_recent_submissions
Retrieve detailed metadata of a user's recent LeetCode submissions, including accepted and failed attempts, by specifying their username and an optional limit.
Instructions
Retrieves a user's recent submissions on LeetCode Global, including both accepted and failed submissions with detailed metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of submissions to return (optional, defaults to server-defined limit) | |
username | Yes | LeetCode username to retrieve recent submissions for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of submissions to return (optional, defaults to server-defined limit)",
"type": "number"
},
"username": {
"description": "LeetCode username to retrieve recent submissions for",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}