get_cards_intervals
Retrieve study intervals for specified Anki flashcards, returning all intervals or just the most recent based on user preference.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cardIds | Yes | Array of card IDs to get intervals for | |
complete | No | If true, returns all intervals; if false, returns only the most recent |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cardIds": {
"description": "Array of card IDs to get intervals for",
"items": {
"type": "number"
},
"type": "array"
},
"complete": {
"description": "If true, returns all intervals; if false, returns only the most recent",
"type": "boolean"
}
},
"required": [
"cardIds"
],
"type": "object"
}