Python SDK

A typed Python client for the Minikai API.

The Python SDK is published to PyPI as minikai. It gives you a typed client with editor autocompletion, request and response models, and authentication handled for you.

Install

$pip install minikai

Create a client

1import os
2from minikai import Minikai
3
4client = Minikai(token=os.environ["MINIKAI_API_KEY"])

Make a request

Every endpoint in the API Reference maps to a typed method on the client, grouped by resource (records, Minis, labels and users). Each reference page shows a copy-ready Python snippet for that endpoint, so the quickest way to write a call is to open the endpoint and copy its example.