product_backend_data
1 row where instock = 1 and product_id = "8gbjfaksvy"
This data as json, CSV (advanced)
Suggested facets: scraped_at (date)
instock 1
- 1 · 1 ✖
| product_id ▼ | instock | inventory | useinventory | autostock | sku | title | url_slug | saleprice | special | saleexpire | alcohol | floral | addon | restricted | vase | raw_data | scraped_at |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 8gbjfaksvy | 1 | 0 | 0 | 0 | Spectacular funeral wreath decoration warm and delicate | funeral-excellence | 0 | 0 | 0 | 0 | 0 | 0 | {"siteid": "ccvxmy5xly", "id": "8gbjfaksvy", "edit": "1", "name": "Funeral Excellence", "newcategory": "Funerals,Sympathy,Wreath Decoration", "saleprice": false, "special": "", "saleexpire": "", "price_one": "1000", "desc_one": "Small", "price_two": "1500", "desc_two": "Medium", "price_three": "2000", "desc_three": "large", "price_four": "2500", "desc_four": "Deluxe ", "price_five": "", "desc_five": "", "price_six": "", "desc_six": "", "price_seven": "", "desc_seven": "", "price_eight": "", "desc_eight": "", "instock": true, "subscribe": false, "useinventory": false, "inventory": "0", "autostock": false, "emailnotify": false, "colour": "", "alcohol": false, "floral": false, "addon": false, "restricted": false, "showadvanced": false, "size": "", "sku": "", "pet": false, "hospital": false, "vase": false, "title": "Spectacular funeral wreath decoration warm and delicate", "sad": false, "url": "funeral-excellence", "headingone": "Funeral Wreath Excellence", "imagealt": "Funeral Wreath Excellence", "enableai": false, "aititle": "Funeral Excellence", "material": "", "videolink": "", "relatedproducts": "", "pid": "8gbjfaksvy", "cat": "8gbjfaksvy", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p>The amazing creation is made of exquisite, large orchids in cream colour with a soft pink center, cream white and light purple roses, with alstromerias as fillers. The perfect addition to this design are the blue grey, refreshing eucalyptus leaves which give this decoration an very special touch of rustique in the midst of pure elegance and style.</p>\n<p> </p>\n<p>Small: Base with approx. 30 cm diameter </p>\n<p>Medium: Base with approx. 37 cm diameter</p><p>Large: Base with approx 40 cm diameter</p>\n<p>Deluxe: Base with approx. 45cm diameter</p>", "shortdesc": "", "recipe": "", "desc": "Incredible design and mix of greens and oranges", "aidesc": ""} | 2026-02-06 11:22:33 |
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)
);