product_backend_data
1 row where product_id = "eeyaeg9nm7"
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| eeyaeg9nm7 | 1 | 0 | 0 | 0 | Rose Peach Boks - Sylvie roser fra Colombia | rose-peach-boks | 0 | 0000-00-00 | 0 | 0 | 0 | 0 | 0 | {"siteid": "ccvxmy5xly", "id": "eeyaeg9nm7", "edit": "1", "name": "Rose Peach Boks", "newcategory": "Blomster i en boks,Flowers in a box,Pink,Rosa", "saleprice": false, "special": "", "saleexpire": "0000-00-00", "price_one": "1799", "desc_one": "Som vist ca 30 stk", "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": "Rose Peach Boks - Sylvie roser fra Colombia", "sad": false, "url": "rose-peach-boks", "headingone": "Rose Peach Boks", "imagealt": "Rose Peach Boks", "enableai": false, "aititle": "Rose Peach Boks", "material": "", "videolink": "", "relatedproducts": "", "pid": "eeyaeg9nm7", "cat": "eeyaeg9nm7", "imagename": "", "product_category": "", "age_group": "", "weight": "", "length": "", "width": "", "height": "", "description": "<p><span style=\"font-weight: 400;\">Dette flotte designet i ren klasse er absolutt en av vÃ¥re favoritter til den eksklusive kolleksjonen.</span></p>\n<p><span style=\"font-weight: 400;\">Vi har valgt Ã¥ kombinere vÃ¥re spesielle \"Esperance\" roser, som utfolder seg kjempe elegant i det som kan være de største rosehodene du vil ha sett, med den klassiske og elegante \"Vendela\" sorten, for en glatt overflate.</span></p>\n<p><span style=\"font-weight: 400;\">Det er den perfekte kombinasjonen for en spesiell anledning, ideell for feiringer av spesielle anledninger. Den dyrebare kombinasjonen av disse colombianske rosene av topp kvalitet, med det litt ville utseende til alstroemeria og et moderne preg av blÃ¥ grÃ¥-ish eukalyptusblader er en av \"Bonita Flowers\" signaturdesignen, vari… | 2026-07-06 11:05:08 |
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)
);