API Documentation (Get Pricing)
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.
- ASIN
- API Key
- Secret
- Signature
- 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']
- ⇄merchant => integer 6
- ⇄→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']
- ⇄amazon => integer 1
- ⇄→used => array (2)
- ⇄→lowest_prices => array (2)$out['offer_summary']['lowest_prices']
- ⇄→used => array (2)$out['offer_summary']['lowest_prices']['used']
- Table (2)
- Contents (2)
landed_price listing_price shipping merchant array (2) array (2) array (2) amazon array (2) array (2) array (2) - ⇄→merchant => array (3)$out['offer_summary']['lowest_prices']['used']['merchant']
- Table (3)
- Contents (3)
currency_code amount landed_price USD 34.00 listing_price USD 30.01 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→landed_price => array (2)
- ⇄→amazon => array (3)$out['offer_summary']['lowest_prices']['used']['amazon']
- Table (3)
- Contents (3)
currency_code amount landed_price USD 59.99 listing_price USD 59.99 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→landed_price => array (2)
- ⇄→merchant => array (3)
- ⇄→new => array (2)$out['offer_summary']['lowest_prices']['new']
- Table (2)
- Contents (2)
landed_price listing_price shipping amazon array (2) array (2) array (2) merchant array (2) array (2) array (2) - ⇄→amazon => array (3)$out['offer_summary']['lowest_prices']['new']['amazon']
- Table (3)
- Contents (3)
currency_code amount landed_price USD 34.89 listing_price USD 34.89 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→landed_price => array (2)
- ⇄→merchant => array (3)$out['offer_summary']['lowest_prices']['new']['merchant']
- Table (3)
- Contents (3)
currency_code amount landed_price USD 34.88 listing_price USD 34.88 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→landed_price => array (2)
- ⇄→amazon => array (3)
- ⇄→used => array (2)
- ⇄→buy_box_prices => array (2)$out['offer_summary']['buy_box_prices']
- Table (2)
- Contents (2)
landed_price listing_price shipping new array (2) array (2) array (2) used array (2) array (2) array (2) - ⇄→new => array (3)$out['offer_summary']['buy_box_prices']['new']
- Table (3)
- Contents (3)
currency_code amount landed_price USD 34.89 listing_price USD 34.89 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→landed_price => array (2)
- ⇄→used => array (3)$out['offer_summary']['buy_box_prices']['used']
- Table (3)
- Contents (3)
currency_code amount landed_price USD 65.98 listing_price USD 59.99 shipping USD 5.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→landed_price => array (2)
- ⇄→new => array (3)
- ⇄total_offer_count => integer 17
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 97
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['used'][0]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 30.01 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "CA"
- ⇄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']
- ⇄sub_condition => string (9) "very_good"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 89
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['used'][1]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 53.34 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "IL"
- ⇄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']
- ⇄sub_condition => string (8) "like_new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 86
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['used'][2]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 53.35 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "AR"
- ⇄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']
- ⇄sub_condition => string (10) "acceptable"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 86
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['used'][3]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 54.45 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "AR"
- ⇄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']
- ⇄sub_condition => string (4) "good"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 100
- ⇄→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']
- ⇄minimumHours => string (1) "0"
- ⇄→price => array (2)$out['offers']['used'][4]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 59.99 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (4) "good"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 100
- ⇄→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']
- ⇄minimumHours => string (1) "0"
- ⇄→price => array (2)$out['offers']['used'][5]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 59.99 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (9) "very_good"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 97
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['used'][6]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 59.94 shipping USD 4.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (9) "very_good"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 91
- ⇄→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']
- ⇄minimumHours => string (1) "0"
- ⇄→price => array (2)$out['offers']['used'][7]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 69.78 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (10) "acceptable"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 91
- ⇄→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']
- ⇄minimumHours => string (1) "0"
- ⇄→price => array (2)$out['offers']['used'][8]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 69.78 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (4) "good"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 91
- ⇄→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']
- ⇄minimumHours => string (1) "0"
- ⇄→price => array (2)$out['offers']['used'][9]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 69.78 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (8) "like_new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 94
- ⇄→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']
- ⇄minimumHours => string (2) "96"
- ⇄→price => array (2)$out['offers']['used'][10]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 332.46 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "FL"
- ⇄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']
- ⇄sub_condition => string (4) "good"
- ⇄→0 => array (8)
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 97
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['new'][0]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 34.88 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (3) "new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 91
- ⇄→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']
- ⇄minimumHours => string (1) "0"
- ⇄→price => array (2)$out['offers']['new'][1]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 34.89 shipping USD 0.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (3) "new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 88
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['new'][2]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 32.76 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "IL"
- ⇄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']
- ⇄sub_condition => string (3) "new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 100
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['new'][3]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 32.77 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "CA"
- ⇄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']
- ⇄sub_condition => string (3) "new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 96
- ⇄→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']
- ⇄minimumHours => string (2) "24"
- ⇄→price => array (2)$out['offers']['new'][4]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 59.94 shipping USD 4.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄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']
- ⇄sub_condition => string (3) "new"
- ⇄→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']
- ⇄seller_positive_feedback_rating => double 94
- ⇄→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']
- ⇄minimumHours => string (2) "96"
- ⇄→price => array (2)$out['offers']['new'][5]['price']
- Table (2)
- Contents (2)
currency_code amount listing_price USD 332.90 shipping USD 3.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']
- ⇄currency_code => string (3) "USD"
- ⇄→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']
- ⇄currency_code => string (3) "USD"
- ⇄→listing_price => array (2)
- ⇄→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']
- ⇄state => string (2) "FL"
- ⇄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']
- ⇄sub_condition => string (3) "new"
- ⇄→0 => array (7)
- ⇄→used => array (11)
- ⇄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]
- ⇄0 => string (24) "McDowell, Gayle Laakmann"
- ⇄binding => string (9) "Paperback"$out['product']['binding']
- ⇄edition => string (3) "6th"$out['product']['edition']
- ⇄→dimensions => array (4)$out['product']['dimensions']
- Table (4)
- Contents (4)
value units height 10 inches length 7 inches width 1.59 inches weight 2.78 pounds - ⇄→height => array (2)$out['product']['dimensions']['height']
- ⇄value => double 10$out['product']['dimensions']['height']['value']
- ⇄units => string (6) "inches"$out['product']['dimensions']['height']['units']
- ⇄value => double 10
- ⇄→length => array (2)$out['product']['dimensions']['length']
- ⇄value => double 7$out['product']['dimensions']['length']['value']
- ⇄units => string (6) "inches"$out['product']['dimensions']['length']['units']
- ⇄value => double 7
- ⇄→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']
- ⇄value => double 1.59
- ⇄→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']
- ⇄value => double 2.78
- ⇄→height => array (2)
- ⇄→package_dimensions => array (4)$out['product']['package_dimensions']
- Table (4)
- Contents (4)
value units height 1.81 inches length 10.16 inches width 7.01 inches weight 2.76 pounds - ⇄→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']
- ⇄value => double 1.81
- ⇄→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']
- ⇄value => double 10.16
- ⇄→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']
- ⇄value => double 7.01
- ⇄→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']
- ⇄value => double 2.76
- ⇄→height => array (2)
- ⇄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']
- ⇄value => double 39.95
- ⇄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']
- ⇄url => string (62) "http://ecx.images-amazon.com/images/I/41GWhKc9%2BvL._SL75_.jpg"
- ⇄title => string (70) "Cracking the Coding Interview: 189 Programming Questions and Solutions"$out['product']['title']
- ⇄→asin => string (10) "0984782850"
- ⇄→categories => array (1)$out['categories']
- ⇄→Self => array (9)$out['categories']['Self']
- Table (9)
- Contents (9)
ProductCategoryId ProductCategoryName Parent 0 2576 Job Hunting array (3) 1 2578 Interviewing array (3) 2 3508 Computer Science array (3) 3 132570011 Data Structures array (3) 4 4016 Software Development array (3) 5 3648 Hacking array (3) 6 468220 Business & Finance array (3) 7 491314 Programming Languages array (3) 8 491316 Software Design & Engineering array (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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄ProductCategoryId => string (4) "1000"
- ⇄ProductCategoryId => string (1) "3"
- ⇄ProductCategoryId => string (4) "2572"
- ⇄ProductCategoryId => string (4) "2576"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄ProductCategoryId => string (4) "1000"
- ⇄ProductCategoryId => string (1) "3"
- ⇄ProductCategoryId => string (4) "2572"
- ⇄ProductCategoryId => string (4) "2578"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄ProductCategoryId => string (4) "1000"
- ⇄ProductCategoryId => string (1) "5"
- ⇄ProductCategoryId => string (4) "3508"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄ProductCategoryId => string (4) "1000"
- ⇄ProductCategoryId => string (1) "5"
- ⇄ProductCategoryId => string (4) "3839"
- ⇄ProductCategoryId => string (4) "3870"
- ⇄→ProductCategoryId => string (9) "132570011"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄ProductCategoryId => string (4) "1000"
- ⇄ProductCategoryId => string (1) "5"
- ⇄ProductCategoryId => string (4) "3839"
- ⇄ProductCategoryId => string (4) "4011"
- ⇄ProductCategoryId => string (4) "4016"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄ProductCategoryId => string (4) "1000"
- ⇄ProductCategoryId => string (1) "5"
- ⇄ProductCategoryId => string (5) "69766"
- ⇄ProductCategoryId => string (4) "3648"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄→ProductCategoryId => string (10) "2349030011"
- ⇄ProductCategoryId => string (6) "465600"
- ⇄ProductCategoryId => string (6) "468220"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄→ProductCategoryId => string (10) "2349030011"
- ⇄ProductCategoryId => string (6) "465600"
- ⇄ProductCategoryId => string (6) "468204"
- ⇄ProductCategoryId => string (6) "491314"
- ⇄→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']
- ⇄ProductCategoryId => string (6) "283155"
- ⇄→ProductCategoryId => string (10) "2349030011"
- ⇄ProductCategoryId => string (6) "465600"
- ⇄ProductCategoryId => string (6) "468204"
- ⇄ProductCategoryId => string (6) "491316"
- ⇄→0 => array (3)
- ⇄→Self => array (9)
- ⇄runtime_seconds => double 0.43177604675293$out['runtime_seconds']
- ⇄errors => array (0)