product_backend_data
1 row where product_id = "f2r9uvorg9"
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| f2r9uvorg9 | 1 | 0 | 0 | 0 | Small birthday card | small-birthday-card | 0 | 0000-00-00 | 0 | 0 | 0 | 0 | 0 | {"siteid": "ccvxmy5xly", "id": "f2r9uvorg9", "edit": "1", "name": "Small birthday card", "newcategory": "Birthday,Bursdag,Cards,Greeting Cards", "saleprice": false, "special": "", "saleexpire": "0000-00-00", "price_one": "35", "desc_one": "Small", "price_two": "45", "desc_two": "Large", "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": 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": "Small birthday card", "sad": false, "url": "small-birthday-card", "headingone": "Small birthday card", "imagealt": "Small birthday card", "enableai": false, "aititle": "Small birthday card", "material": "", "videolink": "", "relatedproducts": "", "pid": "f2r9uvorg9", "cat": "f2r9uvorg9", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "", "shortdesc": "", "recipe": "", "desc": "", "aidesc": ""} | 2026-02-04 06:18:13 |
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)
);