get_cards_ease_factors
Retrieve ease factors for specific Anki flashcards by providing their card IDs, enabling users to analyze and optimize their spaced repetition learning process.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to get ease factors for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to get ease factors for",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"cardIds"
],
"type": "object"
}