cre8-it/creatorsapi-php-sdk

CreatorsAPI 1.1.3 PHP SDK

Installs: 2

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/cre8-it/creatorsapi-php-sdk

dev-main 2026-02-13 10:04 UTC

This package is not auto-updated.

Last update: 2026-02-14 08:36:22 UTC


README

Prerequisites

PHP Version Support

  • Supported: To run the SDK you need PHP version 8.1 or higher.

Setup Instructions

1. Install and Configure PHP

For PHP installation, you can download it from the official website: https://www.php.net/downloads

# Check PHP version
php --version

2. Install SDK (Composer)

composer require cre8-it/creatorsapi-php-sdk

If you're running from a cloned repo, run composer install in the repo root instead.

3. Run Sample Code

Navigate to the examples directory to run the samples.

cd {path_to_project}/vendor/cre8-it/creatorsapi-php-sdk/examples

If you're running from a cloned repo, use cd {path_to_project}/creatorsapi-php-sdk/examples.

Before running the samples, you'll need to configure your API credentials in the sample files by replacing the following placeholders:

  • <YOUR CREDENTIAL ID> - Your API credential ID
  • <YOUR CREDENTIAL SECRET> - Your API credential secret
  • <YOUR CREDENTIAL VERSION> - Your credential version (e.g., "2.1" for NA, "2.2" for EU, "2.3" for FE region)
  • <YOUR MARKETPLACE> - Your marketplace (e.g., "www.amazon.com" for US marketplace)
  • <YOUR PARTNER TAG> - Add valid Partner Tag for the requested marketplace in applicable sample code snippet files

Run the following commands to run the sample files:

Get detailed product information:

php SampleGetItems.php

Search for products:

php SampleSearchItems.php

Other Samples

Check the examples directory for additional sample files with various API operations.