product_backend_data
1 row where instock = 1 and product_id = "v755i7l4vk"
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v755i7l4vk | 1 | 0 | 0 | 0 | Spring Break Box - Lilla roser, dahlia og fresia | spring-break-box | 0 | 0000-00-00 | 0 | 0 | 0 | 0 | 0 | {"siteid": "ccvxmy5xly", "id": "v755i7l4vk", "edit": "1", "name": "Spring Night Box", "newcategory": "Blomster i en boks,Flerfarget,Flowers in a box,Lilla,Purple,Spring,Var", "saleprice": false, "special": "", "saleexpire": "0000-00-00", "price_one": "1399", "desc_one": "Som vist", "price_two": "", "desc_two": "", "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": "Spring Break Box - Lilla roser, dahlia og fresia", "sad": false, "url": "spring-break-box", "headingone": "Spring Break Box", "imagealt": "Spring Break Box", "enableai": false, "aititle": "Spring Break Box", "material": "", "videolink": "", "relatedproducts": "", "pid": "v755i7l4vk", "cat": "v755i7l4vk", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p><span style=\"font-weight: 400;\">En levende dekorasjon full av fantastiske blomster hentet direkte fra de colombiske rosegÃ¥rdene og nederlandske dyrkerne. Dette designet kombinerer bestselgeren \"moody blues\", lilla roser med noen kraftige røde dahliaer og dyrebare aelstromerias.</span></p>\n<p><span style=\"font-weight: 400;\">De søte, friske grønne blomstene livlig gjør denne dekorasjonen, og gjør den levende med stil.</span></p>\n<p><span style=\"font-weight: 400;\">VÃ¥rt utvalg av frodige grønne omgivelser lyser opp utseendet og gjør denne oppsats til en av \"Spring\" -favorittene.</span></p>\n<p><span style=\"font-weight: 400;\">Fargene er imidlertid helt tidløse og fungerer like bra for en sommernattsdrøm!</span></p>\n<p> </p>\n<p><span st… | 2026-07-06 11:13:49 |
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)
);