Merch In Stock
You will find the latest information...
<?php
// Replace this with your API key
$apiKey = '';
// create ApiClient
$pf = new PrintfulApiClient($apiKey);
// create Products Api object
$productsApi = new PrintfulProducts($pf);
// set some paging info
$offset = 0;
$limit = 20;
/** @var SyncProductsResponse $list */
$list = $productsApi->getProducts($offset, $limit);