### Insert Order API Call Example (HTTP) Source: https://guida.feedaty.com/article/102-api-di-feedaty This snippet demonstrates an example HTTP POST request to the Feedaty API for inserting order data. It includes headers like Content-Type and Authorization, and a JSON payload detailing order and product information. Ensure all fields are correctly formatted as per API specifications. ```HTTP POST /Orders/Insert HTTP/1.1 Host: api.feedaty.com Content-Type: application/json Authorization: OAuth 65fbe612523b4c05b3f9f95b5da2af4f [ { "ID": "NO-004", "Date": "2013/08/07 15:29:00.000", "CustomerID": "MR-072", "CustomerEmail": "mario.rossi@hotmail.com", "CustomerName": "Mario Rossi", "Culture": "it", "LocationCode": "MIL01", "Products": [ { "SKU": "426865031d", "Brand": "Amazon", "Name": "THE COMPLETE SHERLOCK HOLMES", "Category": "Libri", "EAN": "6516846656460", "ThumbnailURL": "http://ecx.imagesamazon.com/images/I/41LO0VIDDCL._AA258_PIkin4,BottomRight,-32,22_AA280_SH20_OU29_.jpg", "URL": "http://www.amazon.it/gp/product/B004LE7PCM/ref=s9_qpp_gw_d99_g351_ir06pf_rd_m=A11IL2PNWYJU7H&pf_rd_s=center3&pf_rd_r=1YFCTJ4NH9W2WYYFT0XD&pf_rd_t=101&pf_rd_p=312234487&pf_rd_i=426865031" }, { "SKU": "111140495463", "Brand": "Apple", "Name": "Apple iPhone 5 (Latest Model) - 32GB - White & Silver (Verizon) Smartphone", "Size": "128GB", "Color": "Black", "EAN": "8976846656460", "ThumbnailURL": "http://pics.ebaystatic.com/aw/pics/viewitem/imgSoldCvi_96x96.png", "URL": "http://www.ebay.com/itm/Apple-iPhone-5-Latest-Model-32GB-White-Silver-Verizon-Smartphone-/111140495463" } ] }, { "ID": "NA-005", "Date": "2013/08/08 15:29:00.000", "CustomerID": "EC-002", "CustomerEmail": "antonio.bianchi@google.com", "CustomerName": "Antonio Bianchi", "Culture": "it", "Products": [ { "SKU": "111140495463", "Brand": "Apple", "Name": "Apple iPhone 5 (Latest Model) - 32GB - White & Silver (Verizon) Smartphone", "Size": "128GB", "Color": "Blue", "EAN": "5476846656460", "ThumbnailURL": "http://pics.ebaystatic.com/aw/pics/viewitem/imgSoldCvi_96x96.png", "URL": "http://www.ebay.com/itm/Apple-iPhone-5-Latest-Model-32GB-White-Silver-Verizon-Smartphone-/111140495463" } ] } ] ``` -------------------------------- ### Feedaty API Authorization Header Example Source: https://guida.feedaty.com/article/102-api-di-feedaty This example demonstrates how to correctly include the AccessToken in the Authorization header for API requests. The AccessToken is used to identify the merchant and their permissions for API calls. ```http POST HTTP/1.1 Host: api.feedaty.com Content-Type: application/json Authorization: OAuth 0d9b2c7d4d9c42688eab195cfce75292 ``` -------------------------------- ### Example of Feedaty Encrypted Credentials Source: https://guida.feedaty.com/article/102-api-di-feedaty This is an example of the Base64 encoded string representing the merchant's encrypted credentials, derived from the Merchant Code, Request Token, and API Client Secret. ```text BASE64(188727178:SHA256(5f8d57a9e0f44467bf8a0ed33161e47e84d10d9d9def4bfdae661108893 ``` ```text MTg4NzI3MTc4OjA5ZDg2NWFlOWM4NDdkYmU4MWUyYjBkMjEzMGI0NjQwNmY4YjM3MjE0YWU2YTg5ZTUwZWE2NDU0ZWVmMjc1NzY ``` -------------------------------- ### Order Insertion API Response Example (JSON) Source: https://guida.feedaty.com/article/102-api-di-feedaty This snippet shows an example JSON response from the Feedaty API after attempting to insert orders. It includes a 'Success' flag, a 'Message' for operational status, and a 'Data' array containing details for each processed order and its products, including OrderID, SKU, and Status. ```JSON { "Success": true, "Message": "Some issues was found during orders processing.", "Data": [ { "OrderID": "NA-004", "SKU": "426865031d", "Status": 201 }, { "OrderID": "NA-004", "SKU": "111140495463", "Status": 201 }, { "OrderID": "NA-005", "SKU": "111140495463", "Status": 1 } ] } ``` -------------------------------- ### Call Feedaty API Reviews Get Endpoint (HTTP) Source: https://guida.feedaty.com/article/102-api-di-feedaty Example of an HTTP GET request to the Feedaty API's Reviews Get endpoint. It requires specific headers like Host, Content-Type, and Authorization, along with query parameters 'row' and 'count'. ```HTTP GET /Reviews/Get HTTP/1.1 Host: api.feedaty.com Content-Type: application/x-www-form-urlencoded Authorization: OAuth be7c51cf1dae4ae9ad82f3f7a075714d row=0&count=2 ``` -------------------------------- ### Feedaty API Authentication Response Example Source: https://guida.feedaty.com/article/102-api-di-feedaty This code snippet shows an example of a successful authentication response from the Feedaty API. It includes details like RequestToken, AccessToken, and expiration time. The 'Success' property indicates the operation's status. ```json HTTP/1.1 200 OK Server: ngix/1.2.0 Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Content-Type: application/json; charset=utf-8 Expires: -1 Date: Tue, 13 Aug 2013 13:13:14 GMT Content-Length: 164 { "RequestToken": "5f8d57a9e0f44467bf8a0ed33161e47e", "AccessToken": "", "Expires": 300, "RefreshToken": null, "Scope": null, "Error": null, "Success": true, "RequireSsl": false } ``` -------------------------------- ### Filtering Reviews with Multiple Parameters Source: https://guida.feedaty.com/article/102-api-di-feedaty This example demonstrates how to construct a query string to filter reviews using multiple parameters such as row, count, customer email, from date, and language. ```url row=0&count=10&customerEmail=mariorossi@email.com&fromDate=2013/01/01&lang=it ``` -------------------------------- ### Fetch Average Ratings and Review Counts Source: https://guida.feedaty.com/article/102-api-di-feedaty This example shows a GET request to the Feedaty API to retrieve average merchant/product ratings and published review counts. It includes optional filters for date ranges, product SKUs, and location codes. ```http GET /Reviews/AverageRatings HTTP/1.1 Host: api.feedaty.com Content-Type: application/x-www-form-urlencoded Authorization: OAuth ff476ee563d044d4b746368e1023442f ``` -------------------------------- ### Get Product Reviews (HTML) Source: https://guida.feedaty.com/article/101-piattaforma-whitelabel Retrieves raw HTML data for a specific product's reviews. This endpoint is useful for displaying individual product ratings and feedback directly on product pages, allowing for flexible CSS styling. ```APIDOC ## GET /gen ### Description Retrieves raw HTML content for a specific product's reviews. ### Method GET ### Endpoint `http://white.stage.zoorate.com/gen` or `https://white.zoorate.com/gen` ### Query Parameters - **w** (string) - Required - Usually set to `wp`. - **MerchantCode** (string) - Required - Your unique Feedaty merchant code. - **sku** (string) - Required - The SKU or ProductID of the product for which to fetch reviews. - **t** (string) - Required - Set to `product2` to fetch product reviews. - **pp** (integer) - Optional - Number of reviews to display per page. Defaults to 20. - **n** (integer) - Optional - Page number for pagination. Defaults to 1. ### Request Example `GET https://white.zoorate.com/gen?w=wp&MerchantCode=YOUR_MERCHANT_CODE&sku=PRODUCT_SKU&t=product2&pp=4&n=1` ### Response #### Success Response (200) - **html_content** (string) - Raw HTML content of the product reviews. ``` -------------------------------- ### Example CSV Data for Email Body Source: https://guida.feedaty.com/article/106-invio-dati-con-csv This CSV snippet demonstrates the required format for order data sent in email bodies. It includes essential fields like Order ID, User ID, Email, Date, Product ID, Name, Brand, Url, and Image. Ensure data conforms to this structure for successful processing. ```csv "Order ID","UserID","E-mail","Date","Product ID","Name","Brand","Url","Image" "2410","827","mariorossi@email.com","01/12/2012 09:39:46","247","Il nome della rosa","Edizioni AB","http://www.shopsite.com/ilnomedellarosa","http:/www.shopsite.com/thumbs/247.png" "2410","827","mariorossi@email.com","01/12/2012 09:39:46","903","Dieci piccoli indiani","Gialli d’Autore","http://www.shopsite.com/diecipiccoliindiani","http:/www.shopsite.com/thumbs/903.png" "8447","1388","gianniverdi@email.com","01/02/2013 16:40:18","887","Il ritratto di Dorian Grey","Grandi Classici","http://www.shopsite.com/doriangrey","http://www.shopsite.com/thumb/887.png" ``` -------------------------------- ### GET /Reviews/Get Source: https://guida.feedaty.com/article/102-api-di-feedaty Retrieves reviews from the Feedaty platform. You can specify the number of rows and count for pagination. ```APIDOC ## GET /Reviews/Get ### Description Retrieves reviews from the Feedaty platform. You can specify the number of rows and count for pagination. ### Method GET ### Endpoint /Reviews/Get ### Parameters #### Query Parameters - **row** (integer) - Optional - The starting row for the results. - **count** (integer) - Optional - The number of reviews to retrieve. ### Request Example ```http GET /Reviews/Get?row=0&count=2 HTTP/1.1 Host: api.feedaty.com Content-Type: application/x-www-form-urlencoded Authorization: OAuth be7c51cf1dae4ae9ad82f3f7a075714d ``` ### Response #### Success Response (200) - **reviews** (array) - A list of review objects. - **id** (integer) - The unique identifier for the review. - **rating** (integer) - The rating given in the review (e.g., 1-5). - **comment** (string) - The text content of the review. - **date** (string) - The date the review was submitted (ISO format). #### Response Example ```json { "reviews": [ { "id": 123, "rating": 5, "comment": "Excellent product!", "date": "2023-10-27T10:00:00Z" }, { "id": 456, "rating": 4, "comment": "Good value for money.", "date": "2023-10-26T14:30:00Z" } ] } ``` ``` -------------------------------- ### Retrieve Orders with SKU Filter (HTTP) Source: https://guida.feedaty.com/article/102-api-di-feedaty This example demonstrates how to make an HTTP POST request to the Feedaty API to retrieve orders, specifically filtering by a given SKU. The request includes necessary headers like Content-Type and Authorization, and a JSON payload specifying the filter. ```http POST /Orders/Get HTTP/1.1 Host: api.feedaty.com Content-Type: application/json Authorization: OAuth be7c51cf1dae4ae9ad82f3f7a075714d { "Filters": { "SKU": "426865031d" } } ``` -------------------------------- ### GET /websites/guida_feedaty/reviews Source: https://guida.feedaty.com/article/102-api-di-feedaty Retrieves merchant and/or product reviews. Supports filtering by review type, customer email, customer ID, date range, SKU, source, and language. ```APIDOC ## GET /websites/guida_feedaty/reviews ### Description Retrieves merchant and/or product reviews. Supports filtering by review type, customer email, customer ID, date range, SKU, source, and language. ### Method GET ### Endpoint /websites/guida_feedaty/reviews ### Parameters #### Query Parameters - **retrieve** (string) - Optional - Specifies the type of reviews to retrieve: 'onlymerchantreviews', 'onlyproductreviews', or both (default). - **customerEmail** (string) - Optional - Filters reviews by the customer's email address. - **customerID** (string) - Optional - Filters reviews by the customer ID. - **fromDate** (string) - Optional - Filters reviews released on or after the specified date (format: yyyy/mm/dd). - **toDate** (string) - Optional - Filters reviews released on or before the specified date (format: yyyy/mm/dd). - **sku** (string) - Optional - Filters reviews related to a specific product SKU. - **source** (string) - Optional - Filters reviews imported from a specific platform (e.g., 'ebay'). - **lang** (string) - Optional - Filters reviews by language code (e.g., 'it', 'en', 'fr', 'es', 'de'). ### Request Example ``` GET /websites/guida_feedaty/reviews?retrieve=onlymerchantreviews&customerEmail=mariorossi@email.com&fromDate=2014/01/01 ``` ### Response #### Success Response (200) - **Success** (boolean) - Indicates if the request was successful. - **Message** (string) - Contains any messages related to the request (null if none). - **Data** (object) - Contains the review data. - **Reviews** (array) - An array of merchant review objects. - **ID** (integer) - The unique identifier for the review. - **Released** (string) - The date the review was released (format: \/Date(timestamp)\/). - **CustomerID** (string) - The customer's unique identifier. - **CustomerEmail** (string) - The customer's email address. - **CustomerName** (string) - The customer's name. - **OrderID** (string) - The order ID associated with the review. - **MerchantRating** (integer) - The rating given to the merchant. - **MerchantReview** (string) - The merchant review text. - **FeedatyPageURL** (string) - The URL to the review on Feedaty. - **ThumbsFeedback** (object) - Feedback on the review's helpfulness. - **Up** (integer) - Number of thumbs up. - **Down** (integer) - Number of thumbs down. - **ProductsReviews** (array or null) - An array of product review objects associated with the order, or null if none. - **SKU** (string) - The product SKU. - **Brand** (string) - The product brand. - **Name** (string) - The product name. - **ThumbnailURL** (string) - URL for the product thumbnail. - **URL** (string) - URL for the product page. - **FeedatyPageURL** (string) - URL to the product review on Feedaty. - **Rating** (integer) - The rating given to the product. - **Review** (string) - The product review text. - **ThumbsFeedback** (object) - Feedback on the product review's helpfulness. - **Up** (integer) - Number of thumbs up. - **Down** (integer) - Number of thumbs down. - **Size** (string) - The product size. - **Color** (string) - The product color. - **OtherQuestions** (array or null) - An array of other questions asked and their ratings/values, or null. - **Question** (string) - The question asked. - **Rating** (integer) - The rating for the question. - **Value** (boolean) - The boolean value for a 'yes/no' question. - **Source** (string or null) - The source platform of the review. - **Language** (string) - The language code of the review. - **LocationCode** (string) - The location code associated with the review. - **TotalResults** (integer) - The total number of merchant reviews available. - **TotalProductReviews** (integer) - The total number of product reviews available. #### Response Example ```json { "Success": true, "Message": null, "Data": { "Reviews": [ { "ID": 86111, "Released": "\/Date(1382608357110)\/", "CustomerID": "mariorossi@email.com", "CustomerEmail": "mariorossi@email.com", "CustomerName": "Mario Rossi", "OrderID": "A7", "MerchantRating": 5, "MerchantReview": "eccellente", "FeedatyPageURL": "/feedaty/reviews/shopsite?review=806111", "ThumbsFeedback": { "Up": 0, "Down": 0 }, "ProductsReviews": [ { "SKU": "PROD1", "Brand": "", "Name": "iPod shuffle - Colore : Verde", "ThumbnailURL": "/app_themes/feedaty/images/place-holder.png", "URL": "http://shopsite/prestashop/index.php?id_product=2\u0026controller=product\u0026id_lang=1", "FeedatyPageURL": "/feedaty/reviews/shopsite/parmigiano700gr/reviews", "Rating": 5, "Review": "eccellente", "ThumbsFeedback": { "Up": 3, "Down": 0 }, "Size": "56GB", "Color": "Green" } ], "Source": null, "Language": "it-IT", "LocationCode": "MIL01" }, { "ID": 86113, "Released": "\/Date(1382608348343)\/", "CustomerID": "gianniverdi@email.com", "CustomerEmail": "gianniverdi@email.com", "CustomerName": "Gianni Verdi", "OrderID": "a9", "MerchantRating": 5, "MerchantReview": "Ottimo negozio, prezzi molto vantaggiosi.", "FeedatyPageURL": "/feedaty/reviews/shopsite?review=806113", "ThumbsFeedback": { "Up": 0, "Down": 0 }, "ProductsReviews": null, "OtherQuestions": [ { "Question": "Consegna", "Rating": 5 }, { "Question": "Servizio clienti", "Rating": 4 }, { "Question": "Sito web (semplicità e chiarezza)", "Rating": 3 }, { "Question": "Sistema di pagamento", "Rating": 5 }, { "Question": "Servizio di reso", "Rating": 3 }, { "Question": "Packaging", "Rating": 4 }, { "Question": "Lo consiglieresti ad un amico?", "Value": true } ], "Source": null, "Language": "it-IT", "LocationCode": "MIL01" } ], "TotalResults": 37, "TotalProductReviews": 50 } } ``` ``` -------------------------------- ### Get Company Reviews (HTML) Source: https://guida.feedaty.com/article/101-piattaforma-whitelabel Retrieves the latest 20 company reviews in raw HTML format. This allows for direct integration into your website's pages, enabling CSS-based layout customization without programming changes. ```APIDOC ## GET /gen ### Description Retrieves the latest company reviews in raw HTML format. ### Method GET ### Endpoint `http://white.stage.zoorate.com/gen` or `https://white.zoorate.com/gen` ### Query Parameters - **w** (string) - Required - Usually set to `wp`. - **MerchantCode** (string) - Required - Your unique Feedaty merchant code. - **t** (string) - Required - Set to `reviewsmerchant` to fetch company reviews. - **pp** (integer) - Optional - Number of reviews to display per page. Defaults to 20. - **n** (integer) - Optional - Page number for pagination. Defaults to 1. ### Request Example `GET https://white.zoorate.com/gen?w=wp&MerchantCode=YOUR_MERCHANT_CODE&t=reviewsmerchant&pp=4&n=1` ### Response #### Success Response (200) - **html_content** (string) - Raw HTML content of the company reviews. ``` -------------------------------- ### GET /websites/guida_feedaty Source: https://guida.feedaty.com/article/102-api-di-feedaty Retrieves aggregated rating data for merchants and products from the Feedaty platform. ```APIDOC ## GET /websites/guida_feedaty ### Description This endpoint retrieves aggregated rating data, including the number of ratings and average value, for both merchants and products associated with a specific website integration. ### Method GET ### Endpoint /websites/guida_feedaty ### Parameters #### Path Parameters None #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **Success** (boolean) - Indicates if the request was successful. - **Message** (string) - Returns null if successful, otherwise contains an error message. - **Data** (object) - Contains the rating data. - **Merchant** (object) - Rating information for the merchant. - **RatingsCount** (integer) - The total number of ratings received by the merchant. - **AverageValue** (float) - The average rating value for the merchant. - **Products** (object) - Rating information for the products. - **RatingsCount** (integer) - The total number of ratings received by products. - **AverageValue** (float) - The average rating value for products. #### Response Example ```json { "Success": true, "Message": null, "Data": { "Merchant": { "RatingsCount": 2553, "AverageValue": 4.9 }, "Products": { "RatingsCount": 1623, "AverageValue": 4.6 } } } ``` ``` -------------------------------- ### Feedaty API Request Token Response Source: https://guida.feedaty.com/article/102-api-di-feedaty This is an example JSON response from the Feedaty API after a successful Request Token request. It includes the RequestToken, AccessToken, Expires duration, and RefreshToken. ```json HTTP/1.1 200 OK Server: ngix/1.2.0 Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Content-Type: application/json; charset=utf-8 Expires: -1 Date: Tue, 13 Aug 2013 13:13:13 GMT Content-Length: 164 { "RequestToken": "5f8d57a9e0f44467bf8a0ed33161e47e", "AccessToken": null, "Expires": 300, "RefreshToken": "a8741a605307426d9e13df9d914ca5ba", "Scope": null, "Error": null, "Success": true,"RequireSsl": false } ``` -------------------------------- ### Reviews/Get Source: https://guida.feedaty.com/article/102-api-di-feedaty Retrieves published reviews for a merchant and/or products. Supports pagination and filtering. ```APIDOC ## GET /Reviews/Get ### Description Retrieves published reviews for the merchant and/or products. It supports parameters for pagination and filtering to return only the desired reviews. By default, a single call is limited to returning only the last 50 merchant and product reviews. To retrieve subsequent feedback, use the `row` and `count` filters for pagination. ### Method GET ### Endpoint /Reviews/Get ### Parameters #### Query Parameters - **row** (integer) - Optional - The starting row for pagination. - **count** (integer) - Optional - The number of reviews to return per page. Defaults to 50. ### Request Example ``` GET /Reviews/Get?row=50&count=10 ``` ### Response #### Success Response (200) - **Success** (boolean) - Indicates if the request was successful. - **Message** (string) - A message indicating the status of the operation. - **Data** (object) - Contains the retrieved reviews. - **Orders** (array) - List of orders, each containing: - **ID** (integer) - Internal ID for debugging purposes. - **OrderID** (string) - The order identifier. - **CustomerID** (string) - The customer identifier. - **CustomerEmail** (string) - The customer's email address. - **EntryDate** (string) - The date the order was registered in the zoorate platform. - **OrderDate** (string) - The date of the order. - **ScheduledDeliveryDate** (string) - The scheduled date for sending the survey email. - **SentDate** (string) - The actual date the survey email was sent. Null if not sent. - **Platform** (string) - The platform or method used to enter the order. - **OrderDetails** (array) - Details of the order items: - **SKU** (string) - Stock Keeping Unit. - **Brand** (string) - Brand of the product. - **Name** (string) - Name of the product. - **ThumbnailURL** (string) - URL of the product thumbnail. - **URL** (string) - URL of the product. - **TotalResults** (integer) - The total number of results found. ``` -------------------------------- ### Reviews - Retrieve Source: https://guida.feedaty.com/article/102-api-di-feedaty Retrieve currently published reviews. Supports filtering by product code, customer details, and date range, with pagination. ```APIDOC ## GET /reviews ### Description Retrieves currently published reviews. Supports filtering by product code, customer information (email or ID), and a date range. Pagination is available for handling large result sets. ### Method GET ### Endpoint /reviews ### Parameters #### Headers - **Authorization** (string) - Required - Bearer #### Query Parameters - **product_code** (string) - Optional - Filter by a specific product code. - **customer_id** (string) - Optional - Filter by customer ID. - **customer_email** (string) - Optional - Filter by customer email address. - **start_date** (string) - Optional - Filter for reviews released within a date range (YYYY-MM-DD). - **end_date** (string) - Optional - Filter for reviews released within a date range (YYYY-MM-DD). - **page** (integer) - Optional - Page number for pagination. - **limit** (integer) - Optional - Number of results per page for pagination. ### Response #### Success Response (200) - **reviews** (array) - A list of review objects matching the criteria. - Each review object contains details like `review_id`, `product_code`, `customer_email`, `rating`, `comment`, `review_date`, etc. - **pagination** (object) - Pagination information including `total_items`, `current_page`, `total_pages`. #### Response Example ```json { "reviews": [ { "review_id": "REV789", "product_code": "PROD456", "customer_email": "customer@example.com", "rating": 5, "comment": "Excellent product!", "review_date": "2023-10-26T12:00:00Z" } ], "pagination": { "total_items": 50, "current_page": 1, "total_pages": 5 } } ``` ``` -------------------------------- ### Example Feedaty API Order Response (JSON) Source: https://guida.feedaty.com/article/102-api-di-feedaty This snippet shows a typical JSON response from the Feedaty API when retrieving order information. It includes standard order details along with platform-specific fields such as internal ID, entry date, and delivery/sent dates for survey emails. The 'Platform' field indicates how the order was integrated. ```json { "Success": true, "Message": "Completed successfully", "Data": { "Orders": [{ "ID": 9877, "OrderID": "NA-004", "CustomerID": "EC-001", "CustomerEmail": "antonio.bianchi@hotmail.com", "EntryDate": "\/Date(1376058583490)\/", "OrderDate": "\/Date(1375882140000)\/", "ScheduledDeliveryDate": "\/Date(1376058643440)\/", "SentDate": "\/Date(1376284658673)\/", "Platform": "Feedaty API", "OrderDetails": [{ "SKU": "111140495463", "Brand": "Apple", "Name": "Apple iPhone 5 (Latest Model) - 32GB - White \u0026 Silver (Verizon) Smartphone", "ThumbnailURL":"http://pics.ebaystatic.com/aw/pics/viewitem/imgSoldCvi_96x96.png", "URL": "http://www.ebay.com/itm/Apple-iPhone-5-Latest-Model-32GB-White-Silver-Verizon-Smartphone-/111140495463" }, { "SKU": "426865031d", "Brand": "Amazon", "Name": "THE COMPLETE SHERLOCK HOLMES", "ThumbnailURL":"http://ecx.imagesamazon.com/images/I/41LO0VIDDCL._AA258_PIkin4,BottomRight,-32,22_AA280_SH20_OU29_.jpg", "URL":"http://www.amazon.it/gp/product/B004LE7PCM/ref=s9_qpp_gw_d99_g351_ir06pf_rd_m=A11IL2PNWYJU7H\u0026pf_rd_s=center-3\u0026pf_rd_r=1YFCTJ4NH9W2WYYFT0XD\u0026pf_rd_t=101\u0026pf_rd_p=312234487\u0026pf_rd_i=426865031" }] }], "TotalResults": 1 } } ```