PHPackages                             sellerworks/amazon-mws - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. sellerworks/amazon-mws

AbandonedArchivedLibrary[API Development](/categories/api)

sellerworks/amazon-mws
======================

A PHP client for the Amazon Marketplace Web Services (MWS) API

v0.8.2(9y ago)108636[1 PRs](https://github.com/SellerWorks/amazon-mws/pulls)Apache-2.0PHPPHP &gt;=5.6.0

Since Aug 26Pushed 7y ago2 watchersCompare

[ Source](https://github.com/SellerWorks/amazon-mws)[ Packagist](https://packagist.org/packages/sellerworks/amazon-mws)[ RSS](/packages/sellerworks-amazon-mws/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (6)Versions (4)Used By (0)

[![GitHub release](https://camo.githubusercontent.com/7e52644cc212caea864d87ebe5639f42b4f8a6fbcefbbbb19c6ae2406421244d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f53656c6c6572576f726b732f616d617a6f6e2d6d77732e7376673f6d61784167653d32353932303030)](https://camo.githubusercontent.com/7e52644cc212caea864d87ebe5639f42b4f8a6fbcefbbbb19c6ae2406421244d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f53656c6c6572576f726b732f616d617a6f6e2d6d77732e7376673f6d61784167653d32353932303030)[![Travis](https://camo.githubusercontent.com/de0519cc4783f30f8fa3fbf475a85ffb40b62361b897a94128a2e67ba3a363a1/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f53656c6c6572576f726b732f616d617a6f6e2d6d77732e7376673f6d61784167653d32353932303030)](https://camo.githubusercontent.com/de0519cc4783f30f8fa3fbf475a85ffb40b62361b897a94128a2e67ba3a363a1/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f53656c6c6572576f726b732f616d617a6f6e2d6d77732e7376673f6d61784167653d32353932303030)[![Packagist](https://camo.githubusercontent.com/d4ed74cb484b0d8bab197a1e066427a4101e10f1e6652f8a579a94c200a6b92f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f53656c6c6572576f726b732f616d617a6f6e2d6d77732e7376673f6d61784167653d32353932303030)](https://camo.githubusercontent.com/d4ed74cb484b0d8bab197a1e066427a4101e10f1e6652f8a579a94c200a6b92f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f53656c6c6572576f726b732f616d617a6f6e2d6d77732e7376673f6d61784167653d32353932303030)

Amazon MWS Toolkit
==================

[](#amazon-mws-toolkit)

The **Amazon MWS Toolkit** makes it easy for developers to access Amazon's [Marketplace Webservices](https://developer.amazonservices.com/index.html) in their PHP code, and build robust applications using services like *Orders*, *Fulfillment Inbound Shipment* and *Reports*. You can get started in minutes by installing the toolkit through Composer or by downloading the latest release.

Currently this project is in BETA and not recommended for production use, but you can try it anyway. (I know you will!)

Resources
---------

[](#resources)

- Toolkit Docs - For details about using this toolkit
- [API Docs](https://developer.amazonservices.com/index.html) - For details about operations, parameters, and responses

Installation
------------

[](#installation)

Through Composer, obviously:

```
composer require sellerworks/amazon-mws

```

You can also use Amazon MWS Toolkit without using Composer by registering an autoloader function:

```
spl_autoload_register(function($class) {
    $prefix = 'SellerWorks\\Amazon\\';

    if (!substr($class, 0, 18) === $prefix) {
        return;
    }

    $class = substr($class, strlen($prefix));
    $location = __DIR__ . 'path/to/sellerworks-amazon/src/' . str_replace('\\', '/', $class) . '.php';

    if (is_file($location)) {
        require_once($location);
    }
});

```

Now you're ready to get started.

Example
-------

[](#example)

Get the service status.

```
