Python Kaiten API client for convenient work with it
As this is an open-source project that is community maintained, do not be surprised if some bugs or features are not implemented quickly enough
pip install kaiten
Just import client, authorize with a server and token. After that you can get essences you need from the API.
import kaiten
client = kaiten.KaitenClient(server =, token = )
card = client.get_card(card_id)
space = client.get_space(space_id)
board = client.get_board(board_id)
current_user = client.get_current_user()
property = client.get_property(property_id)
Use option: ids_only = True, if you need only id's to be represented in the list (list of Resource will be the default behavior)
For example:
spaces = client.list_of().spaces(ids_only=True) # will return list of space ids
spaces = client.list_of().spaces()
users = client.list_of().users()
tags = client.list_of().tags()
properties = client.list_of().properties()