Skip to main content

Python SDK for Selling Partner API

PyPI version

Video Thumbnail

Click on the image to watch the video.

The Selling Partner API SDK for Python enables you to easily connect your Python application to Amazon's REST-based Selling Partner API.

Getting started

Credentials

Before you can use the SDK, you need to be registered as a Selling Partner API developer. If you haven't done that yet, please follow the instructions in the SP-API Registration Overview. You also need to register your application to get valid credentials to call SP-API. If you haven't done that yet, please follow the instructions in Registering your Application. If you are already registered successfully, you can find instructions on how to view your credentials in Viewing your Application Information and Credentials.

Minimum requirements

To run the SDK you need Python version 3.9 or higher.

Install the SDK

  1. Find the latest version number here.
  2. Add the dependency to your project
Using pip:
pip install amzn-sp-api
Add to your project requirements.txt

Add the following line to the requirements.txt file if needed:

amzn-sp-api >= "1.0.0"

Use the SDK

In order to call one of the APIs included in the Selling Partner API, you need to:

  1. Configure credentials (Note: Use your individual credentials for clientId, clientSecret and refreshToken). You can also configure the region and the authorization scope at this level.
  2. Initialize the SPAPI Client using the configuration created in the previous step
  3. Create an instance for a specific API using the API client created
  4. Call an API operation

For example, refer to the following sample code for connecting to Sellers API.

from spapi import SellersApi, SPAPIConfig, SPAPIClient, ApiException
from spapi.models.sellers_v1 import GetMarketplaceParticipationsResponse

if __name__ == "__main__":

    # Credentials configuration
    config = SPAPIConfig(
        client_id="",
        client_secret="",
        refresh_token="",
        region="NA",
        scope = None
    )

    # Create the API Client with configuration
    client = SPAPIClient(config)
    sellers_api = SellersApi(client.api_client)

    response = None
    try:
        response = sellers_api.get_marketplace_participations()
    except ApiException as e:
        print(f"API Exception occurred: {str(e)}")

    if response is not None:
        print("Sellers API Response:")
        get_marketplace_participations_response = GetMarketplaceParticipationsResponse(response.payload)
        for marketplaceParticipation in get_marketplace_participations_response.payload:
            print(marketplaceParticipation.marketplace.id)

Note: Code can be found under python/sample-app folder

Giving Feedback

We need your help in making this SDK great. Please participate in the community and contribute to this effort by submitting issues, participating in discussion forums and submitting pull requests through the following channels:

Submit issues - this is the preferred channel to interact with our team Articulate your feature request or upvote existing ones on our Issues page

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

amzn_sp_api-1.10.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

amzn_sp_api-1.10.0-py3-none-any.whl (3.5 MB view details)

Uploaded Python 3

File details

Details for the file amzn_sp_api-1.10.0.tar.gz.

File metadata

  • Download URL: amzn_sp_api-1.10.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for amzn_sp_api-1.10.0.tar.gz
Algorithm Hash digest
SHA256 201d0da7b25df7ba28749de5669d5799fbf939633684ceaaf04e9a71dd1e1328
MD5 4d9ecf62715c2f6ac8cb39d890685346
BLAKE2b-256 92ac50e097e9cb457af5aa64384c440fd90d955cf9c4687ff8647368f0d6d00a

See more details on using hashes here.

File details

Details for the file amzn_sp_api-1.10.0-py3-none-any.whl.

File metadata

  • Download URL: amzn_sp_api-1.10.0-py3-none-any.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for amzn_sp_api-1.10.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cf8b1d623683a718046bff078484f3e6bf0891d198efacefa354e3f5bf86f257
MD5 a5b7a409552b44c43a57128b47dec932
BLAKE2b-256 4b83579c048c211c4abe521eea127c3a6598ef4cf45b0b6809ff1772993a0190

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page