product_backend_data
1 row where product_id = "q5b7zmpzbc"
This data as json, CSV (advanced)
Suggested facets: scraped_at (date)
instock 1
- 0 1
| product_id ▼ | instock | inventory | useinventory | autostock | sku | title | url_slug | saleprice | special | saleexpire | alcohol | floral | addon | restricted | vase | raw_data | scraped_at |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| q5b7zmpzbc | 0 | 0 | 0 | 0 | Ginger Bread | ginger-bread | 0 | 0 | 0 | 0 | 0 | 0 | {"siteid": "ccvxmy5xly", "id": "q5b7zmpzbc", "edit": "1", "name": "Ginger Bread", "newcategory": "Bonita Coffee", "saleprice": false, "special": "", "saleexpire": "", "price_one": "29", "desc_one": "As Displayed", "price_two": "", "desc_two": "", "price_three": "", "desc_three": "", "price_four": "", "desc_four": "", "price_five": "", "desc_five": "", "price_six": "", "desc_six": "", "price_seven": "", "desc_seven": "", "price_eight": "", "desc_eight": "", "instock": false, "subscribe": false, "useinventory": false, "inventory": "", "autostock": false, "emailnotify": false, "colour": "", "alcohol": false, "floral": false, "addon": false, "restricted": false, "showadvanced": false, "size": "", "sku": "", "pet": false, "hospital": false, "vase": false, "title": "Ginger Bread", "sad": false, "url": "ginger-bread", "headingone": "Ginger Bread", "imagealt": "Ginger Bread", "enableai": false, "aititle": "Ginger Bread", "material": "", "videolink": "", "relatedproducts": "", "pid": "q5b7zmpzbc", "cat": "q5b7zmpzbc", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p>Gluten , Wheat and Dairy free HEALTHY snacks. Ideal for a gift basket</p>", "shortdesc": "", "recipe": "", "desc": "Gluten , Wheat and Dairy free HEALTHY snacks. Ideal for a gift basket", "aidesc": ""} | 2026-02-04 06:23:53 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_backend_data (
product_id TEXT PRIMARY KEY,
instock INTEGER, -- 1 = in stock, 0 = out of stock
inventory INTEGER, -- Number of items available
useinventory INTEGER, -- Track inventory?
autostock INTEGER, -- Stop selling when out of stock?
sku TEXT,
title TEXT, -- SEO title
url_slug TEXT, -- Backend URL slug
saleprice INTEGER, -- Is on sale?
special TEXT, -- Special/sale price
saleexpire TEXT, -- Sale expiry date
alcohol INTEGER,
floral INTEGER,
addon INTEGER,
restricted INTEGER,
vase INTEGER,
raw_data TEXT, -- Full JSON of scraped data
scraped_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (product_id) REFERENCES products(id)
);