home / shop

product_backend_data

Data scraped from admin backend (stock status, etc)

1 row where instock = 1 and product_id = "9o946e3pff"

✎ 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
9o946e3pff 1 0 0 0   Pink Sand Flower Box with pink and Cream white roses pink-sand- 0     0 0 0 0 0 {"siteid": "ccvxmy5xly", "id": "9o946e3pff", "edit": "1", "name": "Pink Sand ", "newcategory": "Anniversary,Blomster i en boks,Flowers in a box,Morsdag,Mothers Day,Pink,Romance,Romanse,Rosa,White", "saleprice": false, "special": "", "saleexpire": "", "price_one": "999", "desc_one": "Regular ca 12 roses", "price_two": "1350", "desc_two": "As displayed (20 stems)", "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": "Pink Sand Flower Box with pink and Cream white roses ", "sad": false, "url": "pink-sand-", "headingone": "Pink Sand ", "imagealt": "Pink Sand ", "enableai": false, "aititle": "Pink Sand ", "material": "", "videolink": "", "relatedproducts": "", "pid": "9o946e3pff", "cat": "9o946e3pff", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p><strong>NOTE: The decoration  is made round box, choose between White or black in the further instrutions box, depending on stock availability we might use other color.</strong></p>\n<p>Flower boxes are an original and long lasting gift option! This modern flower box has the best quality Colombian roses that will brighten up anyones home! The delicate mix of creamy champagne white roses and the rustic pink with a hint of green makes this flowerbox an absolute classic for most occasions. </p>\n<p>The Pink Sand Flower Box comes in green oasis sponge which makes the care even easier! Just add a little bit of water every now and then! </p>", "shortdesc": "", "recipe": "", "desc": "Pink Sand Flower Box has two different colours of … 2026-07-06 11:03:24

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 16.015ms