anki-connect/README.md

3995 lines
89 KiB
Markdown
Raw Normal View History

2021-12-16 02:01:09 +00:00
# Anki-Connect
2016-05-30 02:59:21 +00:00
2021-12-16 16:51:35 +00:00
Anki-Connect enables external applications such as [Yomichan](https://foosoft.net/projects/yomichan/) to communicate
with [Anki](https://apps.ankiweb.net/) over a simple HTTP API. Its capabilities include executing queries against the
user's card deck, automatically creating new cards, and more. Anki-Connect is compatible with the latest stable (2.1.x)
releases of Anki; older versions (2.0.x and below) are no longer supported.
2016-05-30 02:59:21 +00:00
2020-04-22 01:22:10 +00:00
## Installation
2016-05-30 02:59:21 +00:00
2020-05-25 00:50:48 +00:00
The installation process is similar to other Anki plugins and can be accomplished in three steps:
2017-03-15 04:10:45 +00:00
1. Open the `Install Add-on` dialog by selecting `Tools` | `Add-ons` | `Get Add-ons...` in Anki.
2019-04-28 23:02:02 +00:00
2. Input [2055492159](https://ankiweb.net/shared/info/2055492159) into the text box labeled `Code` and press the `OK` button to proceed.
2021-12-16 16:51:35 +00:00
3. Restart Anki when prompted to do so in order to complete the installation of Anki-Connect.
2017-03-15 04:10:45 +00:00
2021-12-16 16:51:35 +00:00
Anki must be kept running in the background in order for other applications to be able to use Anki-Connect. You can
verify that Anki-Connect is running at any time by accessing `localhost:8765` in your browser. If the server is running,
you will see the message `Anki-Connect` displayed in your browser window.
2016-07-03 02:46:01 +00:00
2020-04-22 01:22:10 +00:00
### Notes for Windows Users
2017-01-28 20:20:38 +00:00
2021-12-16 16:51:35 +00:00
Windows users may see a firewall nag dialog box appear on Anki startup. This occurs because Anki-Connect runs a local
2020-05-25 00:50:48 +00:00
HTTP server in order to enable other applications to connect to it. The host application, Anki, must be unblocked for
this plugin to function correctly.
2017-01-28 20:20:38 +00:00
2021-12-16 02:01:09 +00:00
### Notes for MacOS Users
2017-01-28 20:20:38 +00:00
2017-02-12 00:41:02 +00:00
Starting with [Mac OS X Mavericks](https://en.wikipedia.org/wiki/OS_X_Mavericks), a feature named *App Nap* has been
introduced to the operating system. This feature causes certain applications which are open (but not visible) to be
2021-12-16 16:51:35 +00:00
placed in a suspended state. As this behavior causes Anki-Connect to stop working while you have another window in the
2017-02-12 00:41:02 +00:00
foreground, App Nap should be disabled for Anki:
1. Start the Terminal application.
2018-09-16 03:21:03 +00:00
2. Execute the following commands in the terminal window:
2021-06-09 03:42:38 +00:00
```bash
defaults write net.ankiweb.dtop NSAppSleepDisabled -bool true
defaults write net.ichi2.anki NSAppSleepDisabled -bool true
defaults write org.qt-project.Qt.QtWebEngineCore NSAppSleepDisabled -bool true
```
2017-02-12 00:41:02 +00:00
3. Restart Anki.
2020-04-22 01:22:10 +00:00
## Application Interface for Developers
2017-02-01 17:23:09 +00:00
2021-12-16 16:51:35 +00:00
Anki-Connect exposes internal Anki features to external applications via an easy to use API. After being installed, this
2021-07-16 06:08:39 +00:00
plugin will start an HTTP server on port 8765 whenever Anki is launched. Other applications (including browser
2020-05-25 00:50:48 +00:00
extensions) can then communicate with it via HTTP requests.
2017-02-01 17:23:09 +00:00
2021-12-16 16:51:35 +00:00
By default, Anki-Connect will only bind the HTTP server to the `127.0.0.1` IP address, so that you will only be able to
access it from the same host on which it is running. If you need to access it over a network, you can change the
binding address in the configuration. Go to Tools->Add-ons->AnkiConnect->Config and change the "webBindAddress"
value. For example, you can set it to `0.0.0.0` in order to bind it to all network interfaces on your host. This also
requires a restart for Anki.
2020-04-22 01:22:10 +00:00
### Sample Invocation
2017-02-01 17:23:09 +00:00
2020-01-06 03:01:11 +00:00
Every request consists of a JSON-encoded object containing an `action`, a `version`, contextual `params`, and a `key`
2021-12-16 16:51:35 +00:00
value used for authentication (which is optional and can be omitted by default). Anki-Connect will respond with an
object containing two fields: `result` and `error`. The `result` field contains the return value of the executed API,
and the `error` field is a description of any exception thrown during API execution (the value `null` is used if
execution completed successfully).
2019-02-03 16:48:57 +00:00
*Sample successful response*:
```json
{"result": ["Default", "Filtered Deck 1"], "error": null}
```
*Samples of failed responses*:
```json
{"result": null, "error": "unsupported action"}
```
```json
{"result": null, "error": "guiBrowse() got an unexpected keyword argument 'foobar'"}
```
2021-12-16 16:51:35 +00:00
For compatibility with clients designed to work with older versions of Anki-Connect, failing to provide a `version`
field in the request will make the version default to 4. Furthermore, when the provided version is level 4 or below, the
API response will only contain the value of the `result`; no `error` field is available for error handling.
2019-02-03 16:48:57 +00:00
2021-12-16 16:51:35 +00:00
You can use whatever language or tool you like to issue request to Anki-Connect, but a couple of simple examples are
2019-02-03 16:48:57 +00:00
included below as reference.
2020-04-22 01:22:10 +00:00
#### Curl
2019-02-03 16:48:57 +00:00
```bash
2021-09-26 17:41:04 +00:00
curl localhost:8765 -X POST -d '{"action": "deckNames", "version": 6}'
2019-02-03 16:48:57 +00:00
```
#### Powershell
```powershell
(Invoke-RestMethod -Uri http://localhost:8765 -Method Post -Body '{"action": "deckNames", "version": 6}').result
```
2020-04-22 01:22:10 +00:00
#### Python
2019-02-03 16:48:57 +00:00
```python
import json
2019-09-22 10:28:25 +00:00
import urllib.request
2019-02-03 16:48:57 +00:00
def request(action, **params):
return {'action': action, 'params': params, 'version': 6}
def invoke(action, **params):
2019-09-22 10:28:25 +00:00
requestJson = json.dumps(request(action, **params)).encode('utf-8')
response = json.load(urllib.request.urlopen(urllib.request.Request('http://127.0.0.1:8765', requestJson)))
2019-02-03 16:48:57 +00:00
if len(response) != 2:
raise Exception('response has an unexpected number of fields')
if 'error' not in response:
raise Exception('response is missing required error field')
if 'result' not in response:
raise Exception('response is missing required result field')
if response['error'] is not None:
raise Exception(response['error'])
return response['result']
invoke('createDeck', deck='test1')
result = invoke('deckNames')
print('got list of decks: {}'.format(result))
```
2020-04-22 01:22:10 +00:00
#### JavaScript
2017-02-01 17:23:09 +00:00
2017-09-30 00:03:48 +00:00
```javascript
2019-02-03 16:48:57 +00:00
function invoke(action, version, params={}) {
2017-02-03 04:14:24 +00:00
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
2019-02-03 16:48:57 +00:00
xhr.addEventListener('error', () => reject('failed to issue request'));
2017-09-10 05:28:09 +00:00
xhr.addEventListener('load', () => {
try {
const response = JSON.parse(xhr.responseText);
2019-02-03 16:48:57 +00:00
if (Object.getOwnPropertyNames(response).length != 2) {
throw 'response has an unexpected number of fields';
}
if (!response.hasOwnProperty('error')) {
throw 'response is missing required error field';
}
if (!response.hasOwnProperty('result')) {
throw 'response is missing required result field';
}
2017-09-10 05:28:09 +00:00
if (response.error) {
throw response.error;
}
2019-02-03 16:48:57 +00:00
resolve(response.result);
2017-09-10 05:28:09 +00:00
} catch (e) {
reject(e);
2017-02-03 04:14:24 +00:00
}
});
xhr.open('POST', 'http://127.0.0.1:8765');
2017-08-31 04:26:28 +00:00
xhr.send(JSON.stringify({action, version, params}));
2017-02-03 04:14:24 +00:00
});
}
2017-02-01 17:23:09 +00:00
2021-05-06 05:31:26 +00:00
await invoke('createDeck', 6, {deck: 'test1'});
2019-02-03 16:48:57 +00:00
const result = await invoke('deckNames', 6);
console.log(`got list of decks: ${result}`);
2017-05-06 12:39:38 +00:00
```
2021-07-14 00:58:27 +00:00
### Hey, could you add a new action to support $FEATURE?
2021-12-16 16:51:35 +00:00
The primary goal for Anki-Connect was to support real-time flash card creation from the
2021-07-14 00:58:27 +00:00
[Yomichan](https://foosoft.net/projects/yomichan/) browser extension. The current API provides all the required actions
2021-12-16 16:51:35 +00:00
to make this happen. I recognise that the role of Anki-Connect has evolved from this original vision, and I am happy to
2021-07-14 00:58:27 +00:00
review new feature requests.
With that said, *this project operates on a self-serve model*. If you would like a new feature, create a PR. I'll review
2021-12-16 02:01:09 +00:00
it and if it looks good, it will be merged in. *Requests to add new features without accompanying pull requests will not
be serviced*. Make sure that your pull request meets the following criteria:
2021-07-14 00:58:27 +00:00
* Attempt to match style of the surrounding code.
* Have accompanying documentation with examples.
* Have accompanying tests that verify operation.
* Implement features useful in other applications.
## Supported Actions
2017-08-22 08:43:37 +00:00
2020-05-25 00:23:37 +00:00
Documentation for currently supported actions is split up by category and is referenced below. Note that deprecated APIs
will continue to function despite not being listed on this page as long as your request is labeled with a version number
2020-05-25 00:50:48 +00:00
corresponding to when the API was available for use.
2020-05-25 00:23:37 +00:00
2021-06-09 03:42:38 +00:00
* [Card Actions](#card-actions)
* [Deck Actions](#deck-actions)
* [Graphical Actions](#graphical-actions)
* [Media Actions](#media-actions)
* [Miscellaneous Actions](#miscellaneous-actions)
* [Model Actions](#model-actions)
* [Note Actions](#note-actions)
* [Statistic Actions](#statistic-actions)
---
2021-06-09 03:42:38 +00:00
### Card Actions
2021-06-09 03:42:38 +00:00
#### `getEaseFactors`
* Returns an array with the ease factor for each of the given cards (in the same order).
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getEaseFactors",
"version": 6,
"params": {
"cards": [1483959291685, 1483959293217]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [4100, 3900],
"error": null
}
```
</details>
#### `setEaseFactors`
2021-06-09 03:42:38 +00:00
* Sets ease factor of cards by card ID; returns `true` if successful (all cards existed) or `false` otherwise.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "setEaseFactors",
"version": 6,
"params": {
"cards": [1483959291685, 1483959293217],
"easeFactors": [4100, 3900]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [true, true],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `setSpecificValueOfCard`
* Sets specific value of a single card. Given the risk of wreaking havor in the database when changing some of the values of a card, some of the keys require the argument "warning_check" set to True.
This can be used to set a card's flag, change it's ease factor, change the review order in a filtered deck and change the column "data" (not currently used by anki apparantly), and many other values.
A list of values and explanation of their respective utility can be found at [AnkiDroid's wiki](https://github.com/ankidroid/Anki-Android/wiki/Database-Structure).
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "setSpecificValueOfCard",
"version": 6,
"params": {
"card": 1483959291685,
"keys": ["flags", "odue"],
"newValues": ["1", "-100"]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": [true, true],
"error": null
}
```
</details>
#### `suspend`
2021-06-09 03:42:38 +00:00
* Suspend cards by card ID; returns `true` if successful (at least one card wasn't already suspended) or `false`
2021-06-09 03:42:38 +00:00
otherwise.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "suspend",
"version": 6,
"params": {
"cards": [1483959291685, 1483959293217]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `unsuspend`
2021-06-09 03:42:38 +00:00
* Unsuspend cards by card ID; returns `true` if successful (at least one card was previously suspended) or `false`
2021-06-09 03:42:38 +00:00
otherwise.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "unsuspend",
"version": 6,
"params": {
"cards": [1483959291685, 1483959293217]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `suspended`
2021-06-09 03:42:38 +00:00
* Check if card is suspended by its ID. Returns `true` if suspended, `false` otherwise.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "suspended",
"version": 6,
"params": {
"card": 1483959293217
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `areSuspended`
2021-06-09 03:42:38 +00:00
* Returns an array indicating whether each of the given cards is suspended (in the same order). If card doesn't
2021-06-09 03:42:38 +00:00
exist returns `null`.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "areSuspended",
"version": 6,
"params": {
"cards": [1483959291685, 1483959293217, 1234567891234]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [false, true, null],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `areDue`
2021-06-09 03:42:38 +00:00
* Returns an array indicating whether each of the given cards is due (in the same order). *Note*: cards in the
2021-06-09 03:42:38 +00:00
learning queue with a large interval (over 20 minutes) are treated as not due until the time of their interval has
passed, to match the way Anki treats them when reviewing.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "areDue",
"version": 6,
"params": {
"cards": [1483959291685, 1483959293217]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [false, true],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `getIntervals`
2021-06-09 03:42:38 +00:00
* Returns an array of the most recent intervals for each given card ID, or a 2-dimensional array of all the intervals
2021-06-09 03:42:38 +00:00
for each given card ID when `complete` is `true`. Negative intervals are in seconds and positive intervals in days.
<details>
<summary><i>Sample request 1:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getIntervals",
"version": 6,
"params": {
"cards": [1502298033753, 1502298036657]
}
}
```
</details>
<details>
<summary><i>Sample result 1:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [-14400, 3],
"error": null
}
```
</details>
<details>
<summary><i>Sample request 2:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getIntervals",
"version": 6,
"params": {
"cards": [1502298033753, 1502298036657],
"complete": true
}
}
```
</details>
<details>
<summary><i>Sample result 2:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [
[-120, -180, -240, -300, -360, -14400],
[-120, -180, -240, -300, -360, -14400, 1, 3]
],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `findCards`
2021-06-09 03:42:38 +00:00
* Returns an array of card IDs for a given query. Functionally identical to `guiBrowse` but doesn't use the GUI for
2021-06-09 03:42:38 +00:00
better performance.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "findCards",
"version": 6,
"params": {
"query": "deck:current"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [1494723142483, 1494703460437, 1494703479525],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `cardsToNotes`
2021-06-09 03:42:38 +00:00
* Returns an unordered array of note IDs for the given card IDs. For cards with the same note, the ID is only given
2021-06-09 03:42:38 +00:00
once in the array.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "cardsToNotes",
"version": 6,
"params": {
"cards": [1502098034045, 1502098034048, 1502298033753]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [1502098029797, 1502298025183],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `cardsModTime`
* Returns a list of objects containings for each card ID the modification time.
This function is about 15 times faster than executing `cardsInfo`.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "cardsModTime",
"version": 6,
"params": {
"cards": [1498938915662, 1502098034048]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": [
{
"cardId": 1498938915662,
"mod": 1629454092
}
],
"error": null
}
```
</details>
#### `cardsInfo`
2021-06-09 03:42:38 +00:00
* Returns a list of objects containing for each card ID the card fields, front and back sides including CSS, note
type, the note that the card belongs to, and deck name, last modification timestamp as well as ease and interval.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "cardsInfo",
"version": 6,
"params": {
"cards": [1498938915662, 1502098034048]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [
{
"answer": "back content",
"question": "front content",
"deckName": "Default",
"modelName": "Basic",
"fieldOrder": 1,
"fields": {
"Front": {"value": "front content", "order": 0},
"Back": {"value": "back content", "order": 1}
},
"css":"p {font-family:Arial;}",
"cardId": 1498938915662,
"interval": 16,
"note":1502298033753,
"ord": 1,
"type": 0,
"queue": 0,
"due": 1,
"reps": 1,
"lapses": 0,
"left": 6,
"mod": 1629454092
2021-06-09 03:42:38 +00:00
},
{
"answer": "back content",
"question": "front content",
"deckName": "Default",
"modelName": "Basic",
"fieldOrder": 0,
"fields": {
"Front": {"value": "front content", "order": 0},
"Back": {"value": "back content", "order": 1}
},
"css":"p {font-family:Arial;}",
"cardId": 1502098034048,
"interval": 23,
"note":1502298033753,
"ord": 1,
"type": 0,
"queue": 0,
"due": 1,
"reps": 1,
"lapses": 0,
"left": 6
}
],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `forgetCards`
2021-06-09 03:42:38 +00:00
* Forget cards, making the cards new again.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "forgetCards",
"version": 6,
"params": {
"cards": [1498938915662, 1502098034048]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `relearnCards`
2021-06-09 03:42:38 +00:00
* Make cards be "relearning".
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "relearnCards",
"version": 6,
"params": {
"cards": [1498938915662, 1502098034048]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2023-06-11 21:57:08 +00:00
#### `answerCards`
2023-06-15 11:49:02 +00:00
* Answer cards. Ease is between 1 (Again) and 4 (Easy). Will start the timer immediately before answering. Returns `true` if card exists, `false` otherwise.
2023-06-11 21:57:08 +00:00
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "answerCards",
"version": 6,
"params": {
2023-06-15 11:49:02 +00:00
"answers": [
{
"cardId": 1498938915662,
"ease": 2
},
{
"cardId": 1502098034048,
"ease": 4
}
]
2023-06-11 21:57:08 +00:00
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": [true, true],
"error": null
}
```
</details>
---
2021-06-09 03:42:38 +00:00
### Deck Actions
2021-06-09 03:42:38 +00:00
#### `deckNames`
2021-06-09 03:42:38 +00:00
* Gets the complete list of deck names for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "deckNames",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": ["Default"],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `deckNamesAndIds`
2021-06-09 03:42:38 +00:00
* Gets the complete list of deck names and their respective IDs for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "deckNamesAndIds",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {"Default": 1},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `getDecks`
2021-06-09 03:42:38 +00:00
* Accepts an array of card IDs and returns an object with each deck name as a key, and its value an array of the given
2021-06-09 03:42:38 +00:00
cards which belong to it.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getDecks",
"version": 6,
"params": {
"cards": [1502298036657, 1502298033753, 1502032366472]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"Default": [1502032366472],
"Japanese::JLPT N3": [1502298036657, 1502298033753]
},
"error": null
}
```
</details>
#### `createDeck`
2021-06-09 03:42:38 +00:00
* Create a new empty deck. Will not overwrite a deck that exists with the same name.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "createDeck",
"version": 6,
"params": {
"deck": "Japanese::Tokyo"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 1519323742721,
"error": null
}
```
</details>
#### `changeDeck`
2021-06-09 03:42:38 +00:00
* Moves cards with the given IDs to a different deck, creating the deck if it doesn't exist yet.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "changeDeck",
"version": 6,
"params": {
"cards": [1502098034045, 1502098034048, 1502298033753],
"deck": "Japanese::JLPT N3"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `deleteDecks`
2021-06-09 03:42:38 +00:00
* Deletes decks with the given names.
The argument `cardsToo` *must* be specified and set to `true`.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "deleteDecks",
"version": 6,
"params": {
"decks": ["Japanese::JLPT N5", "Easy Spanish"],
"cardsToo": true
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `getDeckConfig`
2021-06-09 03:42:38 +00:00
* Gets the configuration group object for the given deck.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getDeckConfig",
"version": 6,
"params": {
"deck": "Default"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"lapse": {
"leechFails": 8,
"delays": [10],
"minInt": 1,
"leechAction": 0,
"mult": 0
},
"dyn": false,
"autoplay": true,
"mod": 1502970872,
"id": 1,
"maxTaken": 60,
"new": {
"bury": true,
"order": 1,
"initialFactor": 2500,
"perDay": 20,
"delays": [1, 10],
"separate": true,
"ints": [1, 4, 7]
},
"name": "Default",
"rev": {
"bury": true,
"ivlFct": 1,
"ease4": 1.3,
"maxIvl": 36500,
"perDay": 100,
"minSpace": 1,
"fuzz": 0.05
},
"timer": 0,
"replayq": true,
"usn": -1
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `saveDeckConfig`
2021-06-09 03:42:38 +00:00
* Saves the given configuration group, returning `true` on success or `false` if the ID of the configuration group is
2021-06-09 03:42:38 +00:00
invalid (such as when it does not exist).
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "saveDeckConfig",
"version": 6,
"params": {
"config": {
"lapse": {
"leechFails": 8,
"delays": [10],
"minInt": 1,
"leechAction": 0,
"mult": 0
},
"dyn": false,
"autoplay": true,
"mod": 1502970872,
"id": 1,
"maxTaken": 60,
"new": {
"bury": true,
"order": 1,
"initialFactor": 2500,
"perDay": 20,
"delays": [1, 10],
"separate": true,
"ints": [1, 4, 7]
},
"name": "Default",
"rev": {
"bury": true,
"ivlFct": 1,
"ease4": 1.3,
"maxIvl": 36500,
"perDay": 100,
"minSpace": 1,
"fuzz": 0.05
},
"timer": 0,
"replayq": true,
"usn": -1
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `setDeckConfigId`
2021-06-09 03:42:38 +00:00
* Changes the configuration group for the given decks to the one with the given ID. Returns `true` on success or
2021-06-09 03:42:38 +00:00
`false` if the given configuration group or any of the given decks do not exist.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "setDeckConfigId",
"version": 6,
"params": {
"decks": ["Default"],
"configId": 1
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `cloneDeckConfigId`
2021-06-09 03:42:38 +00:00
* Creates a new configuration group with the given name, cloning from the group with the given ID, or from the default
2021-06-09 03:42:38 +00:00
group if this is unspecified. Returns the ID of the new configuration group, or `false` if the specified group to
clone from does not exist.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "cloneDeckConfigId",
"version": 6,
"params": {
"name": "Copy of Default",
"cloneFrom": 1
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 1502972374573,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `removeDeckConfigId`
2021-06-09 03:42:38 +00:00
* Removes the configuration group with the given ID, returning `true` if successful, or `false` if attempting to
2021-06-09 03:42:38 +00:00
remove either the default configuration group (ID = 1) or a configuration group that does not exist.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "removeDeckConfigId",
"version": 6,
"params": {
"configId": 1502972374573
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `getDeckStats`
2022-05-03 21:59:33 +00:00
* Gets statistics such as total cards and cards due for the given decks.
2022-05-03 21:59:33 +00:00
<details>
<summary><i>Sample request:</i></summary>
2022-05-03 21:59:33 +00:00
```json
{
"action": "getDeckStats",
"version": 6,
"params": {
"decks": ["Japanese::JLPT N5", "Easy Spanish"]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2022-05-03 21:59:33 +00:00
```json
{
"result": {
"1651445861967": {
"deck_id": 1651445861967,
"name": "Japanese::JLPT N5",
"new_count": 20,
"learn_count": 0,
"review_count": 0,
"total_in_deck": 1506
},
"1651445861960": {
"deck_id": 1651445861960,
"name": "Easy Spanish",
"new_count": 26,
"learn_count": 10,
"review_count": 5,
"total_in_deck": 852
}
},
"error": null
}
```
</details>
2022-05-03 21:59:33 +00:00
---
2021-06-09 03:42:38 +00:00
### Graphical Actions
2021-06-09 03:42:38 +00:00
#### `guiBrowse`
2021-06-09 03:42:38 +00:00
* Invokes the *Card Browser* dialog and searches for a given query. Returns an array of identifiers of the cards that
were found. Query syntax is [documented here](https://docs.ankiweb.net/searching.html).
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiBrowse",
"version": 6,
"params": {
"query": "deck:current"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [1494723142483, 1494703460437, 1494703479525],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiSelectedNotes`
2021-12-06 16:59:10 +00:00
* Finds the open instance of the *Card Browser* dialog and returns an array of identifiers of the notes that are
2021-12-06 16:59:10 +00:00
selected. Returns an empty list if the browser is not open.
<details>
<summary><i>Sample request:</i></summary>
2021-12-06 16:59:10 +00:00
```json
{
"action": "guiSelectedNotes",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-12-06 16:59:10 +00:00
```json
{
"result": [1494723142483, 1494703460437, 1494703479525],
"error": null
}
```
</details>
2021-12-06 16:59:10 +00:00
#### `guiAddCards`
2021-06-09 03:42:38 +00:00
* Invokes the *Add Cards* dialog, presets the note using the given deck and model, with the provided field values and tags.
2021-06-09 03:42:38 +00:00
Invoking it multiple times closes the old window and _reopen the window_ with the new provided values.
Audio, video, and picture files can be embedded into the fields via the `audio`, `video`, and `picture` keys, respectively.
Refer to the documentation of `addNote` and `storeMediaFile` for an explanation of these fields.
2021-06-09 03:42:38 +00:00
The result is the ID of the note which would be added, if the user chose to confirm the *Add Cards* dialogue.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiAddCards",
"version": 6,
"params": {
"note": {
"deckName": "Default",
"modelName": "Cloze",
"fields": {
"Text": "The capital of Romania is {{c1::Bucharest}}",
"Extra": "Romania is a country in Europe"
},
"tags": [
"countries"
],
"picture": [{
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/13/EU-Romania.svg/285px-EU-Romania.svg.png",
"filename": "romania.png",
"fields": [
"Extra"
]
}]
2021-06-09 03:42:38 +00:00
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 1496198395707,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiEditNote`
2022-03-30 19:26:26 +00:00
* Opens the *Edit* dialog with a note corresponding to given note ID.
2022-03-30 19:26:26 +00:00
The dialog is similar to the *Edit Current* dialog, but:
2022-03-30 19:26:26 +00:00
* has a Preview button to preview the cards for the note
* has a Browse button to open the browser with these cards
* has Previous/Back buttons to navigate the history of the dialog
* has no bar with the Close button
<details>
<summary><i>Sample request:</i></summary>
2022-03-30 19:26:26 +00:00
```json
{
"action": "guiEditNote",
"version": 6,
"params": {
"note": 1649198355435
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2022-03-30 19:26:26 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
#### `guiCurrentCard`
2022-03-30 19:26:26 +00:00
* Returns information about the current card or `null` if not in review mode.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiCurrentCard",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"answer": "back content",
"question": "front content",
"deckName": "Default",
"modelName": "Basic",
"fieldOrder": 0,
"fields": {
"Front": {"value": "front content", "order": 0},
"Back": {"value": "back content", "order": 1}
},
"template": "Forward",
"cardId": 1498938915662,
"buttons": [1, 2, 3],
"nextReviews": ["<1m", "<10m", "4d"]
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiStartCardTimer`
2021-06-09 03:42:38 +00:00
* Starts or resets the `timerStarted` value for the current card. This is useful for deferring the start time to when
2021-06-09 03:42:38 +00:00
it is displayed via the API, allowing the recorded time taken to answer the card to be more accurate when calling
`guiAnswerCard`.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiStartCardTimer",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
#### `guiShowQuestion`
2021-06-09 03:42:38 +00:00
* Shows question text for the current card; returns `true` if in review mode or `false` otherwise.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiShowQuestion",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiShowAnswer`
2021-06-09 03:42:38 +00:00
* Shows answer text for the current card; returns `true` if in review mode or `false` otherwise.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiShowAnswer",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiAnswerCard`
2021-06-09 03:42:38 +00:00
* Answers the current card; returns `true` if succeeded or `false` otherwise. Note that the answer for the current
2021-06-09 03:42:38 +00:00
card must be displayed before before any answer can be accepted by Anki.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiAnswerCard",
"version": 6,
"params": {
"ease": 1
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2023-05-18 09:29:46 +00:00
#### `guiUndo`
* Undo the last action / card; returns `true` if succeeded or `false` otherwise.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "guiUndo",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": true,
"error": null
}
```
</details>
#### `guiDeckOverview`
2021-06-09 03:42:38 +00:00
* Opens the *Deck Overview* dialog for the deck with the given name; returns `true` if succeeded or `false` otherwise.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiDeckOverview",
"version": 6,
"params": {
"name": "Default"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiDeckBrowser`
2021-06-09 03:42:38 +00:00
* Opens the *Deck Browser* dialog.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiDeckBrowser",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiDeckReview`
2021-06-09 03:42:38 +00:00
* Starts review for the deck with the given name; returns `true` if succeeded or `false` otherwise.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiDeckReview",
"version": 6,
"params": {
"name": "Default"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `guiImportFile`
* Invokes the *Import... (Ctrl+Shift+I)* dialog with an optional file path. Brings up the dialog for user to review the import. Supports all file types that Anki supports. Brings open file dialog if no path is provided. Forward slashes must be used in the path on Windows.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "guiImportFile",
"version": 6,
"params": {
"path": "C:/Users/Desktop/cards.txt"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `guiExitAnki`
2021-06-09 03:42:38 +00:00
* Schedules a request to gracefully close Anki. This operation is asynchronous, so it will return immediately and
2021-06-09 03:42:38 +00:00
won't wait until the Anki process actually terminates.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "guiExitAnki",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
#### `guiCheckDatabase`
2021-06-09 03:42:38 +00:00
* Requests a database check, but returns immediately without waiting for the check to complete. Therefore, the action will always return `true` even if errors are detected during the database check.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "guiCheckDatabase",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": true,
"error": null
}
```
</details>
---
### Media Actions
2021-06-09 03:42:38 +00:00
#### `storeMediaFile`
2021-06-09 03:42:38 +00:00
* Stores a file with the specified base64-encoded contents inside the media folder. Alternatively you can specify a
2021-06-09 03:42:38 +00:00
absolute file path, or a url from where the file shell be downloaded. If more than one of `data`, `path` and `url` are provided, the `data` field will be used first, then `path`, and finally `url`. To prevent Anki from removing files not used by any cards (e.g. for configuration files), prefix the filename with an underscore. These files are still synchronized to AnkiWeb.
Any existing file with the same name is deleted by default. Set `deleteExisting` to false to prevent that
by [letting Anki give the new file a non-conflicting name](https://github.com/ankitects/anki/blob/aeba725d3ea9628c73300648f748140db3fdd5ed/rslib/src/media/files.rs#L194).
<details>
<summary><i>Sample request (relative path):</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "storeMediaFile",
"version": 6,
"params": {
"filename": "_hello.txt",
"data": "SGVsbG8sIHdvcmxkIQ=="
}
}
```
*Content of `_hello.txt`*:
```
Hello world!
```
</details>
<details>
<summary><i>Sample result (relative path):</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": "_hello.txt",
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request (absolute path):</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "storeMediaFile",
"version": 6,
"params": {
"filename": "_hello.txt",
"path": "/path/to/file"
}
}
```
</details>
<details>
<summary><i>Sample result (absolute path):</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": "_hello.txt",
"error": null
}
```
</details>
<details>
<summary><i>Sample request (url):</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "storeMediaFile",
"version": 6,
"params": {
"filename": "_hello.txt",
"url": "https://url.to.file"
}
}
```
</details>
<details>
<summary><i>Sample result (url):</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": "_hello.txt",
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `retrieveMediaFile`
2021-06-09 03:42:38 +00:00
* Retrieves the base64-encoded contents of the specified file, returning `false` if the file does not exist.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "retrieveMediaFile",
"version": 6,
"params": {
"filename": "_hello.txt"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": "SGVsbG8sIHdvcmxkIQ==",
"error": null
}
```
</details>
#### `getMediaFilesNames`
2021-06-09 03:42:38 +00:00
* Gets the names of media files matched the pattern. Returning all names by default.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getMediaFilesNames",
"version": 6,
"params": {
"pattern": "_hell*.txt"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": ["_hello.txt"],
"error": null
}
```
</details>
2023-03-21 16:46:55 +00:00
#### `getMediaDirPath`
* Gets the full path to the `collection.media` folder of the currently opened profile.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "getMediaDirPath",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": "/home/user/.local/share/Anki2/Main/collection.media",
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `deleteMediaFile`
2021-06-09 03:42:38 +00:00
* Deletes the specified file inside the media folder.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "deleteMediaFile",
"version": 6,
"params": {
"filename": "_hello.txt"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
---
2021-06-09 03:42:38 +00:00
### Miscellaneous Actions
2021-06-09 03:42:38 +00:00
#### `requestPermission`
2021-06-09 03:42:38 +00:00
* Requests permission to use the API exposed by this plugin. This method does not require the API key, and is the
only one that accepts requests from any origin; the other methods only accept requests from trusted origins,
which are listed under `webCorsOriginList` in the add-on config. `localhost` is trusted by default.
Calling this method from an untrusted origin will display a popup in Anki asking the user whether they want to
allow your origin to use the API; calls from trusted origins will return the result without displaying the popup.
When denying permission, the user may also choose to ignore further permission requests from that origin. These
origins end up in the `ignoreOriginList`, editable via the add-on config.
The result always contains the `permission` field, which in turn contains either the string `granted` or `denied`,
corresponding to whether your origin is trusted. If your origin is trusted, the fields `requireApiKey` (`true` if
required) and `version` will also be returned.
2021-06-09 03:42:38 +00:00
2021-12-16 16:51:35 +00:00
This should be the first call you make to make sure that your application and Anki-Connect are able to communicate
properly with each other. New versions of Anki-Connect are backwards compatible; as long as you are using actions
which are available in the reported Anki-Connect version or earlier, everything should work fine.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "requestPermission",
"version": 6
}
```
</details>
<details>
<summary><i>Samples results:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"permission": "granted",
"requireApiKey": false,
"version": 6
},
"error": null
}
```
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"permission": "denied"
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `version`
2021-06-09 03:42:38 +00:00
* Gets the version of the API exposed by this plugin. Currently versions `1` through `6` are defined.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
2021-06-09 03:50:53 +00:00
```json
{
"action": "version",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
2021-06-09 03:50:53 +00:00
```json
{
"result": 6,
"error": null
2022-05-20 21:08:35 +00:00
}
```
</details>
2022-05-20 21:08:35 +00:00
#### `apiReflect`
2022-05-20 21:08:35 +00:00
* Gets information about the AnkiConnect APIs available. The request supports the following params:
2022-05-20 21:08:35 +00:00
* `scopes` - An array of scopes to get reflection information about.
The only currently supported value is `"actions"`.
* `actions` - Either `null` or an array of API method names to check for.
If the value is `null`, the result will list all of the available API actions.
If the value is an array of strings, the result will only contain actions which were in this array.
The result will contain a list of which scopes were used and a value for each scope.
For example, the `"actions"` scope will contain a `"actions"` property which contains a list of supported action names.
<details>
<summary><i>Sample request:</i></summary>
2022-05-20 21:08:35 +00:00
```json
{
"action": "apiReflect",
"params": {
"scopes": ["actions", "invalidType"],
"actions": ["apiReflect", "invalidMethod"]
},
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2022-05-20 21:08:35 +00:00
```json
{
"result": {
"scopes": ["actions"],
"actions": ["apiReflect"]
},
"error": null
2021-06-09 03:50:53 +00:00
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `sync`
2021-06-09 03:42:38 +00:00
* Synchronizes the local Anki collections with AnkiWeb.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "sync",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `getProfiles`
2021-06-09 03:42:38 +00:00
* Retrieve the list of profiles.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getProfiles",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": ["User 1"],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `loadProfile`
2021-06-09 03:42:38 +00:00
* Selects the profile specified in request.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "loadProfile",
"params": {
"name": "user1"
},
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `multi`
2021-06-09 03:42:38 +00:00
* Performs multiple actions in one request, returning an array with the response of each action (in the given order).
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "multi",
"version": 6,
"params": {
"actions": [
{
"action": "deckNames"
},
{
"action": "deckNames",
"version": 6
},
2021-06-09 03:42:38 +00:00
{
2022-12-06 09:29:48 +00:00
"action": "invalidAction",
"params": {"useless": "param"}
},
{
"action": "invalidAction",
"params": {"useless": "param"},
"version": 6
2021-06-09 03:42:38 +00:00
}
]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [
2022-12-06 09:29:48 +00:00
["Default"],
{"result": ["Default"], "error": null},
{"result": null, "error": "unsupported action"},
2022-12-06 09:29:48 +00:00
{"result": null, "error": "unsupported action"}
2021-06-09 03:42:38 +00:00
],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `exportPackage`
2021-06-09 03:42:38 +00:00
* Exports a given deck in `.apkg` format. Returns `true` if successful or `false` otherwise. The optional property
2021-06-09 03:42:38 +00:00
`includeSched` (default is `false`) can be specified to include the cards' scheduling data.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "exportPackage",
"version": 6,
"params": {
"deck": "Default",
"path": "/data/Deck.apkg",
"includeSched": true
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `importPackage`
2021-06-09 03:42:38 +00:00
* Imports a file in `.apkg` format into the collection. Returns `true` if successful or `false` otherwise.
2021-06-09 03:42:38 +00:00
Note that the file path is relative to Anki's collection.media folder, not to the client.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "importPackage",
"version": 6,
"params": {
"path": "/data/Deck.apkg"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": true,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `reloadCollection`
2021-06-09 03:42:38 +00:00
* Tells anki to reload all data from the database.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "reloadCollection",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
---
### Model Actions
2021-06-09 03:42:38 +00:00
#### `modelNames`
2021-06-09 03:42:38 +00:00
* Gets the complete list of model names for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "modelNames",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": ["Basic", "Basic (and reversed card)"],
"error": null
}
```
</details>
#### `modelNamesAndIds`
2021-06-09 03:42:38 +00:00
* Gets the complete list of model names and their corresponding IDs for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "modelNamesAndIds",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"Basic": 1483883011648,
"Basic (and reversed card)": 1483883011644,
"Basic (optional reversed card)": 1483883011631,
"Cloze": 1483883011630
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `modelFieldNames`
2021-06-09 03:42:38 +00:00
* Gets the complete list of field names for the provided model name.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "modelFieldNames",
"version": 6,
"params": {
"modelName": "Basic"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": ["Front", "Back"],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `modelFieldDescriptions`
* Gets the complete list of field descriptions (the text seen in the gui editor when a field is empty) for the provided model name.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldDescriptions",
"version": 6,
"params": {
"modelName": "Basic"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": ["", ""],
"error": null
}
```
</details>
#### `modelFieldFonts`
* Gets the complete list of fonts along with their font sizes.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldFonts",
"version": 6,
"params": {
"modelName": "Basic"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": {
"Front": {
"font": "Arial",
"size": 20
},
"Back": {
"font": "Arial",
"size": 20
}
},
"error": null
}
```
</details>
#### `modelFieldsOnTemplates`
2021-06-09 03:42:38 +00:00
* Returns an object indicating the fields on the question and answer side of each card template for the given model
2021-06-09 03:42:38 +00:00
name. The question side is given first in each array.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "modelFieldsOnTemplates",
"version": 6,
"params": {
"modelName": "Basic (and reversed card)"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"Card 1": [["Front"], ["Back"]],
"Card 2": [["Back"], ["Front"]]
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `createModel`
2021-06-09 03:42:38 +00:00
* Creates a new model to be used in Anki. User must provide the `modelName`, `inOrderFields` and `cardTemplates` to be
2022-08-22 06:00:15 +00:00
used in the model. There are optional fields `css` and `isCloze`. If not specified, `css` will use the default Anki css and `isCloze` will be equal to `False`. If `isCloze` is `True` then model will be created as Cloze.
2021-06-09 03:42:38 +00:00
Optionally the `Name` field can be provided for each entry of `cardTemplates`. By default the
card names will be `Card 1`, `Card 2`, and so on.
<details>
<summary><i>Sample request</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "createModel",
"version": 6,
"params": {
"modelName": "newModelName",
"inOrderFields": ["Field1", "Field2", "Field3"],
"css": "Optional CSS with default to builtin css",
2022-08-22 06:00:15 +00:00
"isCloze": false,
2021-06-09 03:42:38 +00:00
"cardTemplates": [
{
"Name": "My Card 1",
"Front": "Front html {{Field1}}",
"Back": "Back html {{Field2}}"
}
]
}
}
```
</details>
<details>
<summary><i>Sample result</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result":{
"sortf":0,
"did":1,
"latexPre":"\\documentclass[12pt]{article}\n\\special{papersize=3in,5in}\n\\usepackage[utf8]{inputenc}\n\\usepackage{amssymb,amsmath}\n\\pagestyle{empty}\n\\setlength{\\parindent}{0in}\n\\begin{document}\n",
"latexPost":"\\end{document}",
"mod":1551462107,
"usn":-1,
"vers":[
],
"type":0,
"css":".card {\n font-family: arial;\n font-size: 20px;\n text-align: center;\n color: black;\n background-color: white;\n}\n",
"name":"TestApiModel",
"flds":[
{
"name":"Field1",
"ord":0,
"sticky":false,
"rtl":false,
"font":"Arial",
"size":20,
"media":[
]
},
{
"name":"Field2",
"ord":1,
"sticky":false,
"rtl":false,
"font":"Arial",
"size":20,
"media":[
]
}
],
"tmpls":[
{
"name":"My Card 1",
"ord":0,
"qfmt":"",
"afmt":"This is the back of the card {{Field2}}",
"did":null,
"bqfmt":"",
"bafmt":""
}
],
"tags":[
],
"id":1551462107104,
2021-06-09 03:42:38 +00:00
"req":[
[
0,
"none",
[
]
]
]
},
"error":null
}
```
2023-01-14 06:06:06 +00:00
</details>
2021-06-09 03:42:38 +00:00
#### `modelTemplates`
2021-06-09 03:42:38 +00:00
* Returns an object indicating the template content for each card connected to the provided model by name.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "modelTemplates",
"version": 6,
"params": {
"modelName": "Basic (and reversed card)"
}
}
```
</details>
<details>
<summary><i>Sample result</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"Card 1": {
"Front": "{{Front}}",
"Back": "{{FrontSide}}\n\n<hr id=answer>\n\n{{Back}}"
},
"Card 2": {
"Front": "{{Back}}",
"Back": "{{FrontSide}}\n\n<hr id=answer>\n\n{{Front}}"
}
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `modelStyling`
2021-06-09 03:42:38 +00:00
* Gets the CSS styling for the provided model by name.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "modelStyling",
"version": 6,
"params": {
"modelName": "Basic (and reversed card)"
}
}
```
</details>
<details>
<summary><i>Sample result</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": {
"css": ".card {\n font-family: arial;\n font-size: 20px;\n text-align: center;\n color: black;\n background-color: white;\n}\n"
},
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `updateModelTemplates`
2021-06-09 03:42:38 +00:00
* Modify the templates of an existing model by name. Only specifies cards and specified sides will be modified.
2021-06-09 03:42:38 +00:00
If an existing card or side is not included in the request, it will be left unchanged.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "updateModelTemplates",
"version": 6,
"params": {
"model": {
"name": "Custom",
"templates": {
"Card 1": {
"Front": "{{Question}}?",
"Back": "{{Answer}}!"
}
}
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `updateModelStyling`
2021-06-09 03:42:38 +00:00
* Modify the CSS styling of an existing model by name.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "updateModelStyling",
"version": 6,
"params": {
"model": {
"name": "Custom",
"css": "p { color: blue; }"
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `findAndReplaceInModels`
2021-06-09 03:42:38 +00:00
* Find and replace string in existing model by model name. Customise to replace in front, back or css by setting to true/false.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "findAndReplaceInModels",
"version": 6,
"params": {
"model": {
"modelName": "",
"findText": "text_to_replace",
"replaceText": "replace_with_text",
"front": true,
"back": true,
"css": true
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 1,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `modelTemplateRename`
* Renames a template in an existing model.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelTemplateRename",
"version": 6,
"params": {
"modelName": "Basic",
"oldTemplateName": "Card 1",
"newTemplateName": "Card 1 renamed"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelTemplateReposition`
* Repositions a template in an existing model.
The value of `index` starts at 0. For example, an index of `0` puts the template in the first position, and an index of `2` puts the template in the third position.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelTemplateRemove",
"version": 6,
"params": {
"modelName": "Basic",
"templateName": "Card 1",
"index": 1
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelTemplateAdd`
* Adds a template to an existing model by name. If you want to update an existing template, use `updateModelTemplates`.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelTemplateAdd",
"version": 6,
"params": {
"modelName": "Basic",
"template": {
"Name": "Card 3",
"Front": "Front html {{Field1}}",
"Back": "Back html {{Field2}}"
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelTemplateRemove`
* Removes a template from an existing model.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelTemplateRemove",
"version": 6,
"params": {
"modelName": "Basic",
"templateName": "Card 1"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldRename`
* Rename the field name of a given model.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldRename",
"version": 6,
"params": {
"modelName": "Basic",
"oldFieldName": "Front",
2023-04-14 02:33:18 +00:00
"newFieldName": "FrontRenamed"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldReposition`
* Reposition the field within the field list of a given model.
2022-08-17 18:50:22 +00:00
The value of `index` starts at 0. For example, an index of `0` puts the field in the first position, and an index of `2` puts the field in the third position.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldReposition",
"version": 6,
"params": {
"modelName": "Basic",
2022-08-17 18:50:22 +00:00
"fieldName": "Back",
"index": 0
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldAdd`
* Creates a new field within a given model.
2022-08-17 18:50:22 +00:00
Optionally, the `index` value can be provided, which works exactly the same as the index in `modelFieldReposition`. By default, the field is added to the end of the field list.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldAdd",
"version": 6,
"params": {
"modelName": "Basic",
2022-08-17 18:50:22 +00:00
"fieldName": "NewField",
"index": 0
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldRemove`
* Deletes a field within a given model.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldRemove",
"version": 6,
"params": {
"modelName": "Basic",
"fieldName": "Front"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldSetFont`
* Sets the font for a field within a given model.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldSetFont",
"version": 6,
"params": {
"modelName": "Basic",
"fieldName": "Front",
"font": "Courier"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldSetFontSize`
* Sets the font size for a field within a given model.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldSetFont",
"version": 6,
"params": {
"modelName": "Basic",
"fieldName": "Front",
"fontSize": 10
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
</details>
#### `modelFieldSetDescription`
* Sets the description (the text seen in the gui editor when a field is empty) for a field within a given model.
Older versions of Anki (2.1.49 and below) do not have field descriptions. In that case, this will return with `false`.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "modelFieldSetDescription",
"version": 6,
"params": {
"modelName": "Basic",
"fieldName": "Front",
"description": "example field description"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": true,
"error": null
}
```
</details>
---
### Note Actions
2021-06-09 03:42:38 +00:00
#### `addNote`
2021-06-09 03:42:38 +00:00
* Creates a note using the given deck and model, with the provided field values and tags. Returns the identifier of
2021-06-09 03:42:38 +00:00
the created note created on success, and `null` on failure.
2021-12-16 16:51:35 +00:00
Anki-Connect can download audio, video, and picture files and embed them in newly created notes. The corresponding `audio`, `video`, and `picture` note members are
2021-06-09 03:42:38 +00:00
optional and can be omitted. If you choose to include any of them, they should contain a single object or an array of objects
with the mandatory `filename` field and one of `data`, `path` or `url`. Refer to the documentation of `storeMediaFile` for an explanation of these fields.
The `skipHash` field can be optionally provided to skip the inclusion of files with an MD5 hash that matches the provided value.
This is useful for avoiding the saving of error pages and stub files.
The `fields` member is a list of fields that should play audio or video, or show a picture when the card is displayed in
Anki. The `allowDuplicate` member inside `options` group can be set to true to enable adding duplicate cards.
Normally duplicate cards can not be added and trigger exception.
The `duplicateScope` member inside `options` can be used to specify the scope for which duplicates are checked.
A value of `"deck"` will only check for duplicates in the target deck; any other value will check the entire collection.
The `duplicateScopeOptions` object can be used to specify some additional settings:
* `duplicateScopeOptions.deckName` will specify which deck to use for checking duplicates in. If undefined or `null`, the target deck will be used.
* `duplicateScopeOptions.checkChildren` will change whether or not duplicate cards are checked in child decks. The default value is `false`.
* `duplicateScopeOptions.checkAllModels` specifies whether duplicate checks are performed across all note types. The default value is `false`.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "addNote",
"version": 6,
"params": {
"note": {
"deckName": "Default",
"modelName": "Basic",
"fields": {
"Front": "front content",
"Back": "back content"
},
"options": {
"allowDuplicate": false,
"duplicateScope": "deck",
"duplicateScopeOptions": {
"deckName": "Default",
"checkChildren": false,
"checkAllModels": false
2021-06-09 03:42:38 +00:00
}
},
"tags": [
"yomichan"
],
"audio": [{
"url": "https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kanji=猫&kana=ねこ",
"filename": "yomichan_ねこ_猫.mp3",
"skipHash": "7e2c2f954ef6051373ba916f000168dc",
"fields": [
"Front"
]
}],
"video": [{
"url": "https://cdn.videvo.net/videvo_files/video/free/2015-06/small_watermarked/Contador_Glam_preview.mp4",
"filename": "countdown.mp4",
"skipHash": "4117e8aab0d37534d9c8eac362388bbe",
"fields": [
"Back"
]
}],
"picture": [{
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/A_black_cat_named_Tilly.jpg/220px-A_black_cat_named_Tilly.jpg",
"filename": "black_cat.jpg",
"skipHash": "8d6e4646dfae812bf39651b59d7429ce",
"fields": [
"Back"
]
}]
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 1496198395707,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `addNotes`
2021-06-09 03:42:38 +00:00
* Creates multiple notes using the given deck and model, with the provided field values and tags. Returns an array of
2021-06-09 03:42:38 +00:00
identifiers of the created notes (notes that could not be created will have a `null` identifier). Please see the
documentation for `addNote` for an explanation of objects in the `notes` array.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "addNotes",
"version": 6,
"params": {
"notes": [
{
"deckName": "Default",
"modelName": "Basic",
"fields": {
"Front": "front content",
"Back": "back content"
},
"tags": [
"yomichan"
],
"audio": [{
"url": "https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kanji=猫&kana=ねこ",
"filename": "yomichan_ねこ_猫.mp3",
"skipHash": "7e2c2f954ef6051373ba916f000168dc",
"fields": [
"Front"
]
}],
"video": [{
"url": "https://cdn.videvo.net/videvo_files/video/free/2015-06/small_watermarked/Contador_Glam_preview.mp4",
"filename": "countdown.mp4",
"skipHash": "4117e8aab0d37534d9c8eac362388bbe",
"fields": [
"Back"
]
}],
"picture": [{
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/A_black_cat_named_Tilly.jpg/220px-A_black_cat_named_Tilly.jpg",
"filename": "black_cat.jpg",
"skipHash": "8d6e4646dfae812bf39651b59d7429ce",
"fields": [
"Back"
]
}]
}
]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [1496198395707, null],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `canAddNotes`
2021-06-09 03:42:38 +00:00
* Accepts an array of objects which define parameters for candidate notes (see `addNote`) and returns an array of
2021-06-09 03:42:38 +00:00
booleans indicating whether or not the parameters at the corresponding index could be used to create a new note.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "canAddNotes",
"version": 6,
"params": {
"notes": [
{
"deckName": "Default",
"modelName": "Basic",
"fields": {
"Front": "front content",
"Back": "back content"
},
"tags": [
"yomichan"
]
}
]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [true],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `updateNoteFields`
2021-06-09 03:42:38 +00:00
2023-03-31 06:54:32 +00:00
* Modify the fields of an existing note. You can also include audio, video, or picture files which will be added to the note with an
2021-06-09 03:42:38 +00:00
optional `audio`, `video`, or `picture` property. Please see the documentation for `addNote` for an explanation of objects in the `audio`, `video`, or `picture` array.
> **Warning**:
2022-08-22 06:06:50 +00:00
> You must not be viewing the note that you are updating on your Anki browser, otherwise
2022-08-22 06:05:19 +00:00
> the fields will not update. See [this issue](https://github.com/FooSoft/anki-connect/issues/82)
> for further details.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "updateNoteFields",
"version": 6,
"params": {
"note": {
"id": 1514547547030,
"fields": {
"Front": "new front content",
"Back": "new back content"
},
"audio": [{
"url": "https://assets.languagepod101.com/dictionary/japanese/audiomp3.php?kanji=猫&kana=ねこ",
"filename": "yomichan_ねこ_猫.mp3",
"skipHash": "7e2c2f954ef6051373ba916f000168dc",
"fields": [
"Front"
]
}]
}
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
2023-03-31 06:54:32 +00:00
#### `updateNote`
2023-03-31 06:54:32 +00:00
* Modify the fields and/or tags of an existing note.
In other words, combines `updateNoteFields` and `updateNoteTags`.
Please see their documentation for an explanation of all properties.
Either `fields` or `tags` property can be omitted without affecting the other.
Thus valid requests to `updateNoteFields` also work with `updateNote`.
The note must have the `fields` property in order to update the optional audio, video, or picture objects.
If neither `fields` nor `tags` are provided, the method will fail.
Fields are updated first and are not rolled back if updating tags fails.
Tags are not updated if updating fields fails.
> **Warning**
> You must not be viewing the note that you are updating on your Anki browser, otherwise
> the fields will not update. See [this issue](https://github.com/FooSoft/anki-connect/issues/82)
> for further details.
2023-03-31 06:54:32 +00:00
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "updateNote",
"version": 6,
"params": {
"note": {
"id": 1514547547030,
"fields": {
"Front": "new front content",
"Back": "new back content"
},
"tags": ["new", "tags"]
}
}
}
```
2023-03-31 06:54:32 +00:00
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
2023-03-31 06:54:32 +00:00
</details>
2023-03-31 06:54:32 +00:00
#### `updateNoteTags`
* Set a note's tags by note ID. Old tags will be removed.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "updateNoteTags",
"version": 6,
"params": {
"note": 1483959289817,
"tags": ["european-languages"]
}
}
```
2023-03-31 06:54:32 +00:00
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": null,
"error": null
}
```
2023-03-31 06:54:32 +00:00
</details>
2023-03-31 06:54:32 +00:00
#### `getNoteTags`
* Get a note's tags by note ID.
<details>
<summary><i>Sample request:</i></summary>
```json
{
"action": "getNoteTags",
"version": 6,
"params": {
2023-03-31 06:54:32 +00:00
"note": 1483959289817
}
}
```
2023-03-31 06:54:32 +00:00
</details>
<details>
<summary><i>Sample result:</i></summary>
```json
{
"result": ["european-languages"],
"error": null
}
```
2023-03-31 06:54:32 +00:00
</details>
#### `addTags`
2021-06-09 03:42:38 +00:00
* Adds tags to notes by note ID.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "addTags",
"version": 6,
"params": {
"notes": [1483959289817, 1483959291695],
"tags": "european-languages"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `removeTags`
2021-06-09 03:42:38 +00:00
* Remove tags from notes by note ID.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "removeTags",
"version": 6,
"params": {
"notes": [1483959289817, 1483959291695],
"tags": "european-languages"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
#### `getTags`
2021-06-09 03:42:38 +00:00
* Gets the complete list of tags for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getTags",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": ["european-languages", "idioms"],
"error": null
}
```
</details>
#### `clearUnusedTags`
2021-06-09 03:42:38 +00:00
* Clears all the unused tags in the notes for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "clearUnusedTags",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `replaceTags`
2021-06-09 03:42:38 +00:00
* Replace tags in notes by note ID.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "replaceTags",
"version": 6,
"params": {
"notes": [1483959289817, 1483959291695],
"tag_to_replace": "european-languages",
"replace_with_tag": "french-languages"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `replaceTagsInAllNotes`
2021-06-09 03:42:38 +00:00
* Replace tags in all the notes for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
2021-09-06 18:44:07 +00:00
"action": "replaceTagsInAllNotes",
2021-06-09 03:42:38 +00:00
"version": 6,
"params": {
"tag_to_replace": "european-languages",
"replace_with_tag": "french-languages"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `findNotes`
2021-06-09 03:42:38 +00:00
* Returns an array of note IDs for a given query. Query syntax is [documented here](https://docs.ankiweb.net/searching.html).
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "findNotes",
"version": 6,
"params": {
"query": "deck:current"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [1483959289817, 1483959291695],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `notesInfo`
2021-06-09 03:42:38 +00:00
* Returns a list of objects containing for each note ID the note fields, tags, note type and the cards belonging to
2021-06-09 03:42:38 +00:00
the note.
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "notesInfo",
"version": 6,
"params": {
"notes": [1502298033753]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [
{
"noteId":1502298033753,
"modelName": "Basic",
"tags":["tag","another_tag"],
"fields": {
"Front": {"value": "front content", "order": 0},
"Back": {"value": "back content", "order": 1}
}
}
],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `deleteNotes`
2021-06-09 03:42:38 +00:00
* Deletes notes with the given ids. If a note has several cards associated with it, all associated cards will be deleted.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "deleteNotes",
"version": 6,
"params": {
"notes": [1502298033753]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
#### `removeEmptyNotes`
2021-06-09 03:42:38 +00:00
* Removes all the empty notes for the current user.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "removeEmptyNotes",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
---
2021-06-09 03:42:38 +00:00
### Statistic Actions
2021-06-09 03:42:38 +00:00
#### `getNumCardsReviewedToday`
2021-06-09 03:42:38 +00:00
* Gets the count of cards that have been reviewed in the current day (with day start time as configured by user in anki)
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getNumCardsReviewedToday",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 0,
"error": null
}
```
</details>
#### `getNumCardsReviewedByDay`
2021-06-09 03:42:38 +00:00
* Gets the number of cards reviewed as a list of pairs of `(dateString, number)`
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getNumCardsReviewedByDay",
"version": 6
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [
["2021-02-28", 124],
["2021-02-27", 261]
],
"error": null
}
```
</details>
#### `getCollectionStatsHTML`
2021-06-09 03:42:38 +00:00
* Gets the collection statistics report
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getCollectionStatsHTML",
"version": 6,
"params": {
"wholeCollection": true
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"error": null,
"result": "<center> lots of HTML here </center>"
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `cardReviews`
2021-06-09 03:42:38 +00:00
* Requests all card reviews for a specified deck after a certain time.
2021-06-09 03:42:38 +00:00
`startID` is the latest unix time not included in the result.
Returns a list of 9-tuples `(reviewTime, cardID, usn, buttonPressed, newInterval, previousInterval, newFactor, reviewDuration, reviewType)`
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "cardReviews",
"version": 6,
"params": {
"deck": "default",
"startID": 1594194095740
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": [
[1594194095746, 1485369733217, -1, 3, 4, -60, 2500, 6157, 0],
[1594201393292, 1485369902086, -1, 1, -60, -60, 0, 4846, 0]
],
"error": null
}
```
</details>
2021-06-09 03:42:38 +00:00
#### `getReviewsOfCards`
2022-09-05 06:29:03 +00:00
* Requests all card reviews for each card ID.
Returns a dictionary mapping each card ID to a list of dictionaries of the format:
```
{
"id": reviewTime,
"usn": usn,
"ease": buttonPressed,
"ivl": newInterval,
"lastIvl": previousInterval,
"factor": newFactor,
"time": reviewDuration,
"type": reviewType,
}
```
The reason why these key values are used instead of the more descriptive counterparts
is because these are the exact key values used in Anki's database.
2022-09-05 06:29:03 +00:00
<details>
<summary><i>Sample request:</i></summary>
2022-09-05 06:29:03 +00:00
```json
{
"action": "getReviewsOfCards",
2022-09-05 06:29:03 +00:00
"version": 6,
"params": {
"cards": [
"1653613948202"
]
2022-09-05 06:29:03 +00:00
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2022-09-05 06:29:03 +00:00
```json
{
"result": {
"1653613948202": [
{
"id": 1653772912146,
"usn": 1750,
"ease": 1,
"ivl": -20,
"lastIvl": -20,
"factor": 0,
"time": 38192,
"type": 0
},
{
"id": 1653772965429,
"usn": 1750,
"ease": 3,
"ivl": -45,
"lastIvl": -20,
"factor": 0,
"time": 15337,
"type": 0
}
]
},
2022-09-05 06:29:03 +00:00
"error": null
}
```
</details>
#### `getLatestReviewID`
2022-09-05 06:29:03 +00:00
* Returns the unix time of the latest review for the given deck. 0 if no review has ever been made for the deck.
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "getLatestReviewID",
"version": 6,
"params": {
"deck": "default"
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": 1594194095746,
"error": null
}
```
</details>
#### `insertReviews`
2021-06-09 03:42:38 +00:00
* Inserts the given reviews into the database. Required format: list of 9-tuples `(reviewTime, cardID, usn, buttonPressed, newInterval, previousInterval, newFactor, reviewDuration, reviewType)`
2021-06-09 03:42:38 +00:00
<details>
<summary><i>Sample request:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"action": "insertReviews",
"version": 6,
"params": {
"reviews": [
[1594194095746, 1485369733217, -1, 3, 4, -60, 2500, 6157, 0],
[1594201393292, 1485369902086, -1, 1, -60, -60, 0, 4846, 0]
]
}
}
```
</details>
<details>
<summary><i>Sample result:</i></summary>
2021-06-09 03:42:38 +00:00
```json
{
"result": null,
"error": null
}
```
</details>