get-contest-details
Retrieve contest details, including problem sets and metadata, by specifying the contest's URL slug on the LeetCode platform.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contestSlug | Yes | The URL slug of the contest |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contestSlug": {
"description": "The URL slug of the contest",
"type": "string"
}
},
"required": [
"contestSlug"
],
"type": "object"
}