Comment on page
Ebay Product
Scrape eBay products in real time with the Ebay API.
To enable this feature, set the
type=product
parameter.The Ebay Product feature returns a JSON object containing data related to the scraped eBay product. Among others, you will get an overview of:
auction
product
categories
offers
rating
reviews
seller
shipping
The Ebay Product feature only takes one specific parameter:
Parameter | Type | Description |
---|---|---|
epid
required | string | The ID of the eBay product you want to scrape (also knows as EPID). |
url
required | string | The URL of the eBay product you want to scrape. The epid and url parameter cannot be used at the same time. |
Your full GET request should then be sent to the following address:
https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=<EPID>
Ebay identifies products by the EPID (or the Ebay Product Identification). Our API uses the same identifier to scrape an eBay product. For convenience, we will refer to this identifier as ID.
To get the ID of an eBay product, first navigate to its page. The ID of a product can be extracted straight from the URL. The structure of an eBay product's URL is:
https://<EBAY_DOMAIN>/itm/<EPID>
cURL
NodeJS
Python
PHP
Go
Java
.NET
Ruby
curl --request GET --url "https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770"
const http = require("https");
const options = {
"method": "GET",
"hostname": "serpapi.webscrapingapi.com",
"port": null,
"path": "/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
import requests
API_KEY = '<YOUR_API_KEY>'
SCRAPER_URL = 'https://serpapi.webscrapingapi.com/v1'
PARAMS = {
"api_key": API_KEY,
"engine": "ebay",
"type": "product",
"epid": "235022741770"
}
response = requests.get(SCRAPER_URL, params=PARAMS)
print(response.text)
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
HttpResponse<String> response = Unirest.get("https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770")
.asString();
var client = new RestClient("https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://serpapi.webscrapingapi.com/v1?api_key=<YOUR_API_KEY>&engine=ebay&type=product&epid=235022741770")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
{
"search_parameters": {
"ebay_domain": "ebay.com",
"engine": "ebay",
"ebay_url": "https://www.ebay.com/itm/235022741770",
"ebay_url_redirected": "https://vi.vipr.ebaydesc.com/ws/eBayISAPI.dll?ViewItemDescV4&item=235022741770&t=1694155101000&category=178985&seller=spreetail&excSoj=1&excTrk=1&lsite=0&ittenable=true&domain=ebay.com&descgauge=1&cspheader=1&oneClk=2&secureDesc=1",
"type": "product",
"epid": "235022741770",
"device": "desktop"
},
"product_results": {
"is_auction": false,
"product": {
"attributes": [
{
"name": "Condition",
"value": "New: A brand-new, unused, unopened, undamaged item in its original packaging (where packaging is applicable). Packaging should be the same as what is found in a retail store, unless the item is handmade or was packaged by the manufacturer in non-retail packaging, such as an unprinted box or plastic bag. See the seller's listing for full details. "
},
{
"name": "Country/Region of Manufacture",
"value": "Unknown"
},
{
"name": "Item Height",
"value": "1.1 In"
},
{
"name": "Item Weight",
"value": "1 Ib"
},
{
"name": "Item Width",
"value": "3.6 In"
},
{
"name": "UPC",
"value": "0638104017572"
},
{
"name": "EAN",
"value": "0638104017572"
},
{
"name": "Type",
"value": "Nutrient Meter"
},
{
"name": "Control Style",
"value": "Digital"
},
{
"name": "Item Diameter",
"value": "Data Logger"
},
{
"name": "Features",
"value": "Nutrient"
}
],
"description_external_url": "https://vi.vipr.ebaydesc.com/ws/eBayISAPI.dll?ViewItemDescV4&item=235022741770&t=1694155101000&category=178985&seller=spreetail&excSoj=1&excTrk=1&lsite=0&ittenable=true&domain=ebay.com&descgauge=1&cspheader=1&oneClk=2&secureDesc=1",
"images": [
{
"link": "https://i.ebayimg.com/images/g/VqEAAOSw2sNkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/Qk0AAOSwXdRkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/z5AAAOSwcURkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/bsoAAOSw~jtkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/ZDIAAOSwcBdkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/8ZUAAOSwr7xkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/JToAAOSwO2hkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/ACsAAOSwcqhkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/3foAAOSw1AtkbQfo/s-l1600.jpg"
},
{
"link": "https://i.ebayimg.com/images/g/9DwAAOSw08NkbQfo/s-l1600.jpg"
}
],
"image_count": 10,
"last_updated": "Sep 11, 2023 23:57:27 PDT",
"categories": [
{
"link": "https://www.ebay.com",
"name": "eBay"
},
{
"link": "https://www.ebay.com/b/Home-Garden/11700/bn_1853126",
"name": "Home & Garden"
},
{
"link": "https://www.ebay.com/b/Yard-Garden-Outdoor-Living-Items/159912/bn_1853607",
"name": "Yard, Garden & Outdoor Living"
},
{
"link": "https://www.ebay.com/b/Hydroponic-Supplies/43554/bn_7783902",
"name": "Hydroponics"
},
{
"link": "https://www.ebay.com/b/Fans-Filters-Environmental-Control-for-Hydroponics/260942/bn_7117585251",
"name": "Fans, Filters & Environmental Control"
},
{
"link": "https://www.ebay.com/b/Air-Ventilation-Extraction-for-Hydroponics/178985/bn_7486177",
"name": "Air Ventilation & Extraction"
},
{
"link": "https://www.ebay.com/p/17034909823",
"name": "See more Autopilot APCEM2 Hydroponic Desktop CO2 Monito..."
}
],
"brand": "Autopilot",
"epid": "235022741770",
"link": "https://www.ebay.com/itm/235022741770",
"model_number": "APCEM2",
"mpn": "APCEM2",
"primary_image": {
"link": "https://i.ebayimg.com/images/g/VqEAAOSw2sNkbQfo/s-l1600.jpg"
},
"title": "Autopilot APCEM2 Hydroponic Gardening CO2 RH Temperature Monitor and Data Logger",
"description": "Monitoring stats such as carbon dioxide, temperature, and relative humidity are imperative to growing healthy, strong plants in an indoor gardening system such as a grow room or greenhouse. Help keep those levels in check with the Autopilot Desktop CO2 Monitor and Data Logger. This monitor features a digital memory chart that shows and records stats over an adjustable 24-hour or 7-day period, so you can track trends. It has an audible alarm for low or high CO2 levels and a light that indicates if it's on target. View the charts from a weekly, daily, hourly, or per minute view. The LED display constantly shows readings for carbon dioxide, temperature, and relative humidity, and you can toggle between different types of plants to see ideal levels for each.",
"description_list": "Monitors carbon dioxide, relative humidity, and temperature of your grow room or greenhouse on a clear LED screen | Digital memory chart shows and records stats over an adjustable 24-hour or 7-day period | 2-channel low drift NDIR gas sensor and audible alarm for low or high CO2 levels | Green power supply is compatible with a standard smartphone charger | Trend Chart: Shows variable Min/Hr/Day/Wk for readings of CO2/RH/Temperature | Comes with 2 micro USB cables for power and USB AC adapter | Operating temperature: 32 to 122 degrees F | Hook-and-loop fastener along the back that attaches to an external battery pack (battery pack not included) | Multiple hanging options | Operating and storage relative humidity (RH): 0-95%, noncondensing | 50 ppm or +/- 5%, whichever is greater; accuracy over 3000 ppm, +/- 7%; repeatability, 20 ppm at 400 ppm (standard deviation of 10 readings in 1 minute); measurement range, 0-5000 ppm; display resolution, 1 ppm (1-1000), 5 ppm (1000-2000), 10 ppm (>2000); temp dependence, +/-0.1% of reading per degree Celsius or +/-2 ppm per degree Celsius, whichever is greater, referenced to 25 degrees C; pressure dependence, 0.13% of reading per mm Hg (corrected by user’s altitude input); response time, < 2 minutes for 63% of step change or <4.6 minutes for 90% step change; warm-up time, < 30 seconds | 1 degree F (+/- 0.5 degree C); response time, < 20 minutes (63%) | 5%; resolution, 1% on main reading, 0.1% on max min reading | Voltage: 120 volts | Dimensions (L x W x D): 4.7 x 3.6 x 1.1 inches | Weight: 1 pound | Warranty: 60-day warranty"
},
"condition": {
"description": "New: A brand-new, unused, unopened, undamaged item in its original packaging (where packaging is applicable). Packaging should be the same as what is found in a retail store, unless the item is handmade or was packaged by the manufacturer in non-retail packaging, such as an unprinted box or plastic bag. See the seller's listing for full details. ",
"raw": "New",
"name": "new",
"is_new": true,
"is_used": false
},
"offer": {
"price": 121.99,
"currency": "USD",
"price_discount_percent": 45,
"price_discounted": 98,
"price_is_discounted": true,
"price_regular": 219.99
},
"payment_methods": [
"PayPal",
"Google Pay",
"Visa",
"Master Card",
"American Express",
"Discover",
"Paypal Credit",
"eBay Mastercard"
],
"promotion": {
"why_buy": [
"Breathe easy. Returns accepted."
]
},
"rating": {
"score": 4.9,
"rating_count": 20,
"reviews_count": 12,
"summary": {
"five_star": 18,
"four_star": 2,
"three_star": 0,
"two_star": 0,
"one_star": 0
}
},
"related_products_also_viewed": [
{
"condition": null,
"epid": "115157418062",
"image": "https://i.ebayimg.com/thumbs/images/g/dtAAAOSwuZxhx9RM/s-l96.jpg",
"name": "Autopilot Desktop CO2 Monitor & Logger",
"price": "$99.00",
"price_additional_info": "+ $15.99 shipping",
"url": "https://www.ebay.com/itm/115157418062?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D20200818143230%26meid%3D0934c84792dd42879008b389661e6a7f%26pid%3D101224%26rk%3D1%26rkt%3D5%26sd%3D235022741770%26itm%3D115157418062%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DDefaultOrganicWebV9BertRefreshRanker%26brand%3DAutopilot&_trksid=p4429486.c101224.m-1&amdata=cksum%3A1151574180620934c84792dd42879008b389661e6a7f%7Cenc%3AAQAIAAABACYezfbTAbL71Cn2zZypiqFkVFHChWGIs0xkdyquuPAuMPI%252FtORUaJ0Eo4KUOYqgAV%252B8Kd9PxcFXMyIbMjJ32Z4IqxgGESHCRfqdNr9oDFg%252BL4ay57SBB2YuiPTcEugUNMT7Qx3ewwMsmzuMM8X12d0rzZRRAsEAwjj8NFN50Y%252BfeApYaFjFXws1EN2ZZK6ds%252F0wfSOCFLehyWSdquRtp05gIjX2zGi%252Fn4nNSfb%252B72nj8BQF46fSky%252FAomrg9rrvAeLC85WGTEhHpv5WKct%252FRdJIe%252Bt6qerONTJUZwNjgelXilEDuUAn8nMK6LUfwWauPPNAgPnCn2geAv3%252F%252FMUndb4%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": null,
"epid": "355023645666",
"image": "https://i.ebayimg.com/thumbs/images/g/8UcAAOSwQa1k-oz-/s-l96.jpg",
"name": "Autopilot Desktop CO2 Monitor Controller & Data Logger Carbon Dioxide NEW",
"price": "$79.99",
"price_additional_info": "+ $8.99 shipping",
"url": "https://www.ebay.com/itm/355023645666?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D20200818143230%26meid%3D0934c84792dd42879008b389661e6a7f%26pid%3D101224%26rk%3D2%26rkt%3D5%26sd%3D235022741770%26itm%3D355023645666%26pmt%3D0%26noa%3D1%26pg%3D4429486%26algv%3DDefaultOrganicWebV9BertRefreshRanker%26brand%3DAutopilot&_trksid=p4429486.c101224.m-1"
},
{
"condition": null,
"epid": "134379049575",
"image": "https://i.ebayimg.com/thumbs/images/g/s74AAOSwNMdjpLRd/s-l96.jpg",
"name": "Autopilot Data Logger & Desktop CO2 Monitor",
"price": "$119.99",
"price_additional_info": "Free shipping",
"url": "https://www.ebay.com/itm/134379049575?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D20200818143230%26meid%3D0934c84792dd42879008b389661e6a7f%26pid%3D101224%26rk%3D3%26rkt%3D5%26sd%3D235022741770%26itm%3D134379049575%26pmt%3D0%26noa%3D1%26pg%3D4429486%26algv%3DDefaultOrganicWebV9BertRefreshRanker%26brand%3DAutopilot&_trksid=p4429486.c101224.m-1"
},
{
"condition": null,
"epid": "145138305446",
"image": "https://i.ebayimg.com/thumbs/images/g/~hkAAOSw3wlkilwj/s-l96.jpg",
"name": "Autopilot APCEM2 Hydroponic Desktop CO2 Monitor and Data Logger - BRAND NEW!!!",
"price": "$89.99",
"price_additional_info": "+ $5.15 shipping",
"url": "https://www.ebay.com/itm/145138305446?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D20200818143230%26meid%3D0934c84792dd42879008b389661e6a7f%26pid%3D101224%26rk%3D4%26rkt%3D5%26sd%3D235022741770%26itm%3D145138305446%26pmt%3D0%26noa%3D1%26pg%3D4429486%26algv%3DDefaultOrganicWebV9BertRefreshRanker%26brand%3DAutopilot&_trksid=p4429486.c101224.m-1"
},
{
"condition": null,
"epid": "304972441654",
"image": "https://i.ebayimg.com/thumbs/images/g/SMAAAOSw0~Jkf74q/s-l96.jpg",
"name": "Autopilot APCEM2 Hydroponic Desktop CO2 Monitor and Data Logger - BRAND NEW!!!",
"price": "$93.88",
"price_additional_info": "$100.95 | Free shipping",
"url": "https://www.ebay.com/itm/304972441654?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D20200818143230%26meid%3D0934c84792dd42879008b389661e6a7f%26pid%3D101224%26rk%3D5%26rkt%3D5%26sd%3D235022741770%26itm%3D304972441654%26pmt%3D0%26noa%3D1%26pg%3D4429486%26algv%3DDefaultOrganicWebV9BertRefreshRanker%26brand%3DAutopilot&_trksid=p4429486.c101224.m-1"
}
],
"related_products_similar": [
{
"condition": "New",
"epid": "264962500686",
"image": "https://i.ebayimg.com/thumbs/images/g/9uQAAOSwXF1kknpv/s-l500.jpg",
"name": "Digital CO2 Temperature Controller Monitor Environmental Control Hydroponics Fan",
"price": "$112.69",
"price_additional_info": "$160.99 30% off | + $0.50 shipping | 30 sold",
"url": "https://www.ebay.com/itm/264962500686?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D1%26rkt%3D12%26sd%3D235022741770%26itm%3D264962500686%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A2649625006867bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaouAhlGzJN6BPXbyu5kw6H00OiRFBrXZVEAGITV8zfZrQjYJOz90BHLjfFLftlKl%252FEumsUcIAV82faqOhhY0vnxfHKEZ1J9m2JJtK3uD99TkTafYr%252FrCIQ4R1LAxramLp5najok%252F6awXhpDOfcFvTYYSVvFqp6qGdBnfRowl894a23i98nuCczD5%252FSpiqQn6hiU8QDxRlwyfUrrzj4rh0SczjYWUsm72dfd61Y6RfZA6G1GQj9A3lOvq9IIDG3EP3Han%252FSI%252BvoPhEoJReaHycGAAQ3ue%252BpoQ86fGXz17adbi0Q%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "115157418062",
"image": "https://i.ebayimg.com/thumbs/images/g/dtAAAOSwuZxhx9RM/s-l500.jpg",
"name": "Autopilot Desktop CO2 Monitor & Logger",
"price": "$99.00",
"price_additional_info": "+ $15.99 shipping | Seller with a 100% positive feedback",
"url": "https://www.ebay.com/itm/115157418062?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D2%26rkt%3D12%26sd%3D235022741770%26itm%3D115157418062%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3%26brand%3DAutopilot&_trksid=p4429486.c101195.m1851&amdata=cksum%3A1151574180627bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaotwMXjIRqUXPnBF1nQB2dueXxH8lanyuZ%252Fkk%252BB6x9wOEHAyHnf%252FgsqhpGiohEPCtgZpEr9xdQ7hzgsNwrkdmoH6hWhbgYkfqh%252F6%252BhT0Rp1vHmDmJ4o5%252Bag8D%252BR05soJI9nzTOD65PzkeYmdjzja%252B0DaUYFJ5QgoKHETEJtjN1%252Ff0g7UaxVZJ%252FkI2GqOAdE3m9VAKboeGcwneooCjlH1g%252FGRUPGYswNkc%252BZwW5DGDPSRuzkLFqqC9sjvw8zeQTwczSzQk9ofsP2svoXx1DqPLQZTKDnbXmpT1BS6VbN8yMEWOg%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "234641452934",
"image": "https://i.ebayimg.com/thumbs/images/g/IBcAAOSw~EZi5Vqe/s-l500.jpg",
"name": "Autopilot Desktop CO2 Monitor Controller & Data Logger Carbon Dioxide NEW",
"price": "$146.50",
"price_additional_info": "Free shipping | Top Rated Plus | Seller with a 99.9% positive feedback",
"url": "https://www.ebay.com/itm/234641452934?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D3%26rkt%3D12%26sd%3D235022741770%26itm%3D234641452934%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3%26brand%3DAutopilot&_trksid=p4429486.c101195.m1851&amdata=cksum%3A2346414529347bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaovw%252FebrX5nuQ%252BVkiwjNTrGkBvSTCWoB77TvdY9KEFt2sYFHATrytn6SlVPO4inNzK%252FriJGDjCcrpjBQZgklsjHHqZZ9YbOulwbnFSKV50TPfSjcW%252Bcm5%252FPCFUtdaQpSxU%252FA%252BQ6x91gDXGeIIK%252FX4igBdZT%252BiDwWAlJlQV85ZbtjC3XC7MTHZh3u%252FZQrLvor394zjqY9qTNGzhot3e1r0XtPT5Sa%252F4M1Bz9Lsp5jiTS0tiFd3IbjzWY%252Fj8t15IArWftDaYuDvR1K5kKZ5jNMJTPNDU9%252FqRLtVvX0%252Fy5bFd%252BZPw%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "394670197707",
"image": "https://i.ebayimg.com/thumbs/images/g/zM8AAOSwZ0hkkntz/s-l500.jpg",
"name": "INKBIRD Digital CO2 Controller Regulator ICC500T S01 Probe Greenhouse HVAC US",
"price": "$111.08",
"price_additional_info": "$160.99 31% off | + $0.50 shipping | Top Rated Plus",
"url": "https://www.ebay.com/itm/394670197707?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D4%26rkt%3D12%26sd%3D235022741770%26itm%3D394670197707%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A3946701977077bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaotD4oQIs00%252FH7Op4X41oyqzgoH7ITqjVevd5HYjDBf3S8mwcJ7giJ2kn7LOIe%252Fmzp2ejz3kRMt6aTnfUipG1Wm1l%252Bhh0kNQew5m%252BfZZ48lEzpdavof6Mk2HEjBJVBu0RJFenumVIQDLRhkOfZY0r0goGruGF%252FnC%252Buosqoi2e%252FaC8Gt9AAI7QGR2oAMf8gz8gMi9%252FjI9k0%252BMf%252BvCqut7qgJlm%252Bftc28TqoZC%252F4UVIQvUlaHkpX4D61GDTv5%252FbxhL%252BOUHael13Z0wu%252FcUSaw1mNY2G3%252BkD7H3DEFaotg9tTcWsA%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "224282244559",
"image": "https://i.ebayimg.com/thumbs/images/g/SCgAAOSwjyNiVAJJ/s-l500.jpg",
"name": "Inkbird Digital CO2 Controller Regulator Monitor Greenhouse Fan Air Ventilation",
"price": "$119.25",
"price_additional_info": "$159.00 25% off | Free shipping | 128 sold",
"url": "https://www.ebay.com/itm/224282244559?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D5%26rkt%3D12%26sd%3D235022741770%26itm%3D224282244559%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A2242822445597bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaoua3YWb9T%252FBXwii7bgU5%252FA6KCRj3ahVn6Ai6zB2kWdEq5xYNGFXTdukU5hnIpxCf83f6HtcghdD2V2axiXOT5PdsqmmtTte9tSjZvEvh1bcTLGAPN%252BszRcjn4iQB54t13q7Bd%252Fn1n6CmMdyuKVcqv6uOhknDFYcv9Gd56BM4Rj1A%252B505D1EkSCdjXDdIiZ5uovBABgrY%252B0TpcPe6Sm9ZAkBG%252BmXt5DzvAQIqTTc5xG9tqyinE5UKr9qHdLkxluyZHNdgfQyEueYlAg5fKSCsHnLJLvvVllPNak3V7IQCxd2yg%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "393236636767",
"image": "https://i.ebayimg.com/thumbs/images/g/mZUAAOSwIMdgbXHU/s-l500.jpg",
"name": "Inkbird Program CO2 Controller Regulator ICC500T Sensor Probe Greenhouse Plant",
"price": "$83.30",
"price_additional_info": "$119.00 30% off | Free shipping | 48 sold",
"url": "https://www.ebay.com/itm/393236636767?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D6%26rkt%3D12%26sd%3D235022741770%26itm%3D393236636767%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A3932366367677bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaot%252BxR4VYvh6lFeLicy3P%252B7DMgC%252FEamT3FpKWrQOyO2RO3A7PNRCZ3qX8jr276oflJX2MGss3lkLEw6tUCNo8dZrZdmuNUkNC4atP%252BWcVIr%252BzBDSCuuHuZG5lkBF%252FouqVMlGW5N6Ok90esZLkWnXjoCglxkjorj47SRN0HX6USiLGq75sAGEsd9goiKc0%252FeNlqh9LFfaSscM8NqKKWEZEAcimPYF0wXawEfDjPzm92Jra5CTnCT9R3ywnoi4uELcDJ0rfgSsGHQR0gVjOE1w2IfoQA9eKcJ8kDDbr5%252F7gjJllQ%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "Pre-owned",
"epid": "225459024738",
"image": "https://i.ebayimg.com/thumbs/images/g/-fwAAOSwZDtkAWYm/s-l500.jpg",
"name": "Hydrofarm APCEM2 Autopilot Desktop CO2 Monitor & Data Logger, Data, White/Blue",
"price": "$79.99",
"price_additional_info": "+ $12.55 shipping | Seller with a 100% positive feedback",
"url": "https://www.ebay.com/itm/225459024738?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D7%26rkt%3D12%26sd%3D235022741770%26itm%3D225459024738%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3%26brand%3DAutopilot&_trksid=p4429486.c101195.m1851&amdata=cksum%3A2254590247387bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaouZ7LS2CCChl6mn06KhFjryeiZWpZpmyMK%252Fv14bg9fkpkwGnRmgUNrclFXV8eyPhMC8qU02ZhTVLIybCtCK%252FSmWLltFKOgpS7taQ87DsgriSnlLA6uZwSlEEJgmGBBbRuO%252FBcNfux0Fi2JO3O3m%252FWSsECCo%252B66L3SetYJ5IaVeeywYLiBMt9DI%252FMD1v6TuUcqHo9ocQ5%252F5Z%252B4nE29YqeHKY9oDy5quRcVXUKOhfcsUC3IYyhy%252BC7cNX3mkZ%252B80uoMy%252FsT50%252BGo6QdeB0RQyUt9bYp8G3TkxT%252B3BMuJ1p9y39A%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "254946711234",
"image": "https://i.ebayimg.com/thumbs/images/g/VX8AAOSw4Apiut1Z/s-l500.jpg",
"name": "CO2 Monitor Exhaust Fan Controller Air Ventilation System Building Control PPM",
"price": "$113.59",
"price_additional_info": "$159.99 29% off | Free shipping | Seller with a 100% positive feedback",
"url": "https://www.ebay.com/itm/254946711234?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D8%26rkt%3D12%26sd%3D235022741770%26itm%3D254946711234%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A2549467112347bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaovYjWcnBL6wbkA40NYCqgCYC2n0LWCPJt2gamVDGmZdLurRRY5DMUe5pK5cb4pMdzTeWX7FueX2VsLcu2pOqsKprc0EcsPQrCdsH2opsNj2mt%252BaJtrP3L8j5IUn%252FHOaf1qEgoffLpTBEyK%252FJwWjuuh2aueDCW%252Bv4Z2aRGlQ%252BJWX4UN3pjirEI4lKv2xsTQ1nRbCQ7MMccejxmSbh5pzpc5%252B5%252BpTJ3kbZgcdLGW%252BJY3STFiiYxdxRr%252FD3G5Oh7UTf7LDHwU18kiAdrpMsehLFPfdOMBX5pfPeTkLlUGWq5YebA%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "112253559401",
"image": "https://i.ebayimg.com/thumbs/images/g/y90AAOSwU0Vd2Hj5/s-l500.jpg",
"name": "BN-LINK Short Period Repeat Cycle Timer 24 Hours ON OFF Controls Plug In Delay",
"price": "$24.83",
"price_additional_info": "$26.99 8% off | Free shipping | 2012 sold",
"url": "https://www.ebay.com/itm/112253559401?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D9%26rkt%3D12%26sd%3D235022741770%26itm%3D112253559401%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3%26brand%3DCENTURY&_trksid=p4429486.c101195.m1851&amdata=cksum%3A1122535594017bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaov1NcOqJemgOAO3qWqRp%252B35GsPtUjcXijSYCtpenIeB5kh%252B1g%252FttE8bDOgSAxiUIkyBVD2bXIkgWMwQCkfwRvS8ERuTFypgwQybV%252FNvs5hEZ1DLov09Aj6eKeEoslXDngKv%252BcFgWkcEn14l276VteJmJSdTNXTqHnpfl%252B7zRjDikTVMdQN666UVCvNFVrHgBZHpHsOXUY%252BoVGxG9%252BRZRubgmSl1kl9p5nL92z3xO9HgQIRXCbz0yRL36C1x10NWANtLjrQMICUtEvZjQXtY8MSx9zaASSeRe29ypQxQClr20A%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486&epid=2254450053"
},
{
"condition": "New",
"epid": "154429143923",
"image": "https://i.ebayimg.com/thumbs/images/g/RroAAOSw8EpghqYg/s-l500.jpg",
"name": "CO2 PPM Air Supply Controller Hydroponic Monitor HVAC Air Equipment Dual Outlets",
"price": "$115.91",
"price_additional_info": "$160.99 28% off | Free shipping | Seller with a 100% positive feedback",
"url": "https://www.ebay.com/itm/154429143923?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D10%26rkt%3D12%26sd%3D235022741770%26itm%3D154429143923%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A1544291439237bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaouYlcM099Liz2ycSpnpltCkWQNQUOTogd3gzoDV%252BLErsMSo%252FahE2AG3YY7yCq2mHsTqhkmHbMJ5crDNAN%252B%252BrbdAdpHSWS5JTp%252FHBlLxwdQD%252BBOHL%252BYWwmVa5DG%252F5nBE8B0YZU6HX25UOlM7UGziPDhVGk0tFtgpN%252FRYbhi9AWtq2DMvFIzqAswrHE%252B0hMSD5%252BivbEHbLPCQ1Sa%252FghJxEFFeUsv%252B0PoDxdgnkmVj%252FLsr5Qd9yAOEiNHXEjf%252BLeoWNrVM9%252FLmLdCb1%252BJUfx1rPRVoF4NlB0P3NYO7fJ1DwYyXEg%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "393388034404",
"image": "https://i.ebayimg.com/thumbs/images/g/8wcAAOSw~QBkdXd6/s-l500.jpg",
"name": "INKBIRD PPM CO2 Controller Regulator Exhaust Fan Air Ventilation Greenhouse HVAC",
"price": "$125.30",
"price_additional_info": "$179.00 30% off | Free shipping | Seller with a 99.8% positive feedback",
"url": "https://www.ebay.com/itm/393388034404?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D11%26rkt%3D12%26sd%3D235022741770%26itm%3D393388034404%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A3933880344047bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaovTQKFBs%252BKHynH%252FmSakDu%252BzwPj8uKFim%252BKEIr9WalxSXElrVeAJGiSEW%252BCWlwiezA54yOnbWtklh%252BkZKhNaRuAxhRgA7800NiXe5lo36eiIyFPzD%252F8dHDTGyIu7k8pqLdOABV68wG93ScQD1xrEdP%252BtB4gOAGkul%252Ft3L1h4QxMueE18yy6HQtSuF5vHl47ZpVCbdlc%252Fefa1v8HmI4msuIJqe16uUv6t4cmC88LVkI5c%252FAcWLSp9aw4JYvNnSI0NIGgXiJ7O%252BW1%252Buiko6xlaTVpSEI4GECxq7%252FnO3ub0ROCXpQ%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "325141629291",
"image": "https://i.ebayimg.com/thumbs/images/g/okMAAOSwXUxiU~sf/s-l500.jpg",
"name": "INKBIRD CO2 Controller Regulator ICC500T S01 NDIR Sensor Probe Fan Greenhouse US",
"price": "$119.99",
"price_additional_info": "$159.99 25% off | + $0.50 shipping | 71 sold",
"url": "https://www.ebay.com/itm/325141629291?_trkparms=amclksrc%3DITM%26aid%3D1110006%26algo%3DHOMESPLICE.SIM%26ao%3D1%26asc%3D254280%26meid%3D7bbb3f6fbbbd4855a5371d46019e5d38%26pid%3D101195%26rk%3D12%26rkt%3D12%26sd%3D235022741770%26itm%3D325141629291%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DSimplAMLv11WebTrimmedV3MskuWithLambda85KnnRecallV1V2V4ItemNrtInQueryAndCassiniVisualRankerAndBertRecallWithVMEV3&_trksid=p4429486.c101195.m1851&amdata=cksum%3A3251416292917bbb3f6fbbbd4855a5371d46019e5d38%7Cenc%3AAQAIAAABUPqB0EgCndAssfMWNy0AT0GytGzF9%252By0G%252BlcW69DgBK3Qlz4BjwJQqPkN4K8I7qz9GoVciN1QNWqyS8EeqYS8rZRsDvyvw34m3N%252FyJKokwCTIIc3RNym2SNW8ARudP72DyiwgIY0dfUnIr5%252BMZDTaovDqWUr76o1ENPzO%252B594s9NI8kGRNyt0dTAw4QcA%252FQ92u%252BqFK69qbolep%252Faoaq0AJd9BWXPnPOJOAq8SzZPDy4qV%252FBnagSkUBOe7EgE02u3%252BlWOOeXkva9EE7DwEdOcrt1q2qmewYHWydtt1iFR%252BwPJo8NzbgXFegJ1LWhflGmUgyPbd0BSbRUD2uHVIuBnyFFKdc2LMFPNULSs%252BWIyDHC%252BLK7r0C5G4qW9cbWeh1JfGmPMwzgL3ptH%252ByvQhPvaXx6pkylmtVS457hMxOxhRSEn0KGcxRgIdznR7fykUlYZHA%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
}
],
"related_products_sponsored": [
{
"condition": "New",
"epid": "264962500686",
"image": "https://i.ebayimg.com/thumbs/images/g/9uQAAOSwXF1kknpv/s-l500.jpg",
"name": "Digital CO2 Temperature Controller Monitor Environmental Control Hydroponics Fan",
"price": "$112.69",
"price_additional_info": "$160.99 30% off | + $0.50 shipping | 30 sold",
"url": "https://www.ebay.com/itm/264962500686?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D1%26rkt%3D12%26sd%3D235022741770%26itm%3D264962500686%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A264962500686aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYepgJk20eI2DX0s7ekhyIzpcCz%252BgM27OGHPGIcnU7C1MiiqdCFNP6qgYXCALBo3jUqtSEBWI2JgY2xSwg46fOQ5dyZ%252BI2w2j6GuPweK2Dg%252BEv3ND50Nwm8TzPdQCWW1%252FCr3k5W1W42lYi6UwlqH6hTuSXvrq4P25feGzSbx%252F0RSnSlaGgD7R3zQP3%252BPqHiLpcYF%252B0ULKrDttJmAYxrKsUq%252Bz%252B5ho8cKzk7OOt4ZeawHzbCyDLAV%252FMCj2uDKoTFeSGVJOmWaGcRXpBlYz%252B6Fpd6T9J8wHoihu7ps4V4CT7kPKNQ%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "Pre-owned",
"epid": "404463491116",
"image": "https://i.ebayimg.com/thumbs/images/g/cykAAOSwb6hk7WeT/s-l500.jpg",
"name": "Autopilot apc8200 co2 monitor and controller w/ remote sensor apc 8200",
"price": "$80.00",
"price_additional_info": "+ $20.00 shipping | Seller with a 100% positive feedback",
"url": "https://www.ebay.com/itm/404463491116?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D2%26rkt%3D12%26sd%3D235022741770%26itm%3D404463491116%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A404463491116aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeq9npmpdrnTFZfWKascFEh9g9Y71tdiPWAo6ilOLckW7Dmqph1C5dioKqUaIMpab%252F3LcnpgwYBFlipMwJbDrwgHgQ4SZMw9nONPxvusDLGWvszxIFVs%252B1B5jhDrnB7y59aIc%252Bn1MePbKiqrRVgK4k1ANIhTQ8vDsk8Yvr152ynbl%252F%252BsShWhLGMg62GrKEzEho6SbIxZ%252FnvBX62g9i4fkFy8yEAtBKMIW8g7cv0v9HjxGueWxnJ1%252Bj7QHUjsJifqOC9qrzhXI1u9LfkKbyUfQ%252BjjKmTcqO81f7ZXssWVuClc3A%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "151886954309",
"image": "https://i.ebayimg.com/thumbs/images/g/CVgAAOSwZaBkknyu/s-l500.jpg",
"name": "INKBIRD CO2 Controller Carbon Dioxide Monitor Building Control HVAC Equipment CF",
"price": "$115.91",
"price_additional_info": "$160.99 28% off | + $0.50 shipping | 158 sold",
"url": "https://www.ebay.com/itm/151886954309?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D3%26rkt%3D12%26sd%3D235022741770%26itm%3D151886954309%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A151886954309aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYepKeiA7AiHzOVI7uyVc1Tpe2hWMSkhYQ7VOL8IqlfFJb0G3yQmr%252BT5aY8LdS1JjX8910zddTbi6bT5Ji6Gdmk2gLRXzlJYnmtnnnXnsCanfMKWeSjrkCLrPcnIde2IfB7qtcLSNWwmuB0Qfr4taA8myvvhJ42EnlGV0IwfYE6wFEQY%252BCY3awnms2XV3VlzngneyG6IOo4Z93ysOWhsCvbaPnSoxuuFWt5j4D4evuGGsoanlWdWEblX1bjOkjo5fupj1AGPMXuKtspHxNwQ7WRuD08%252Ft40O7B%252FbaXjl%252BcKAU6A%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "154429143923",
"image": "https://i.ebayimg.com/thumbs/images/g/RroAAOSw8EpghqYg/s-l500.jpg",
"name": "CO2 PPM Air Supply Controller Hydroponic Monitor HVAC Air Equipment Dual Outlets",
"price": "$115.91",
"price_additional_info": "$160.99 28% off | Free shipping | Seller with a 100% positive feedback",
"url": "https://www.ebay.com/itm/154429143923?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D4%26rkt%3D12%26sd%3D235022741770%26itm%3D154429143923%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A154429143923aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeqV8ukjRYUVmgiUZsrEL%252Fm0%252Fo0VvPGA5LiSKf2bSkMCdzPnO6jYGCWrBLL%252FVgEOJBL2uH2lc%252B2GvtwNMqJ1hE71OHEIqv6cYOflPXQjVxWgOz6oiFXFjLW7NjKYPEEdnvv1Sq5OgPxQLWWFL5n9bqJI4%252BwwIsvF6NOGEj%252FUlfrTeSzpUrEL6DyWo5fChS%252FQoj4fVtlarpQ2ma98pbfCvhgQSq3CclKQqq9tozjlBOR%252FI8YX1XZsPJTN3DMfPMU%252Bu7SDhTn%252BkNoM8x9HxouW5bsXZCKAhsiJF6tO3quvzdnlOg%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "121669920460",
"image": "https://i.ebayimg.com/thumbs/images/g/MRcAAOSwiBJaKdVF/s-l500.jpg",
"name": "Horticulture Reflective Mylar Hydroponic Grow Tent for Plant Growing",
"price": "$62.99",
"price_additional_info": "$89.99 30% off | Free shipping | Top Rated Plus",
"url": "https://www.ebay.com/itm/121669920460?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D5%26rkt%3D12%26sd%3D235022741770%26itm%3D121669920460%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A121669920460aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeqqMvya%252BPAAyGieZmckxHRWkmwLpizYNx3TmooWvKbFOgv2oMGSpbcYHTQud%252FNbgSEydIwluscxGsHbpVKhsOiLC%252FgyGNV1ZuDeqmFMnRf64A1JpNHFDzZtr9d7a6ZoqUha625pNNT6ZR3tYJROofy7Acg4kVipvM8hkS4z6I6XEGbfBeWTZQyCRXHzWUnI0vmCNadlXPwboyviZCO3DQBr9BBlG2K0zcxR0%252Bj0vFlUuNeJIqJs7jWCrgpi7Q6LeewRQup47XLkhZKXf%252FjfTYTiO5M0B1EZ2PwHt4hxkNuOlA%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "224282244559",
"image": "https://i.ebayimg.com/thumbs/images/g/SCgAAOSwjyNiVAJJ/s-l500.jpg",
"name": "Inkbird Digital CO2 Controller Regulator Monitor Greenhouse Fan Air Ventilation",
"price": "$119.25",
"price_additional_info": "$159.00 25% off | Free shipping | 128 sold",
"url": "https://www.ebay.com/itm/224282244559?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D6%26rkt%3D12%26sd%3D235022741770%26itm%3D224282244559%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A224282244559aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeqUMioE8GwmqyDTgDQ4bvebrrpjZzUqE40X0ctlZE1nFdT10wgK%252FbI7Ejsu1%252FsExXxbEmIY8OI%252Bf4GG3ROH41bp0lzSbEYeyP7qmZ1uSeFDYz6Wr2MRUtORF9S0XglqS4WpbyyroXg%252Fd2mO%252BiqFRCzb9o7xdd2KmuIFAi41%252FbfiYlcXFHCxK3qoiOhTmGt5r6YD60S7vexvyestZ%252BvqjyJPlvukEXU5d8RAz%252BLZtTXB7JoXgvXFbdTxJIk0GhR2xlIUrRHTCwfpnjbee0kdj7c%252B6y16ukt5RX1AT1IbuHnv1w%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "394670197707",
"image": "https://i.ebayimg.com/thumbs/images/g/zM8AAOSwZ0hkkntz/s-l500.jpg",
"name": "INKBIRD Digital CO2 Controller Regulator ICC500T S01 Probe Greenhouse HVAC US",
"price": "$111.08",
"price_additional_info": "$160.99 31% off | + $0.50 shipping | Top Rated Plus",
"url": "https://www.ebay.com/itm/394670197707?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D7%26rkt%3D12%26sd%3D235022741770%26itm%3D394670197707%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A394670197707aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeoLh%252FWXxEHW07%252B8jll5uMFccc2AsS4nqDbIellygDuDjbcNaSTKGLvFAIwqglgBedb4fD3HnIwSGXOv6yjjTk76fUBaE8OaDnhrEDU%252BFl9ahRFcAR2N7omezli%252BMU7bdvqTzRSPWlufSNNQtFHv6uFM63HgNZQDC%252BUyfmggb%252BgNu4gBvOTjv5Bxp1PmuK9DP0k7N0eBFQIRIJvNdVYxuMzFBiXBe1SG3%252BI8zpX%252Fo1VKMLaSfOTete8zj3pAWHFZys0fIztxB4UF0WfmGMuVnMfn0k%252Fd%252FS5xxCBi9Xe5wJX%252FRA%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "325141629291",
"image": "https://i.ebayimg.com/thumbs/images/g/okMAAOSwXUxiU~sf/s-l500.jpg",
"name": "INKBIRD CO2 Controller Regulator ICC500T S01 NDIR Sensor Probe Fan Greenhouse US",
"price": "$119.99",
"price_additional_info": "$159.99 25% off | + $0.50 shipping | 71 sold",
"url": "https://www.ebay.com/itm/325141629291?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D8%26rkt%3D12%26sd%3D235022741770%26itm%3D325141629291%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A325141629291aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeqTNH8NMiLy725w1tRH3E1Ilw4i6CWwE1r19aJrX6VmXHT%252FzDWr%252BuBsyvdhK5sRe6bQuNYW5pbD4n2Rw0X2EzRzerJGpRTLm0srf4%252B7v%252BeUswVH8qy6v5Oxbdciu5k%252BIz3HhTnVpxYZr1s9nIHY%252FitiP4zkhd5XkNCYWjL9sbl2rhjbaNJNK63l%252BGYS5khEKTRzCDqYunv9a01arvYWxhCyUvJ%252BSuK5hUjroweOeHTSOgdw7g3qrM%252BQOZ6p7w9trWCNKdn7Vk058g%252FuMA4iDbAx96PbebjezDZmWBMwUNsLEQ%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "234641452934",
"image": "https://i.ebayimg.com/thumbs/images/g/IBcAAOSw~EZi5Vqe/s-l500.jpg",
"name": "Autopilot Desktop CO2 Monitor Controller & Data Logger Carbon Dioxide NEW",
"price": "$146.50",
"price_additional_info": "Free shipping | Top Rated Plus | Seller with a 99.9% positive feedback",
"url": "https://www.ebay.com/itm/234641452934?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D9%26rkt%3D12%26sd%3D235022741770%26itm%3D234641452934%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2%26brand%3DAutopilot&_trksid=p4429486.c101196.m2219&amdata=cksum%3A234641452934aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeqg0NWxkg16HwHDJznqSgB6bPgwyjaSUB2AZCmTaJCuvZLDxyRwI0xkL%252BW2ljXsFrVPSMrN%252FBkoiDyndDWqEuzIptzt4Lw6m53j%252BhS2XBQsIFDEp16tgUg%252FypG5yCzo7NfEk5W1cjyCQIcpyqcoRWOKzOZrHXXMe8lDt8uGx841cabm1%252FOb8Akvij%252F1MB3SkF4jAuOk2sZDbICnsH1LWcPWZaPY7xmovAOLsvWli3j%252F5f%252FjdvVulvJkDWLhCLm0Kcev0IpyhWMkkToznqSG8Ezyo0qNI98Q%252BqvrzQFKvDfqBA%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "175383976864",
"image": "https://i.ebayimg.com/thumbs/images/g/GBwAAOSweUxi-cDo/s-l500.jpg",
"name": "VEVOR CO2 Burner CO2 Generator for Plant 2/4/8 Burner LP/NG Greenhouse Grow Room",
"price": "$145.99",
"price_additional_info": "Free shipping | 27 sold",
"url": "https://www.ebay.com/itm/175383976864?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D10%26rkt%3D12%26sd%3D235022741770%26itm%3D175383976864%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A175383976864aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYepLPgnpoqQsUiXyqpLJoSvJyCH%252F0eYPUdEJwOog1xFmEQTVAJPujsdreO2z%252Bjq9uE7WTBYgVMiOPyahAxukQt%252Fx1%252F%252BeBMEuzCbSMGobtlEy5c%252B4riRMJ%252BT3mJYIbduZWywxMl%252FvXLaIVCgGHQbt9W4xP97VjuhLnt5wPw6AiIT%252F%252FUtW3Z2Lkz2gRpmB3WyJU9lmtJo4JS3d3AMv9dtm1tg8mSU3d%252FNKNQu2oELFVgDPG3Qkntusl6m6Y2LxlgCf2wOqzajjV%252Fnmz7H8UoHrbs%252FjZWjbpbbs2TkJq%252BG03GtNug%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486"
},
{
"condition": "New",
"epid": "305044686002",
"image": "https://i.ebayimg.com/thumbs/images/g/qlkAAOSwiYpie9Bu/s-l500.jpg",
"name": "Hobo Ux100-003 Data Logger,Temperature And Humidity,Usb",
"price": "$99.00",
"price_additional_info": "Free shipping | Top Rated Plus | Seller with a 99.8% positive feedback",
"url": "https://www.ebay.com/itm/305044686002?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D11%26rkt%3D12%26sd%3D235022741770%26itm%3D305044686002%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2%26brand%3DHobo&_trksid=p4429486.c101196.m2219&amdata=cksum%3A305044686002aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeooZV58rfyA0iTd92RFURDKVmegEemHS49QZ9DGrTDEjd7XdGK7bY8glcBdkDPxhljo7c%252FbwWj3UYeXs5m3eJr2wwaq5zlT%252Fe31ehBxD5jWdROv%252Fhvo%252F9ArVMPk7QoZoQLc8fQXj1xO7qQClMBomP3O0REUmHLZWEELEIJsanMgcwTWJIzD3trbc3l5K0H4SKTxpfeJKpXM9yZy5lZyh9k5tCa4aExXAGJSPm4BMoFdVhz%252BsXLVum2%252BzNbBmUlQtqEk1TpHtN8a7pt4%252B9%252FP5RyxNgwZx0PwZQ7F6uf7j0PIgQ%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486&epid=1145758126"
},
{
"condition": "New",
"epid": "165153563385",
"image": "https://i.ebayimg.com/thumbs/images/g/JeAAAOSwXxJgi74M/s-l500.jpg",
"name": "Inkbird Temperature Humidity Data Logger Bluetooth APP Wireless Temp Thermometer",
"price": "$14.90",
"price_additional_info": "$20.99 29% off | + $0.99 shipping | 175 sold",
"url": "https://www.ebay.com/itm/165153563385?_trkparms=amclksrc%3DITM%26aid%3D1110018%26algo%3DHOMESPLICE.COMPLISTINGS%26ao%3D1%26asc%3D20210609144404%26meid%3Daa7bb165b0544dc5a58ff197fd623bad%26pid%3D101196%26rk%3D12%26rkt%3D12%26sd%3D235022741770%26itm%3D165153563385%26pmt%3D1%26noa%3D0%26pg%3D4429486%26algv%3DCompVIDesktopATF2V2&_trksid=p4429486.c101196.m2219&amdata=cksum%3A165153563385aa7bb165b0544dc5a58ff197fd623bad%7Cenc%3AAQAIAAAA8A%252FX5kvtcYFtPo%252BGm1mGYeowlPSrM5jxLKkAN6SB1%252Bn1%252BhuU5OzdZk34xewkiGuvJUxjr2j%252Bxy1Y2OO6JXg0Kf24NerWfXim77aPbuEbyV1rY2uMWnXrV9M76pNZN3lHjuQydisbNWXUjpxVwjlx%252BhMWO99PQtoek82gI7KFI7xyklAFJiJ1buywnZMuQEhw41PWbNo%252FnYmk8Upe6gKLRfkUS3nHqH1EAq6KcSu0S5hv1c4P03B4TtMA4asJ0vsdKNyremjwnvzLa5wEFVCvpaWr3fU4W%252FbsOpOex3esvs619SsCID42VIIHaBQU5sbNGw%253D%253D%7Campid%3APL_CLK%7Cclp%3A4429486&epid=17037912914"
}
],
"returns_policy": {
"raw": "Returns:30 days returns. Buyer pays for return shipping. See details- for more information about returns",
"returnable_in": 30,
"returns_accepted": true
},
"reviews": [
{
"seller_name": "spreetail-deals",
"attributes": [
{
"name": "verified_purchase",
"value": "Yes"
},
{
"name": "condition",
"value": "Pre-Owned"
},
{
"name": "sold_by",
"value": "spreetail-deals"
}
],
"body": "This monitor works well. It starts up in about 12 seconds and updates its readings every 5 seconds. Accuracy seems good, indicating 412 ppm outdoors and reacting appropriately when indoor ventilation is changed, so calibration is likely unnecessary. \n\nThe screen and indicators are clear, with a nice chart that you can change to monitor different things over different time periods. However, the display has limited viewing angles - 30 degrees above straight on is best. The only features that I am missing is a way to turn on the backlight and a way to suppress the alarm for a few minutes. \n\nOnce you figure out the menu system, there's enough settings to get the functionality that you want. You can switch between different plants or a separate \"human mode\" for people like me that use it as a personal air quality monitor. There are no \"bonus\" settings, just enough to handle common use cases. So you can calibrate the sensor to outdoor CO2 levels and set an altitude offset, but there are no options to customize the alarm or target thresholds.\n\nThe monitor comes with a nice kit of accessories such as two charging cables of different lengths, a power adapter, and multiple ways of hanging it, wall mounting it, or propping it up on a table. You can use the long cable and adapter to power it from the wall, or a battery bank attached with the included Velcro and short cable to make it battery powered. ",
"date": {
"raw": "Dec 11, 2020"
},
"profile": {
"name": "testr916",
"link": "https://www.ebay.com/usr/testr916"
},
"rating": 5,
"title": "A great CO2 monitor"
},
{
"seller_name": "thehydrosource",
"attributes": [
{
"name": "verified_purchase",
"value": "Yes"
},
{
"name": "condition",
"value": "New"
},
{
"name": "sold_by",
"value": "thehydrosource"
}
],
"body": "Glad I found this CO2 sensor. I have looked for an economical CO2 sensor for years, and this met my personal needs for checking the \"stuffy\" air in the house since we improved existing insulation and caulked for air leaks last winter. Our house measurements were over the comfort levels, and we used the detector to work out an air exchange plan .. and the air in the house is noticeably better. I'll be visiting family in the next weeks, and taking the CO2 monitor with me to possibly see why they've occasionally had headaches and feel drowsy more often than not when they are inside.\nGood features: Quick measurements, easily adjustable for plants or people settings. Easy to read display. An LED light gives \"green/good\" vs \"yellow/marginal\" results visible from across the house. Seems to very accurate. Even notices when I walk thru the room with a change in higher CO2 readings.\nThe unit would be even better if it had an internal battery, rechargeable or AA, for quicker room-to-room portability.",
"date": {
"raw": "May 07, 2017"
},
"profile": {
"name": "53grandpapaul",
"link": "https://www.ebay.com/usr/53grandpapaul"
},
"rating": 5,
"title": "What I have been looking for..."
},
{
"seller_name": "thshydro",
"attributes": [
{
"name": "verified_purchase",
"value": "Yes"
},
{
"name": "condition",
"value": "New"
},
{
"name": "sold_by",
"value": "thshydro"
}
],
"body": "There are no cons. It gives me all the information I need at one glance. ",
"date": {
"raw": "Mar 04, 2020"
},
"profile": {
"name": "ub30",
"link": "https://www.ebay.com/usr/ub30"
},
"rating": 5,
"title": "Very convenient and the display is great "
},
{
"seller_name": "spreetail",
"attributes": [
{
"name": "verified_purchase",
"value": "Yes"
},
{
"name": "condition",
"value": "New"
},
{
"name": "sold_by",
"value": "spreetail"
}
],
"body": "Works well for the terrarium plant project I am doing. The backlite only works when a function is selected. This does not affect what I am doing. I recommend this for in house or small indoor gardening uses.",
"date": {
"raw": "Nov 17, 2020"
},
"profile": {
"name": "osoriojrj",
"link": "https://www.ebay.com/usr/osoriojrj"
},
"rating": 5,
"title": "Great Small Terrarium CO2 monitor"
},
{
"seller_name": "spreetail",
"attributes": [
{
"name": "verified_purchase",
"value": "Yes"
},
{
"name": "condition",
"value": "New"
},
{
"name": "sold_by",
"value": "spreetail"
}
],
"body": "Easy setup and nice readable display",
"date": {
"raw": "Aug 09, 2020"
},
"profile": {
"name": "errbro.3ljenlbpt",
"link": "https://www.ebay.com/usr/errbro.3ljenlbpt"
},
"rating": 5,
"title": "Great value"
}
],
"seller": {
"name": "spreetail",
"link": "https://www.ebay.com/str/spreetail?_trksid=p4429486.m145687.l149086",
"feedback_score": 2421781,
"positive_feedback_percent": 99.5
},
"shipping": {
"raw": "Free 2 day shipping",
"shipping_delivery_zipcode": "37075",
"delivery_estimate": "Thu, Sep 14 to 2023",
"location": "Lincoln, Nebraska, United States",
"ships_to": "Afghanistan, Albania, Algeria, Andorra, Angola, Anguilla, Antigua and Barbuda, Argentina, Armenia, Aruba, Austria, Bahamas, Bahrain, Bangladesh, Belgium, Belize, Benin, Bermuda, Bhutan, Bolivia, Botswana, Brazil, Brunei Darussalam, Bulgaria, Burkina Faso, Burundi, Cambodia, Cameroon, Canada, Cape Verde Islands, Cayman Islands, Central African Republic, Chad, Chile, China, Colombia, Costa Rica, Cyprus, Czech Republic, Côte d'Ivoire (Ivory Coast), Democratic Republic of the Congo, Denmark, Djibouti, Dominican Republic, Ecuador, Egypt, El Salvador, Equatorial Guinea, Eritrea, Estonia, Ethiopia, Fiji, Finland, France, Gabon Republic, Gambia, Georgia, Germany, Ghana, Gibraltar, Greece, Greenland, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Honduras, Hong Kong, Hungary, Iceland, India, Indonesia, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Kuwait, Kyrgyzstan, Laos, Latvia, Lebanon, Lesotho, Liberia, Liechtenstein, Lithuania, Luxembourg, Macau, Macedonia, Madagascar, Malawi, Malaysia, Maldives, Mali, Malta, Mauritania, Mauritius, Mexico, Moldova, Monaco, Mongolia, Montenegro, Montserrat, Morocco, Mozambique, Namibia, Nauru, Nepal, Netherlands, Nicaragua, Niger, Nigeria, Norway, Oman, Pakistan, Panama, Papua New Guinea, Paraguay, Peru, Philippines, Poland, Portugal, Qatar, Republic of Croatia, Republic of the Congo, Romania, Rwanda, Saint Helena, Saint Kitts-Nevis, Saint Lucia, Saint Pierre and Miquelon, Saint Vincent and the Grenadines, San Marino, Saudi Arabia, Senegal, Serbia, Seychelles, Sierra Leone, Singapore, Slovakia, Slovenia, Solomon Islands, South Africa, South Korea, Spain, Sri Lanka, Suriname, Swaziland, Sweden, Switzerland, Taiwan, Tajikistan, Tanzania, Thailand, Togo, Tonga, Trinidad and Tobago, Tunisia, Turkey, Turkmenistan, Turks and Caicos Islands, Uganda, United Arab Emirates, United States, Uzbekistan, Vanuatu, Vatican City State, Vietnam, Wallis and Futuna, Western Samoa, Yemen, Zambia, Zimbabwe",
"price": 0
},
"stock_status": {
"status": "InStock",
"available": true
}
}
}

Scraping eBay Product Page
Last modified 2mo ago