Skip to main content
All CollectionsAI features
API, Libraries, and CLI
API, Libraries, and CLI
Updated over a week ago

API

Find the documentation for the API in the OpenAPI spec documentation or in one of the client libraries.

Python library

Dart has an open source Python library that can also be used to understand the API, for Python applications, and as a CLI. Use it to automate some common workflows and build other custom integrations or processes.

To get started with the Python library, use the terminal to install it with

pip install dart-tools

TypeScript and JavaScript library

Dart has an open source TypeScript and JavaScript library that can also be used to understand the API and for TypeScript or JavaScript applications. Use it to automate some common workflows and build other custom integrations or processes.

To get started with the TypeScript and JavaScript library, use the terminal to install it with

npm install dart-tools-ts

CLI

To get started with the CLI, use the terminal to install and set up the library with

pip install dart-tools
dart login

As an example of what you can do, create a task with

dart create "[new task title]"

Did this answer your question?