home / shop

product_backend_data

Data scraped from admin backend (stock status, etc)

1 row where instock = 1 and product_id = "r0zvwcv0sr"

✎ View and edit SQL

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
r0zvwcv0sr 1 0 0 0   Peach Wreath peach-wreath 0   0000-00-00 0 0 0 0 0 {"siteid": "ccvxmy5xly", "id": "r0zvwcv0sr", "edit": "1", "name": "Peach Wreath", "newcategory": "Funerals,Spring,Summer,Wreath Decoration", "saleprice": false, "special": "", "saleexpire": "0000-00-00", "price_one": "1000", "desc_one": "small (As displayed) (ca 35 cm)", "price_two": "1200", "desc_two": "medium ", "price_three": "1500", "desc_three": "large", "price_four": "2000", "desc_four": "XL", "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": "peach", "alcohol": false, "floral": false, "addon": false, "restricted": false, "showadvanced": false, "size": "", "sku": "", "pet": false, "hospital": false, "vase": false, "title": "Peach Wreath", "sad": false, "url": "peach-wreath", "headingone": "Peach Wreath", "imagealt": "Peach Wreath", "enableai": false, "aititle": "Peach Wreath", "material": "", "videolink": "", "relatedproducts": "", "pid": "r0zvwcv0sr", "cat": "r0zvwcv0sr", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "", "shortdesc": "", "recipe": "", "desc": "", "aidesc": ""} 2026-02-04 06:24:20

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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)
);
Powered by Datasette · Queries took 21.78ms