Python Amazon Creators API

A Python wrapper for the Amazon Creators API, which lets you search Amazon products, read their details, offers and variations, and list the feeds and reports of your account.

Install it with:

pip install python-amazon-paapi --upgrade

Then create a client with the credentials of the Amazon Associates Creators API portal:

from amazon_creatorsapi import AmazonCreatorsApi, Country

api = AmazonCreatorsApi(
    credential_id="your_credential_id",
    credential_secret="your_credential_secret",
    version="2.2",
    tag="your-affiliate-tag",
    country=Country.US,
)

items = api.get_items(["B01N5IB20Q"])
print(items[0].item_info.title.display_value)

The usage guide covers every option of the client, the asynchronous version and the errors it raises.

Introduction

API Reference

Migration guides

Follow the version 7 guide to upgrade code written for amazon_creatorsapi on version 6. If you are still using the removed amazon_paapi module, start with the Creators API guide instead.

Changelog

See the changelog for a detailed history of changes.

Support

Ask for help in the Telegram group or open an issue on GitHub.