Skip to main content
DocsAPI ReferenceAI Agents & Resources

Python

Official Trackee SDK for Python, with sync and async clients.

View Markdown

Requires Python 3.10 or later. Supports synchronous and asynchronous clients.

Install

pip install trackee

Configure

Create an access key and set it in your environment. The SDK reads TRACKEE_API_KEY.

export TRACKEE_API_KEY="your_access_key"

Quick start

from trackee import Trackee

with Trackee() as client:
    brands = client.brands.list()
    print(brands)

Source and API usage · PyPI

On this page