API libraries

Python API library

The Aipixy Python library provides convenient access to the AIpixy's REST API from any Python 3.7+ application.

pip install aipixy
from aipixy import Aipixy

# Create an Aipixy instance
ap = Aipixy(api_key='YOUR_API_KEY')

# Retrieve account information example
account_information = ap.account()

Last updated