Skip to content

Overstock Product Data API

Scrape detailed Overstock product information instantly with a simple API call

🆕: February 12, 2025

A GET request to our /api/getter/?platform="overstock_detail" endpoint allows you to scrape product data for any product listing URL on Overstock.com in real-time.

Example

Here's an example showcasing how you can scrape product data for any product on Overstock.com using its URL. For this example, we use the URL of this product.

1
curl 'https://data.unwrangle.com/api/getter/?platform=overstock_detail&url=https%3A%2F%2Fwww.overstock.com%2Fproducts%2Fcaistor-coastal-coral-reef-pattern-tropical-area-rug-30831454&api_key=API_KEY'
1
2
3
4
5
import requests

url = 'https://data.unwrangle.com/api/getter/?platform=overstock_detail&url=https%3A%2F%2Fwww.overstock.com%2Fproducts%2Fcaistor-coastal-coral-reef-pattern-tropical-area-rug-30831454&api_key=API_KEY'
response = requests.get(url)
print(response.json())
1
2
3
const response = await fetch('https://data.unwrangle.com/api/getter/?platform=overstock_detail&url=https%3A%2F%2Fwww.overstock.com%2Fproducts%2Fcaistor-coastal-coral-reef-pattern-tropical-area-rug-30831454&api_key=API_KEY')
const data = await response.json()
console.log(data)
1
2
3
4
5
6
<?php
$url = 'https://data.unwrangle.com/api/getter/?platform=overstock_detail&url=https%3A%2F%2Fwww.overstock.com%2Fproducts%2Fcaistor-coastal-coral-reef-pattern-tropical-area-rug-30831454&api_key=API_KEY';
$response = file_get_contents($url);
$data = json_decode($response, true);
print_r($data);
?>
1
2
3
4
5
6
require 'net/http'
require 'uri'

uri = URI.parse('https://data.unwrangle.com/api/getter/?platform=overstock_detail&url=https%3A%2F%2Fwww.overstock.com%2Fproducts%2Fcaistor-coastal-coral-reef-pattern-tropical-area-rug-30831454&api_key=API_KEY')
response = Net::HTTP.get(uri)
puts response

Query Parameters

As you can see in the example above, our endpoint needs the following query parameters:

Product URL

url

Required

Product listing's URL on Overstock.com. Remove unnecessary query parameters and encode the URL.

Other Required Parameters

platform

Required

Specifies the scraping engine you wish to invoke. In this case, the value should be overstock_detail.

api_key

Required

Your account's token—which can be obtained by signing up here.

Note

The value of the query parameter url must be URL or percent encoded. If you're using Python, this can be done with the function urlencode.

Results

The response will include the following attributes for the product:

Attributes Returned Data Type Information Represented
name string Name of product listing
brand string Product's brand name
url string Overstock URL of the product
images list List containing URLs of the product images
main_image string URL of the main product image
description string Description of product listing
rating float Average rating of product
total_ratings int No. of ratings received
total_reviews int No. of reviews received
categories list List of categories the product belongs to
specifications list Product's specifications
features list Product's features
dimensions list Product's dimensions
variants list Product variants
reviews list Product reviews
listing_id string Overstock.com listing ID of product listing
price float Price of the product
currency string Currency of the price
currency_symbol string Currency symbol
max_quantity int Maximum quantity of the product that can be purchased
variant_id string Overstock variant ID of the product
country_of_origin string Country of origin of the product

Response Example

Here's the response you can expect to receive for the request showcased above:

{
    "success": true,
    "product_url": "https://www.overstock.com/products/caistor-coastal-coral-reef-pattern-tropical-area-rug-30831454",
    "result_count": 1,
    "detail": {
        "name": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
        "brand": "Balta",
        "url": "https://www.overstock.com/products/caistor-coastal-coral-reef-pattern-tropical-area-rug-30831454",
        "description": "Bring the beauty of the ocean to your home with the Caistor Coastal Coral Reef Pattern Tropical Area Rug. Plush and velvety soft, this rug offers both luxurious comfort and stylish design. Its low pile adds a modern touch while the coastal and nautical patterns create a calming ambiance in any space. Highly durable and easy to care for, this rug is perfect for high-traffic areas and is kid and pet friendly. Add a rug pad for extra cushioning and to keep it firmly in place.Features:  Soft and durable polypropylene construction  Easy care and maintenance  Kid and pet friendly  Non-shedding  Highly suitable for high traffic areas  Coastal and nautical designs  Low pile for a modern look  Latex-free backing  Vacuum without beater bar/rotating brush; spot clean with mild detergent  Oeko-Tex Certified for safety and environmental standards\n",
        "listing_id": "9221605687455",
        "price": 82.01,
        "currency": "USD",
        "currency_symbol": "$",
        "rating": 4.72,
        "total_ratings": 329,
        "max_quantity": 7,
        "variant_id": "57319642497183",
        "categories": [
            "Rugs",
            "Area Rugs"
        ],
        "main_image": "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_817a7e98-b74d-4fbb-82ca-65c032d2899f.jpg?v=1737573484",
        "images": [
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_57c83a4f-b8b2-4326-8988-d97382c557d2.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_5e1b3082-9833-4d6e-abe4-886f53652f89.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_922b4308-d81d-4c11-bcc0-a1b54c60f6e3.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_edef9bcb-fdd5-48eb-8297-c443344110af.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_9961e199-122b-4b21-9f54-2c039ddfbc25.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_7e7aaa5d-ebf2-4c9d-a065-8c15fa579be8.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug_310b683b-a944-465f-aff7-1f1cc7e0124c.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug_acc54525-e402-403e-8296-1d92e19a20bd.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug_bfc81bb1-9e3a-499c-b5a4-df5355f93831.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug_7a458515-c816-4a4a-9601-3027ef837d8d.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_817a7e98-b74d-4fbb-82ca-65c032d2899f.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_0f8dfb52-a4bc-4209-b0cd-c38742171ea3.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_f3111acd-c3a1-488f-ba29-90713cc4c667.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_1bb2650d-5f8e-465d-ade1-a29c199c8062.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_b313a283-5339-485c-905f-fcfb0052213f.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_a0820d20-1fd5-4cec-84e2-1d108c665b4b.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_c36e0aae-87ad-45f7-834b-135aa2e43f45.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_0a28eb48-1ff9-4f76-aa52-15a79c71316f.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_bf546b39-1eb1-4212-9ee9-73cd22d335df.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_4fe213ae-cf88-4611-9c24-d623077d918f.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_076dd3a8-c586-439d-8a2c-2d7199951aa5.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_a90b3067-a0c3-4ab9-864e-41d9a9d5ed60.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_79b91334-3d78-4323-b01e-7979c2a5c828.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_94e5f733-7c1a-4ab4-8e2b-9a78d8d58fcb.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_c6e9aab7-43b8-4c8b-afc8-e960132d9125.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_cbc75743-2f51-44a1-99f9-01caa1312e88.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_d9450973-5185-4191-ad75-84f0e33625d7.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_0936ec7e-06dc-4d49-a431-aaf112f78b81.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_43b7c5a4-02d1-492b-8d40-19a96ba97f38.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_4ba52d5d-82ef-427a-91be-8d4d4c2a644c.jpg",
            "https://www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_e70ebb2a-ddeb-455c-9a5c-fcd6f9b1b69e.jpg"
        ],
        "specifications": [
            {
                "name": "Style",
                "value": [
                    "Nautical &amp; Coastal",
                    "Tropical"
                ]
            },
            {
                "name": "Material",
                "value": [
                    "Polypropylene"
                ]
            },
            {
                "name": "Pattern",
                "value": [
                    "Abstract",
                    "Nature"
                ]
            },
            {
                "name": "Feature",
                "value": [
                    "Latex Free"
                ]
            },
            {
                "name": "Weave Type",
                "value": [
                    "Machine-Made"
                ]
            },
            {
                "name": "Color",
                "value": [
                    "Blue",
                    "Cream",
                    "Green",
                    "Grey",
                    "Ivory",
                    "Off-White",
                    "Tan",
                    "White"
                ]
            },
            {
                "name": "Pile Height",
                "value": [
                    "0.25 - 0.5 inch"
                ]
            },
            {
                "name": "Product Features",
                "value": [
                    "Pet Friendly",
                    "Stain Resistant"
                ]
            },
            {
                "name": "Rugs by Room",
                "value": [
                    "Bedroom",
                    "Dining Room",
                    "Living Room"
                ]
            },
            {
                "name": "Shape",
                "value": [
                    "Rectangle",
                    "Runner"
                ]
            },
            {
                "name": "Dimensions",
                "value": [
                    "83.86 In. L X 62.99 In. W X 0.45 In. H"
                ]
            },
            {
                "name": "Model Number",
                "value": [
                    "3008266"
                ]
            }
        ],
        "features": [],
        "dimensions": [],
        "variants": [
            {
                "price": 82.01,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642497183",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_817a7e98-b74d-4fbb-82ca-65c032d2899f.jpg?v=1737573484",
                "sku": "35636300-000-000",
                "variant_title": "Medium Grey / 5'3\" x 7'"
            },
            {
                "price": 45.04,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642529951",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_a0820d20-1fd5-4cec-84e2-1d108c665b4b.jpg?v=1737573485",
                "sku": "35636300-000-001",
                "variant_title": "Light Blue / 2'7\" x 7' Runner"
            },
            {
                "price": 150.44,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642562719",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_076dd3a8-c586-439d-8a2c-2d7199951aa5.jpg?v=1737573484",
                "sku": "35636300-000-002",
                "variant_title": "Light Blue / 7'10\" x 10'"
            },
            {
                "price": 50.24,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642595487",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_a90b3067-a0c3-4ab9-864e-41d9a9d5ed60.jpg?v=1737573485",
                "sku": "35636300-000-003",
                "variant_title": "Grey / 2'7\" x 7' Runner"
            },
            {
                "price": 49.99,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642628255",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_817a7e98-b74d-4fbb-82ca-65c032d2899f.jpg?v=1737573484",
                "sku": "35636300-000-004",
                "variant_title": "Medium Grey / 2' x 7' Runner"
            },
            {
                "price": 183.67,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642661023",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_a90b3067-a0c3-4ab9-864e-41d9a9d5ed60.jpg?v=1737573485",
                "sku": "35636300-000-005",
                "variant_title": "Grey / 7'10\" x 10'"
            },
            {
                "price": 54.39,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642693791",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_d9450973-5185-4191-ad75-84f0e33625d7.jpg?v=1737573485",
                "sku": "35636300-000-006",
                "variant_title": "Blue/White / 2'7\" x 7' Runner"
            },
            {
                "price": 160.64,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642726559",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_817a7e98-b74d-4fbb-82ca-65c032d2899f.jpg?v=1737573484",
                "sku": "35636300-000-007",
                "variant_title": "Medium Grey / 7'10\" x 10'"
            },
            {
                "price": 76.92,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642759327",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_57c83a4f-b8b2-4326-8988-d97382c557d2.jpg?v=1737573485",
                "sku": "35636300-000-008",
                "variant_title": "Blue / 5'3\" x 7'"
            },
            {
                "price": 187.22,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642792095",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_d9450973-5185-4191-ad75-84f0e33625d7.jpg?v=1737573485",
                "sku": "35636300-000-009",
                "variant_title": "Blue/White / 7'10\" x 10'"
            },
            {
                "price": 90.48,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642824863",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_a90b3067-a0c3-4ab9-864e-41d9a9d5ed60.jpg?v=1737573485",
                "sku": "35636300-000-010",
                "variant_title": "Grey / 5'3\" x 7'"
            },
            {
                "price": 47.77,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642857631",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_57c83a4f-b8b2-4326-8988-d97382c557d2.jpg?v=1737573485",
                "sku": "35636300-000-011",
                "variant_title": "Blue / 2'7\" x 7' Runner"
            },
            {
                "price": 77.81,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642890399",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_076dd3a8-c586-439d-8a2c-2d7199951aa5.jpg?v=1737573484",
                "sku": "35636300-000-012",
                "variant_title": "Light Blue / 5'3\" x 7'"
            },
            {
                "price": 90.5,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642923167",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_d9450973-5185-4191-ad75-84f0e33625d7.jpg?v=1737573485",
                "sku": "35636300-000-013",
                "variant_title": "Blue/White / 5'3\" x 7'"
            },
            {
                "price": 46.39,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642955935",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_817a7e98-b74d-4fbb-82ca-65c032d2899f.jpg?v=1737573484",
                "sku": "35636300-000-014",
                "variant_title": "Medium Grey / 2'7\" x 7' Runner"
            },
            {
                "price": 131.24,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319642988703",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Print-Area-Rug_57c83a4f-b8b2-4326-8988-d97382c557d2.jpg?v=1737573485",
                "sku": "35636300-000-015",
                "variant_title": "Blue / 7'10\" x 10'"
            },
            {
                "price": 185.49,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319643021471",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug_310b683b-a944-465f-aff7-1f1cc7e0124c.jpg?v=1737573486",
                "sku": "35636300-000-016",
                "variant_title": "Tan / 7'10\" x 10'"
            },
            {
                "price": 98.99,
                "currency_code": "USD",
                "title": "Caistor Coastal Coral Reef Pattern Tropical Area Rug",
                "vendor": "Balta",
                "id": "57319643054239",
                "image_url": "//www.overstock.com/cdn/shop/files/Caistor-Coastal-Coral-Reef-Pattern-Tropical-Area-Rug_310b683b-a944-465f-aff7-1f1cc7e0124c.jpg?v=1737573486",
                "sku": "35636300-000-017",
                "variant_title": "Tan / 5'3\" x 7'"
            }
        ],
        "reviews": [
            {
                "name": "Ann TX",
                "headline": "Durable Rug",
                "comments": "I've had this rug for awhile now, and it has proven itself in every way. It's made from a high-quality, tightly woven material that feels soft but can handle a lot of wear and tear. With kids and pets constantly running across it, spills, and heavy foot traffic, it's held up incredibly well with no signs of fraying or discoloration. I've even noticed that it doesn't show dirt as much, and cleaning it is a breeze – a quick vacuum does the job, and occasional spot-cleaning has kept it looking new.\n\nWhat really stands out is the rug's grip. It stays in place, even on hardwood, so I don't have to worry about anyone slipping on it. The colors have stayed vibrant, and it hasn't flattened out in high-traffic areas, which is a testament to its durability. I'd highly recommend this rug for anyone looking for something stylish yet built to last.",
                "rating": 5,
                "helpful_votes": 1,
                "not_helpful_votes": 0,
                "helpful_score": 1961,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "Nancy",
                "headline": "Just what I was looking for.",
                "comments": "I liked the color as it wasn't too blue/green.  The thickness was just what I wanted for my great room.",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 1348,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "Andrea W",
                "headline": "Love the color; brings the room together!",
                "comments": "Great quality, not super thin, exceptional price too!  Love it!",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 1205,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "Andrea F.",
                "headline": "Runner",
                "comments": "It looks just like the picture when you receive it. Nice plush runner but the color is difficult to match with other items in a room. This was placed in a spare bedroom",
                "rating": 4,
                "helpful_votes": 1,
                "not_helpful_votes": 0,
                "helpful_score": 1491,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "carynt24",
                "headline": "5 Stars",
                "comments": "I love this rug! My only complaint is that it is definitely lighter than what appears on the website, more of a lighter silvery-blue. But it has a great presence, with the large pattern. Would definitely recommend!",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 2561,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "Jeri C.",
                "headline": "5 Stars",
                "comments": "We now have 8 of these rugs, various sizes. We love them!! They are soft, thick enough, and the color is very soothing. The rugs were sent fairly quickly. Continuing to buy products from Bed Bath and Beyond!!",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 1553,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "OstkUser3964372",
                "headline": "Great addition to our home",
                "comments": "Rug brings the beach inside. The colors make the room pop!",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 1181,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "OstkUser4564716",
                "headline": "Beautiful beach themed rug",
                "comments": "This is a Beautiful rug that I purchased to go under a king size bed in my beach condo. The colors and coral reef pattern is beautiful! I've had it 3 years and it has held up pretty well.",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 2522,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "OstkUser6173525",
                "headline": "Coastal vibes",
                "comments": "Good quality and fits perfectly with my bathroom decor.",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 1166,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            },
            {
                "name": "Lauren B.",
                "headline": "5 Stars",
                "comments": "Beautiful rug! we use it in our beach place! We have received many compliments from our guests as well as friends and family. The quality is better than expected!",
                "rating": 5,
                "helpful_votes": 0,
                "not_helpful_votes": 0,
                "helpful_score": 1480,
                "is_staff_reviewer": false,
                "is_verified_buyer": true,
                "is_verified_reviewer": true
            }
        ],
        "total_reviews": 329,
        "country_of_origin": "US"
    },
    "remaining_credits": 1904556.0
}

Request Cost

10 credits are deducted for each successful request

Support

If you want to add a parameter to our response, or have any question or feedback, please write to us at support@unwrangle.com