This documentation is intended for developers that need to integrate with MegaMWS to obtain Amazon Product data including meta data, offer listings, buybox prices, and salesranks.

To use this API, an API Key and Secret need to be used. These credentials can be provided by the account holder, or on the API Credentials page.

Inputs

There are a couple of variables and concepts that need to be understood to use this system.

  1. ASIN
  2. API Key
  3. Secret
  4. Signature
  5. JSON

ASIN

Amazon Standard Identification Number (ASIN) is how data is queried to Amazon. Fortunately because Amazon started as a book company, ISBN10 values work equally well as ASINs and translating between ISBN13 and ISBN10 is trivial. For the purposes of this system, you can pass an ASIN, ISBN10 or ISBN13 in the ASIN parameter.

API Key

Your API key can be obtained from the API Credentials page. This identifies you when requesting data from MegaMWS.

Secret

The secret string is used in combination with the ASIN to generate the signature. This string is not passed in the URL to MegaMWS.

JSON

All data returned by MegaMWS is in JSON format. Virtually all systems can use this data.

Request

To format a request, we recommend using the scratchpad to see how it's all put together. Here's a code snippet that shows the essentials, written in PHP:

$api_url = 'https://megamws.com/api/v1/';
$signature = md5($asin . $secret);
$url = $api_url . '?asin=' . $asin . '&apikey=' . $api_key . '&signature=' . $signature;
$result = file_get_contents($url);
$data = json_decode($result,true);

Response

You will receive an array that has these parent elements:

  • errors
  • offer_summary
  • offers
  • salesrank
  • product
  • categories
  • runtime_seconds

Example result, displayed using Kint-php. Click on '$data' to expand the array.

$out array (8)
errors => array (0)
$out['errors']
offer_summary => array (4)
$out['offer_summary']
total_offer_count => integer 17
$out['offer_summary']['total_offer_count']
counts => array (2)
$out['offer_summary']['counts']
used => array (2)
$out['offer_summary']['counts']['used']
merchant => integer 6
$out['offer_summary']['counts']['used']['merchant']
amazon => integer 5
$out['offer_summary']['counts']['used']['amazon']
new => array (2)
$out['offer_summary']['counts']['new']
amazon => integer 1
$out['offer_summary']['counts']['new']['amazon']
merchant => integer 5
$out['offer_summary']['counts']['new']['merchant']
lowest_prices => array (2)
$out['offer_summary']['lowest_prices']
used => array (2)
$out['offer_summary']['lowest_prices']['used']
  • Table (2)
  • Contents (2)
  • landed_pricelisting_priceshipping
    merchantarray (2)array (2)array (2)
    amazonarray (2)array (2)array (2)
  • merchant => array (3)
    $out['offer_summary']['lowest_prices']['used']['merchant']
    • Table (3)
    • Contents (3)
    • currency_codeamount
      landed_priceUSD34.00
      listing_priceUSD30.01
      shippingUSD3.99
    • landed_price => array (2)
      $out['offer_summary']['lowest_prices']['used']['merchant']['landed_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['used']['merchant']['landed_price']['currency_code']
      amount => string (5) "34.00"
      $out['offer_summary']['lowest_prices']['used']['merchant']['landed_price']['amount']
      listing_price => array (2)
      $out['offer_summary']['lowest_prices']['used']['merchant']['listing_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['used']['merchant']['listing_price']['currency_code']
      amount => string (5) "30.01"
      $out['offer_summary']['lowest_prices']['used']['merchant']['listing_price']['amount']
      shipping => array (2)
      $out['offer_summary']['lowest_prices']['used']['merchant']['shipping']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['used']['merchant']['shipping']['currency_code']
      amount => string (4) "3.99"
      $out['offer_summary']['lowest_prices']['used']['merchant']['shipping']['amount']
    amazon => array (3)
    $out['offer_summary']['lowest_prices']['used']['amazon']
    • Table (3)
    • Contents (3)
    • currency_codeamount
      landed_priceUSD59.99
      listing_priceUSD59.99
      shippingUSD0.00
    • landed_price => array (2)
      $out['offer_summary']['lowest_prices']['used']['amazon']['landed_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['used']['amazon']['landed_price']['currency_code']
      amount => string (5) "59.99"
      $out['offer_summary']['lowest_prices']['used']['amazon']['landed_price']['amount']
      listing_price => array (2)
      $out['offer_summary']['lowest_prices']['used']['amazon']['listing_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['used']['amazon']['listing_price']['currency_code']
      amount => string (5) "59.99"
      $out['offer_summary']['lowest_prices']['used']['amazon']['listing_price']['amount']
      shipping => array (2)
      $out['offer_summary']['lowest_prices']['used']['amazon']['shipping']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['used']['amazon']['shipping']['currency_code']
      amount => string (4) "0.00"
      $out['offer_summary']['lowest_prices']['used']['amazon']['shipping']['amount']
new => array (2)
$out['offer_summary']['lowest_prices']['new']
  • Table (2)
  • Contents (2)
  • landed_pricelisting_priceshipping
    amazonarray (2)array (2)array (2)
    merchantarray (2)array (2)array (2)
  • amazon => array (3)
    $out['offer_summary']['lowest_prices']['new']['amazon']
    • Table (3)
    • Contents (3)
    • currency_codeamount
      landed_priceUSD34.89
      listing_priceUSD34.89
      shippingUSD0.00
    • landed_price => array (2)
      $out['offer_summary']['lowest_prices']['new']['amazon']['landed_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['new']['amazon']['landed_price']['currency_code']
      amount => string (5) "34.89"
      $out['offer_summary']['lowest_prices']['new']['amazon']['landed_price']['amount']
      listing_price => array (2)
      $out['offer_summary']['lowest_prices']['new']['amazon']['listing_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['new']['amazon']['listing_price']['currency_code']
      amount => string (5) "34.89"
      $out['offer_summary']['lowest_prices']['new']['amazon']['listing_price']['amount']
      shipping => array (2)
      $out['offer_summary']['lowest_prices']['new']['amazon']['shipping']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['new']['amazon']['shipping']['currency_code']
      amount => string (4) "0.00"
      $out['offer_summary']['lowest_prices']['new']['amazon']['shipping']['amount']
    merchant => array (3)
    $out['offer_summary']['lowest_prices']['new']['merchant']
    • Table (3)
    • Contents (3)
    • currency_codeamount
      landed_priceUSD34.88
      listing_priceUSD34.88
      shippingUSD0.00
    • landed_price => array (2)
      $out['offer_summary']['lowest_prices']['new']['merchant']['landed_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['new']['merchant']['landed_price']['currency_code']
      amount => string (5) "34.88"
      $out['offer_summary']['lowest_prices']['new']['merchant']['landed_price']['amount']
      listing_price => array (2)
      $out['offer_summary']['lowest_prices']['new']['merchant']['listing_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['new']['merchant']['listing_price']['currency_code']
      amount => string (5) "34.88"
      $out['offer_summary']['lowest_prices']['new']['merchant']['listing_price']['amount']
      shipping => array (2)
      $out['offer_summary']['lowest_prices']['new']['merchant']['shipping']
      currency_code => string (3) "USD"
      $out['offer_summary']['lowest_prices']['new']['merchant']['shipping']['currency_code']
      amount => string (4) "0.00"
      $out['offer_summary']['lowest_prices']['new']['merchant']['shipping']['amount']
buy_box_prices => array (2)
$out['offer_summary']['buy_box_prices']
  • Table (2)
  • Contents (2)
  • landed_pricelisting_priceshipping
    newarray (2)array (2)array (2)
    usedarray (2)array (2)array (2)
  • new => array (3)
    $out['offer_summary']['buy_box_prices']['new']
    • Table (3)
    • Contents (3)
    • currency_codeamount
      landed_priceUSD34.89
      listing_priceUSD34.89
      shippingUSD0.00
    • landed_price => array (2)
      $out['offer_summary']['buy_box_prices']['new']['landed_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['buy_box_prices']['new']['landed_price']['currency_code']
      amount => string (5) "34.89"
      $out['offer_summary']['buy_box_prices']['new']['landed_price']['amount']
      listing_price => array (2)
      $out['offer_summary']['buy_box_prices']['new']['listing_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['buy_box_prices']['new']['listing_price']['currency_code']
      amount => string (5) "34.89"
      $out['offer_summary']['buy_box_prices']['new']['listing_price']['amount']
      shipping => array (2)
      $out['offer_summary']['buy_box_prices']['new']['shipping']
      currency_code => string (3) "USD"
      $out['offer_summary']['buy_box_prices']['new']['shipping']['currency_code']
      amount => string (4) "0.00"
      $out['offer_summary']['buy_box_prices']['new']['shipping']['amount']
    used => array (3)
    $out['offer_summary']['buy_box_prices']['used']
    • Table (3)
    • Contents (3)
    • currency_codeamount
      landed_priceUSD65.98
      listing_priceUSD59.99
      shippingUSD5.99
    • landed_price => array (2)
      $out['offer_summary']['buy_box_prices']['used']['landed_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['buy_box_prices']['used']['landed_price']['currency_code']
      amount => string (5) "65.98"
      $out['offer_summary']['buy_box_prices']['used']['landed_price']['amount']
      listing_price => array (2)
      $out['offer_summary']['buy_box_prices']['used']['listing_price']
      currency_code => string (3) "USD"
      $out['offer_summary']['buy_box_prices']['used']['listing_price']['currency_code']
      amount => string (5) "59.99"
      $out['offer_summary']['buy_box_prices']['used']['listing_price']['amount']
      shipping => array (2)
      $out['offer_summary']['buy_box_prices']['used']['shipping']
      currency_code => string (3) "USD"
      $out['offer_summary']['buy_box_prices']['used']['shipping']['currency_code']
      amount => string (4) "5.99"
      $out['offer_summary']['buy_box_prices']['used']['shipping']['amount']
offers => array (2)
$out['offers']
used => array (11)
$out['offers']['used']
0 => array (8)
$out['offers']['used'][0]
sub_condition => string (9) "very_good"
$out['offers']['used'][0]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][0]['seller_feedback_rating']
seller_positive_feedback_rating => double 97
$out['offers']['used'][0]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 388
$out['offers']['used'][0]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][0]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['used'][0]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['used'][0]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][0]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][0]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD30.01
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['used'][0]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][0]['price']['listing_price']['currency_code']
    amount => string (5) "30.01"
    $out['offers']['used'][0]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][0]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][0]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['used'][0]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['used'][0]['ships_from']
state => string (2) "CA"
$out['offers']['used'][0]['ships_from']['state']
country => string (2) "US"
$out['offers']['used'][0]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['used'][0]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][0]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][0]['is_featured_merchant']
1 => array (8)
$out['offers']['used'][1]
sub_condition => string (8) "like_new"
$out['offers']['used'][1]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][1]['seller_feedback_rating']
seller_positive_feedback_rating => double 89
$out['offers']['used'][1]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 185049
$out['offers']['used'][1]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][1]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['used'][1]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['used'][1]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][1]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][1]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD53.34
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['used'][1]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][1]['price']['listing_price']['currency_code']
    amount => string (5) "53.34"
    $out['offers']['used'][1]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][1]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][1]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['used'][1]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['used'][1]['ships_from']
state => string (2) "IL"
$out['offers']['used'][1]['ships_from']['state']
country => string (2) "US"
$out['offers']['used'][1]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['used'][1]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][1]['is_buy_box_winner']
is_featured_merchant => boolean false
$out['offers']['used'][1]['is_featured_merchant']
2 => array (8)
$out['offers']['used'][2]
sub_condition => string (10) "acceptable"
$out['offers']['used'][2]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][2]['seller_feedback_rating']
seller_positive_feedback_rating => double 86
$out['offers']['used'][2]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 119543
$out['offers']['used'][2]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][2]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['used'][2]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['used'][2]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][2]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][2]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD53.35
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['used'][2]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][2]['price']['listing_price']['currency_code']
    amount => string (5) "53.35"
    $out['offers']['used'][2]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][2]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][2]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['used'][2]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['used'][2]['ships_from']
state => string (2) "AR"
$out['offers']['used'][2]['ships_from']['state']
country => string (2) "US"
$out['offers']['used'][2]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['used'][2]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][2]['is_buy_box_winner']
is_featured_merchant => boolean false
$out['offers']['used'][2]['is_featured_merchant']
3 => array (8)
$out['offers']['used'][3]
sub_condition => string (4) "good"
$out['offers']['used'][3]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][3]['seller_feedback_rating']
seller_positive_feedback_rating => double 86
$out['offers']['used'][3]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 119543
$out['offers']['used'][3]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][3]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['used'][3]['shipping_time']['minimumHours']
maximumHours => string (2) "24"
$out['offers']['used'][3]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][3]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][3]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD54.45
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['used'][3]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][3]['price']['listing_price']['currency_code']
    amount => string (5) "54.45"
    $out['offers']['used'][3]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][3]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][3]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['used'][3]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['used'][3]['ships_from']
state => string (2) "AR"
$out['offers']['used'][3]['ships_from']['state']
country => string (2) "US"
$out['offers']['used'][3]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['used'][3]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][3]['is_buy_box_winner']
is_featured_merchant => boolean false
$out['offers']['used'][3]['is_featured_merchant']
4 => array (7)
$out['offers']['used'][4]
sub_condition => string (4) "good"
$out['offers']['used'][4]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][4]['seller_feedback_rating']
seller_positive_feedback_rating => double 100
$out['offers']['used'][4]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 166
$out['offers']['used'][4]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][4]['shipping_time']
minimumHours => string (1) "0"
$out['offers']['used'][4]['shipping_time']['minimumHours']
maximumHours => string (1) "0"
$out['offers']['used'][4]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][4]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][4]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD59.99
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['used'][4]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][4]['price']['listing_price']['currency_code']
    amount => string (5) "59.99"
    $out['offers']['used'][4]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][4]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][4]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['used'][4]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean true
$out['offers']['used'][4]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][4]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][4]['is_featured_merchant']
5 => array (7)
$out['offers']['used'][5]
sub_condition => string (9) "very_good"
$out['offers']['used'][5]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][5]['seller_feedback_rating']
seller_positive_feedback_rating => double 100
$out['offers']['used'][5]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 166
$out['offers']['used'][5]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][5]['shipping_time']
minimumHours => string (1) "0"
$out['offers']['used'][5]['shipping_time']['minimumHours']
maximumHours => string (1) "0"
$out['offers']['used'][5]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][5]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][5]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD59.99
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['used'][5]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][5]['price']['listing_price']['currency_code']
    amount => string (5) "59.99"
    $out['offers']['used'][5]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][5]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][5]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['used'][5]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean true
$out['offers']['used'][5]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean true
$out['offers']['used'][5]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][5]['is_featured_merchant']
6 => array (7)
$out['offers']['used'][6]
sub_condition => string (9) "very_good"
$out['offers']['used'][6]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][6]['seller_feedback_rating']
seller_positive_feedback_rating => double 97
$out['offers']['used'][6]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 1077
$out['offers']['used'][6]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][6]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['used'][6]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['used'][6]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][6]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][6]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD59.94
    shippingUSD4.99
  • listing_price => array (2)
    $out['offers']['used'][6]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][6]['price']['listing_price']['currency_code']
    amount => string (5) "59.94"
    $out['offers']['used'][6]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][6]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][6]['price']['shipping']['currency_code']
    amount => string (4) "4.99"
    $out['offers']['used'][6]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean false
$out['offers']['used'][6]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][6]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][6]['is_featured_merchant']
7 => array (7)
$out['offers']['used'][7]
sub_condition => string (10) "acceptable"
$out['offers']['used'][7]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][7]['seller_feedback_rating']
seller_positive_feedback_rating => double 91
$out['offers']['used'][7]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 159348
$out['offers']['used'][7]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][7]['shipping_time']
minimumHours => string (1) "0"
$out['offers']['used'][7]['shipping_time']['minimumHours']
maximumHours => string (1) "0"
$out['offers']['used'][7]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][7]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][7]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD69.78
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['used'][7]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][7]['price']['listing_price']['currency_code']
    amount => string (5) "69.78"
    $out['offers']['used'][7]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][7]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][7]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['used'][7]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean true
$out['offers']['used'][7]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][7]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][7]['is_featured_merchant']
8 => array (7)
$out['offers']['used'][8]
sub_condition => string (4) "good"
$out['offers']['used'][8]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][8]['seller_feedback_rating']
seller_positive_feedback_rating => double 91
$out['offers']['used'][8]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 159348
$out['offers']['used'][8]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][8]['shipping_time']
minimumHours => string (1) "0"
$out['offers']['used'][8]['shipping_time']['minimumHours']
maximumHours => string (1) "0"
$out['offers']['used'][8]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][8]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][8]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD69.78
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['used'][8]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][8]['price']['listing_price']['currency_code']
    amount => string (5) "69.78"
    $out['offers']['used'][8]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][8]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][8]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['used'][8]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean true
$out['offers']['used'][8]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][8]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][8]['is_featured_merchant']
9 => array (7)
$out['offers']['used'][9]
sub_condition => string (8) "like_new"
$out['offers']['used'][9]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][9]['seller_feedback_rating']
seller_positive_feedback_rating => double 91
$out['offers']['used'][9]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 159348
$out['offers']['used'][9]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][9]['shipping_time']
minimumHours => string (1) "0"
$out['offers']['used'][9]['shipping_time']['minimumHours']
maximumHours => string (1) "0"
$out['offers']['used'][9]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][9]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][9]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD69.78
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['used'][9]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][9]['price']['listing_price']['currency_code']
    amount => string (5) "69.78"
    $out['offers']['used'][9]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][9]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][9]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['used'][9]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean true
$out['offers']['used'][9]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][9]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][9]['is_featured_merchant']
10 => array (8)
$out['offers']['used'][10]
sub_condition => string (4) "good"
$out['offers']['used'][10]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['used'][10]['seller_feedback_rating']
seller_positive_feedback_rating => double 94
$out['offers']['used'][10]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 2351
$out['offers']['used'][10]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['used'][10]['shipping_time']
minimumHours => string (2) "96"
$out['offers']['used'][10]['shipping_time']['minimumHours']
maximumHours => string (3) "120"
$out['offers']['used'][10]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['used'][10]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['used'][10]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD332.46
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['used'][10]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['used'][10]['price']['listing_price']['currency_code']
    amount => string (6) "332.46"
    $out['offers']['used'][10]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['used'][10]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['used'][10]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['used'][10]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['used'][10]['ships_from']
state => string (2) "FL"
$out['offers']['used'][10]['ships_from']['state']
country => string (2) "US"
$out['offers']['used'][10]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['used'][10]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['used'][10]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['used'][10]['is_featured_merchant']
new => array (6)
$out['offers']['new']
0 => array (7)
$out['offers']['new'][0]
sub_condition => string (3) "new"
$out['offers']['new'][0]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['new'][0]['seller_feedback_rating']
seller_positive_feedback_rating => double 97
$out['offers']['new'][0]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 365151
$out['offers']['new'][0]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['new'][0]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['new'][0]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['new'][0]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['new'][0]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['new'][0]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD34.88
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['new'][0]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['new'][0]['price']['listing_price']['currency_code']
    amount => string (5) "34.88"
    $out['offers']['new'][0]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['new'][0]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['new'][0]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['new'][0]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean false
$out['offers']['new'][0]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['new'][0]['is_buy_box_winner']
is_featured_merchant => boolean false
$out['offers']['new'][0]['is_featured_merchant']
1 => array (7)
$out['offers']['new'][1]
sub_condition => string (3) "new"
$out['offers']['new'][1]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['new'][1]['seller_feedback_rating']
seller_positive_feedback_rating => double 91
$out['offers']['new'][1]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 387
$out['offers']['new'][1]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['new'][1]['shipping_time']
minimumHours => string (1) "0"
$out['offers']['new'][1]['shipping_time']['minimumHours']
maximumHours => string (1) "0"
$out['offers']['new'][1]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['new'][1]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['new'][1]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD34.89
    shippingUSD0.00
  • listing_price => array (2)
    $out['offers']['new'][1]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['new'][1]['price']['listing_price']['currency_code']
    amount => string (5) "34.89"
    $out['offers']['new'][1]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['new'][1]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['new'][1]['price']['shipping']['currency_code']
    amount => string (4) "0.00"
    $out['offers']['new'][1]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean true
$out['offers']['new'][1]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean true
$out['offers']['new'][1]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['new'][1]['is_featured_merchant']
2 => array (8)
$out['offers']['new'][2]
sub_condition => string (3) "new"
$out['offers']['new'][2]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['new'][2]['seller_feedback_rating']
seller_positive_feedback_rating => double 88
$out['offers']['new'][2]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 185082
$out['offers']['new'][2]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['new'][2]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['new'][2]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['new'][2]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['new'][2]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['new'][2]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD32.76
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['new'][2]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['new'][2]['price']['listing_price']['currency_code']
    amount => string (5) "32.76"
    $out['offers']['new'][2]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['new'][2]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['new'][2]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['new'][2]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['new'][2]['ships_from']
state => string (2) "IL"
$out['offers']['new'][2]['ships_from']['state']
country => string (2) "US"
$out['offers']['new'][2]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['new'][2]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['new'][2]['is_buy_box_winner']
is_featured_merchant => boolean false
$out['offers']['new'][2]['is_featured_merchant']
3 => array (8)
$out['offers']['new'][3]
sub_condition => string (3) "new"
$out['offers']['new'][3]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['new'][3]['seller_feedback_rating']
seller_positive_feedback_rating => double 100
$out['offers']['new'][3]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 5
$out['offers']['new'][3]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['new'][3]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['new'][3]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['new'][3]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['new'][3]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['new'][3]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD32.77
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['new'][3]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['new'][3]['price']['listing_price']['currency_code']
    amount => string (5) "32.77"
    $out['offers']['new'][3]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['new'][3]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['new'][3]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['new'][3]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['new'][3]['ships_from']
state => string (2) "CA"
$out['offers']['new'][3]['ships_from']['state']
country => string (2) "US"
$out['offers']['new'][3]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['new'][3]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['new'][3]['is_buy_box_winner']
is_featured_merchant => boolean false
$out['offers']['new'][3]['is_featured_merchant']
4 => array (7)
$out['offers']['new'][4]
sub_condition => string (3) "new"
$out['offers']['new'][4]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['new'][4]['seller_feedback_rating']
seller_positive_feedback_rating => double 96
$out['offers']['new'][4]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 1079
$out['offers']['new'][4]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['new'][4]['shipping_time']
minimumHours => string (2) "24"
$out['offers']['new'][4]['shipping_time']['minimumHours']
maximumHours => string (2) "48"
$out['offers']['new'][4]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['new'][4]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['new'][4]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD59.94
    shippingUSD4.99
  • listing_price => array (2)
    $out['offers']['new'][4]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['new'][4]['price']['listing_price']['currency_code']
    amount => string (5) "59.94"
    $out['offers']['new'][4]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['new'][4]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['new'][4]['price']['shipping']['currency_code']
    amount => string (4) "4.99"
    $out['offers']['new'][4]['price']['shipping']['amount']
is_fulfilled_by_amazon => boolean false
$out['offers']['new'][4]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['new'][4]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['new'][4]['is_featured_merchant']
5 => array (8)
$out['offers']['new'][5]
sub_condition => string (3) "new"
$out['offers']['new'][5]['sub_condition']
seller_feedback_rating => array (2)
$out['offers']['new'][5]['seller_feedback_rating']
seller_positive_feedback_rating => double 94
$out['offers']['new'][5]['seller_feedback_rating']['seller_positive_feedback_rating']
feedback_count => integer 2353
$out['offers']['new'][5]['seller_feedback_rating']['feedback_count']
shipping_time => array (3)
$out['offers']['new'][5]['shipping_time']
minimumHours => string (2) "96"
$out['offers']['new'][5]['shipping_time']['minimumHours']
maximumHours => string (3) "120"
$out['offers']['new'][5]['shipping_time']['maximumHours']
availabilityType => string (3) "now"
$out['offers']['new'][5]['shipping_time']['availabilityType']
price => array (2)
$out['offers']['new'][5]['price']
  • Table (2)
  • Contents (2)
  • currency_codeamount
    listing_priceUSD332.90
    shippingUSD3.99
  • listing_price => array (2)
    $out['offers']['new'][5]['price']['listing_price']
    currency_code => string (3) "USD"
    $out['offers']['new'][5]['price']['listing_price']['currency_code']
    amount => string (6) "332.90"
    $out['offers']['new'][5]['price']['listing_price']['amount']
    shipping => array (2)
    $out['offers']['new'][5]['price']['shipping']
    currency_code => string (3) "USD"
    $out['offers']['new'][5]['price']['shipping']['currency_code']
    amount => string (4) "3.99"
    $out['offers']['new'][5]['price']['shipping']['amount']
ships_from => array (2)
$out['offers']['new'][5]['ships_from']
state => string (2) "FL"
$out['offers']['new'][5]['ships_from']['state']
country => string (2) "US"
$out['offers']['new'][5]['ships_from']['country']
is_fulfilled_by_amazon => boolean false
$out['offers']['new'][5]['is_fulfilled_by_amazon']
is_buy_box_winner => boolean false
$out['offers']['new'][5]['is_buy_box_winner']
is_featured_merchant => boolean true
$out['offers']['new'][5]['is_featured_merchant']
salesrank => integer 389
$out['salesrank']
trade_in_value => string (5) "13.96"
$out['trade_in_value']
product => array (12)
$out['product']
asin => string (10) "0984782850"
$out['product']['asin']
2001-03-16 22:47:30
authors => array (1)
$out['product']['authors']
0 => string (24) "McDowell, Gayle Laakmann"
$out['product']['authors'][0]
binding => string (9) "Paperback"
$out['product']['binding']
edition => string (3) "6th"
$out['product']['edition']
dimensions => array (4)
$out['product']['dimensions']
  • Table (4)
  • Contents (4)
  • valueunits
    height10inches
    length7inches
    width1.59inches
    weight2.78pounds
  • height => array (2)
    $out['product']['dimensions']['height']
    value => double 10
    $out['product']['dimensions']['height']['value']
    units => string (6) "inches"
    $out['product']['dimensions']['height']['units']
    length => array (2)
    $out['product']['dimensions']['length']
    value => double 7
    $out['product']['dimensions']['length']['value']
    units => string (6) "inches"
    $out['product']['dimensions']['length']['units']
    width => array (2)
    $out['product']['dimensions']['width']
    value => double 1.59
    $out['product']['dimensions']['width']['value']
    units => string (6) "inches"
    $out['product']['dimensions']['width']['units']
    weight => array (2)
    $out['product']['dimensions']['weight']
    value => double 2.78
    $out['product']['dimensions']['weight']['value']
    units => string (6) "pounds"
    $out['product']['dimensions']['weight']['units']
package_dimensions => array (4)
$out['product']['package_dimensions']
  • Table (4)
  • Contents (4)
  • valueunits
    height1.81inches
    length10.16inches
    width7.01inches
    weight2.76pounds
  • height => array (2)
    $out['product']['package_dimensions']['height']
    value => double 1.81
    $out['product']['package_dimensions']['height']['value']
    units => string (6) "inches"
    $out['product']['package_dimensions']['height']['units']
    length => array (2)
    $out['product']['package_dimensions']['length']
    value => double 10.16
    $out['product']['package_dimensions']['length']['value']
    units => string (6) "inches"
    $out['product']['package_dimensions']['length']['units']
    width => array (2)
    $out['product']['package_dimensions']['width']
    value => double 7.01
    $out['product']['package_dimensions']['width']['value']
    units => string (6) "inches"
    $out['product']['package_dimensions']['width']['units']
    weight => array (2)
    $out['product']['package_dimensions']['weight']
    value => double 2.76
    $out['product']['package_dimensions']['weight']['value']
    units => string (6) "pounds"
    $out['product']['package_dimensions']['weight']['units']
is_eligible_for_trade_in => boolean true
$out['product']['is_eligible_for_trade_in']
list_price => array (2)
$out['product']['list_price']
value => double 39.95
$out['product']['list_price']['value']
currency_code => string (3) "USD"
$out['product']['list_price']['currency_code']
publication_date => string (10) "2015-07-01"
$out['product']['publication_date']
publisher => string (9) "CareerCup"
$out['product']['publisher']
image => array (4)
$out['product']['image']
url => string (62) "http://ecx.images-amazon.com/images/I/41GWhKc9%2BvL._SL75_.jpg"
$out['product']['image']['url']
units => string (6) "pixels"
$out['product']['image']['units']
height => integer 75
$out['product']['image']['height']
width => integer 53
$out['product']['image']['width']
title => string (70) "Cracking the Coding Interview: 189 Programming Questions and Solutions"
$out['product']['title']
categories => array (1)
$out['categories']
Self => array (9)
$out['categories']['Self']
  • Table (9)
  • Contents (9)
  • ProductCategoryIdProductCategoryNameParent
    02576Job Huntingarray (3)
    12578Interviewingarray (3)
    23508Computer Sciencearray (3)
    3132570011Data Structuresarray (3)
    44016Software Developmentarray (3)
    53648Hackingarray (3)
    6468220Business & Financearray (3)
    7491314Programming Languagesarray (3)
    8491316Software Design & Engineeringarray (3)
  • 0 => array (3)
    $out['categories']['Self'][0]
    ProductCategoryId => string (4) "2576"
    $out['categories']['Self'][0]['ProductCategoryId']
    ProductCategoryName => string (11) "Job Hunting"
    $out['categories']['Self'][0]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][0]['Parent']
    ProductCategoryId => string (4) "2572"
    $out['categories']['Self'][0]['Parent']['ProductCategoryId']
    ProductCategoryName => string (21) "Job Hunting & Careers"
    $out['categories']['Self'][0]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][0]['Parent']['Parent']
    ProductCategoryId => string (1) "3"
    $out['categories']['Self'][0]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (16) "Business & Money"
    $out['categories']['Self'][0]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][0]['Parent']['Parent']['Parent']
    ProductCategoryId => string (4) "1000"
    $out['categories']['Self'][0]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (8) "Subjects"
    $out['categories']['Self'][0]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][0]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][0]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][0]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    1 => array (3)
    $out['categories']['Self'][1]
    ProductCategoryId => string (4) "2578"
    $out['categories']['Self'][1]['ProductCategoryId']
    ProductCategoryName => string (12) "Interviewing"
    $out['categories']['Self'][1]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][1]['Parent']
    ProductCategoryId => string (4) "2572"
    $out['categories']['Self'][1]['Parent']['ProductCategoryId']
    ProductCategoryName => string (21) "Job Hunting & Careers"
    $out['categories']['Self'][1]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][1]['Parent']['Parent']
    ProductCategoryId => string (1) "3"
    $out['categories']['Self'][1]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (16) "Business & Money"
    $out['categories']['Self'][1]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][1]['Parent']['Parent']['Parent']
    ProductCategoryId => string (4) "1000"
    $out['categories']['Self'][1]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (8) "Subjects"
    $out['categories']['Self'][1]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][1]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][1]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][1]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    2 => array (3)
    $out['categories']['Self'][2]
    ProductCategoryId => string (4) "3508"
    $out['categories']['Self'][2]['ProductCategoryId']
    ProductCategoryName => string (16) "Computer Science"
    $out['categories']['Self'][2]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][2]['Parent']
    ProductCategoryId => string (1) "5"
    $out['categories']['Self'][2]['Parent']['ProductCategoryId']
    ProductCategoryName => string (22) "Computers & Technology"
    $out['categories']['Self'][2]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][2]['Parent']['Parent']
    ProductCategoryId => string (4) "1000"
    $out['categories']['Self'][2]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (8) "Subjects"
    $out['categories']['Self'][2]['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][2]['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][2]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][2]['Parent']['Parent']['Parent']['ProductCategoryName']
    3 => array (3)
    $out['categories']['Self'][3]
    ProductCategoryId => string (9) "132570011"
    $out['categories']['Self'][3]['ProductCategoryId']
    1974-03-15 09:00:11
    ProductCategoryName => string (15) "Data Structures"
    $out['categories']['Self'][3]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][3]['Parent']
    ProductCategoryId => string (4) "3870"
    $out['categories']['Self'][3]['Parent']['ProductCategoryId']
    ProductCategoryName => string (10) "Algorithms"
    $out['categories']['Self'][3]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][3]['Parent']['Parent']
    ProductCategoryId => string (4) "3839"
    $out['categories']['Self'][3]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (11) "Programming"
    $out['categories']['Self'][3]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']
    ProductCategoryId => string (1) "5"
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (22) "Computers & Technology"
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (4) "1000"
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (8) "Subjects"
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][3]['Parent']['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    4 => array (3)
    $out['categories']['Self'][4]
    ProductCategoryId => string (4) "4016"
    $out['categories']['Self'][4]['ProductCategoryId']
    ProductCategoryName => string (20) "Software Development"
    $out['categories']['Self'][4]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][4]['Parent']
    ProductCategoryId => string (4) "4011"
    $out['categories']['Self'][4]['Parent']['ProductCategoryId']
    ProductCategoryName => string (38) "Software Design, Testing & Engineering"
    $out['categories']['Self'][4]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][4]['Parent']['Parent']
    ProductCategoryId => string (4) "3839"
    $out['categories']['Self'][4]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (11) "Programming"
    $out['categories']['Self'][4]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']
    ProductCategoryId => string (1) "5"
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (22) "Computers & Technology"
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (4) "1000"
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (8) "Subjects"
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][4]['Parent']['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    5 => array (3)
    $out['categories']['Self'][5]
    ProductCategoryId => string (4) "3648"
    $out['categories']['Self'][5]['ProductCategoryId']
    ProductCategoryName => string (7) "Hacking"
    $out['categories']['Self'][5]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][5]['Parent']
    ProductCategoryId => string (5) "69766"
    $out['categories']['Self'][5]['Parent']['ProductCategoryId']
    ProductCategoryName => string (23) "Internet & Social Media"
    $out['categories']['Self'][5]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][5]['Parent']['Parent']
    ProductCategoryId => string (1) "5"
    $out['categories']['Self'][5]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (22) "Computers & Technology"
    $out['categories']['Self'][5]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][5]['Parent']['Parent']['Parent']
    ProductCategoryId => string (4) "1000"
    $out['categories']['Self'][5]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (8) "Subjects"
    $out['categories']['Self'][5]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][5]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][5]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][5]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    6 => array (3)
    $out['categories']['Self'][6]
    ProductCategoryId => string (6) "468220"
    $out['categories']['Self'][6]['ProductCategoryId']
    ProductCategoryName => string (18) "Business & Finance"
    $out['categories']['Self'][6]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][6]['Parent']
    ProductCategoryId => string (6) "465600"
    $out['categories']['Self'][6]['Parent']['ProductCategoryId']
    ProductCategoryName => string (28) "New, Used & Rental Textbooks"
    $out['categories']['Self'][6]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][6]['Parent']['Parent']
    ProductCategoryId => string (10) "2349030011"
    $out['categories']['Self'][6]['Parent']['Parent']['ProductCategoryId']
    2044-06-08 20:20:11
    ProductCategoryName => string (18) "Specialty Boutique"
    $out['categories']['Self'][6]['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][6]['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][6]['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][6]['Parent']['Parent']['Parent']['ProductCategoryName']
    7 => array (3)
    $out['categories']['Self'][7]
    ProductCategoryId => string (6) "491314"
    $out['categories']['Self'][7]['ProductCategoryId']
    ProductCategoryName => string (21) "Programming Languages"
    $out['categories']['Self'][7]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][7]['Parent']
    ProductCategoryId => string (6) "468204"
    $out['categories']['Self'][7]['Parent']['ProductCategoryId']
    ProductCategoryName => string (16) "Computer Science"
    $out['categories']['Self'][7]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][7]['Parent']['Parent']
    ProductCategoryId => string (6) "465600"
    $out['categories']['Self'][7]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (28) "New, Used & Rental Textbooks"
    $out['categories']['Self'][7]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][7]['Parent']['Parent']['Parent']
    ProductCategoryId => string (10) "2349030011"
    $out['categories']['Self'][7]['Parent']['Parent']['Parent']['ProductCategoryId']
    2044-06-08 20:20:11
    ProductCategoryName => string (18) "Specialty Boutique"
    $out['categories']['Self'][7]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][7]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][7]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][7]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
    8 => array (3)
    $out['categories']['Self'][8]
    ProductCategoryId => string (6) "491316"
    $out['categories']['Self'][8]['ProductCategoryId']
    ProductCategoryName => string (29) "Software Design & Engineering"
    $out['categories']['Self'][8]['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][8]['Parent']
    ProductCategoryId => string (6) "468204"
    $out['categories']['Self'][8]['Parent']['ProductCategoryId']
    ProductCategoryName => string (16) "Computer Science"
    $out['categories']['Self'][8]['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][8]['Parent']['Parent']
    ProductCategoryId => string (6) "465600"
    $out['categories']['Self'][8]['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (28) "New, Used & Rental Textbooks"
    $out['categories']['Self'][8]['Parent']['Parent']['ProductCategoryName']
    Parent => array (3)
    $out['categories']['Self'][8]['Parent']['Parent']['Parent']
    ProductCategoryId => string (10) "2349030011"
    $out['categories']['Self'][8]['Parent']['Parent']['Parent']['ProductCategoryId']
    2044-06-08 20:20:11
    ProductCategoryName => string (18) "Specialty Boutique"
    $out['categories']['Self'][8]['Parent']['Parent']['Parent']['ProductCategoryName']
    Parent => array (2)
    $out['categories']['Self'][8]['Parent']['Parent']['Parent']['Parent']
    ProductCategoryId => string (6) "283155"
    $out['categories']['Self'][8]['Parent']['Parent']['Parent']['Parent']['ProductCategoryId']
    ProductCategoryName => string (5) "Books"
    $out['categories']['Self'][8]['Parent']['Parent']['Parent']['Parent']['ProductCategoryName']
runtime_seconds => double 0.43177604675293
$out['runtime_seconds']
Called from <ROOT>/api/v1/index.php:368