Skip to content

rogierpennick/SyndicatePlusApi-PHP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

##SyndicatePlusApi-PHP

####Summary The SyndicatePlus API is a platform that allows you to connect to the SyndicatePlus database for consumer product information. The main API is the SyndicatePlus Products API which allows you to search and get information on products, brands, categories and manufacturers.

####Api Access For API access please visit the SyndicatePlus Developer Portal and sign up for an API key.

##Usage Usage of the Products API is best illustrated by taking a look at the examples. To get started quickly, however, all you need to make a successful call to the SyndicatePlus API is the following code:

require "SyndicatePlusApi-PHP/src/productsapi.class.php";

$api = new SyndicatePlus\Api\ProductsApi('your app key', 'your app secret');

// Search products for query "Heineken"
$products = $api->search("Heineken");

// Get a product by its EAN code
$product = $api->getProductByEan(8722700462989)

About

The PHP client SDK for the SyndicatePlus consumer products information API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%