product_backend_data
1 row where product_id = "auxe1sx1rn"
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| auxe1sx1rn | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | {"siteid": "ccvxmy5xly", "pid": "auxe1sx1rn", "cat": "auxe1sx1rn", "imagename": "", "colour": "", "sku": ""} | 2026-02-06 11:23:26 |
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)
);