export_study_chapter
Extract a specific chapter from a Lichess study in PGN format by providing the study ID and chapter ID for easy analysis or sharing.
Instructions
Export one study chapter in PGN format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chapterId | Yes | Chapter ID | |
studyId | Yes | Study ID |
Input Schema (JSON Schema)
{
"properties": {
"chapterId": {
"description": "Chapter ID",
"type": "string"
},
"studyId": {
"description": "Study ID",
"type": "string"
}
},
"required": [
"studyId",
"chapterId"
],
"type": "object"
}