The last official documentation reference for version 01.11.1 of AiScript from December 5, 2020. This link is using Google Translate because there was no english documentation available at this point.
Writing down some hyperlinks to english #AiScript docs, for later reference:
- [Getting started](https://github.com/syuilo/aiscript/blob/master/translations/en/docs/get-started.md)
- [Syntax](https://github.com/syuilo/aiscript/blob/master/translations/en/docs/syntax.md)
- [std](https://github.com/syuilo/aiscript/blob/master/translations/en/docs/std.md)
- [Misskey extensions](https://github.com/misskey-dev/misskey/blob/master/packages/client/src/scripts/aiscript/api.ts)
RE: Okay, there are [Misskey extensions](https://github.com/misskey-dev/misskey/blob/ea9aeef9d8790db51c59a99927cd47ea9423be88/packages/client/src/scripts/aiscript/api.ts#L5)…
So to query the API and display the result, you would write something like this:
```
#answer = Mk:api("admin/emoji/list" {query: "woozy"})
#first_result = answer[1]
print(Json:stringify(first_result))
Mk:dialog(first_result.name first_result.url)
``` (📎1)
RE: ...