← back to 1940swallpaper
initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)
1b9fd2b38e8c80a9e7f21e14211c8ca9a6a9816e · 2026-05-06 10:20:05 -0700 · Steve
Files touched
A .gitignoreA _universal-auth.jsA _universal-contact.jsA data/products.jsonA package-lock.jsonA package.jsonA public/favicon.svgA public/hero-bg.jpgA public/index.htmlA server.jsA site.config.json
Diff
commit 1b9fd2b38e8c80a9e7f21e14211c8ca9a6a9816e
Author: Steve <steve@designerwallcoverings.com>
Date: Wed May 6 10:20:05 2026 -0700
initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)
---
.gitignore | 25 +
_universal-auth.js | 296 ++
_universal-contact.js | Bin 0 -> 15049 bytes
data/products.json | 13326 ++++++++++++++++++++++++++++++++++++++++++++++++
package-lock.json | 852 ++++
package.json | 13 +
public/favicon.svg | 4 +
public/hero-bg.jpg | Bin 0 -> 372450 bytes
public/index.html | 613 +++
server.js | 110 +
site.config.json | 21 +
11 files changed, 15260 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9ae81e0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,25 @@
+node_modules/
+.env
+.env.*
+!.env.example
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+.cache/
+.parcel-cache/
+coverage/
+__pycache__/
+*.pyc
+*.pyo
+.venv/
+venv/
+.pytest_cache/
+.ruff_cache/
+.idea/
+.vscode/
+*.swp
+.qodo/
+out/
diff --git a/_universal-auth.js b/_universal-auth.js
new file mode 100644
index 0000000..6f1eaf9
--- /dev/null
+++ b/_universal-auth.js
@@ -0,0 +1,296 @@
+// DW family universal auth — drop-in for any sister site's server.js.
+// Mount BEFORE static. Provides:
+// /admin → Basic Auth (admin / DWSecure2024! via env ADMIN_PASS) → leads dashboard
+// /admin/leads.json → JSON dump of leads.jsonl (admin only)
+// /admin/stats.json → counts + recent activity
+// POST /account/register {name,email,password} → cookie session
+// POST /account/login {email,password} → cookie session
+// POST /account/logout
+// GET /account/me → {user, samples:[]} for logged-in user
+// POST /account/favorites {sku,title,image_url, action:'add'|'remove'}
+// GET /account → HTML dashboard
+//
+// Storage: data/users.json (single file per site, fail-soft like leads.jsonl).
+// Sessions: httpOnly cookie sid → user.id mapping in memory + persisted in users.json.
+// Passwords: scrypt (Node built-in, no npm install).
+//
+// Per Steve's standing rules:
+// - Lightweight, no email verify, no password reset (manual ask)
+// - Per-site users.json (each site is its own marketing surface)
+// - admin/DWSecure2024! same across all sites (matches DW-Agents pattern)
+
+const fs = require('fs');
+const path = require('path');
+const crypto = require('crypto');
+
+module.exports = function (app, opts) {
+ opts = opts || {};
+ const SITE = opts.siteName || 'DW Family';
+ const ADMIN_USER = process.env.ADMIN_USER || 'admin';
+ const ADMIN_PASS = process.env.ADMIN_PASS || '';
+ if (!ADMIN_PASS) {
+ if (process.env.NODE_ENV === 'production') {
+ throw new Error('[auth] ADMIN_PASS env required in production — set via /root/.dw-fleet.env (sourced by pm2 ecosystem)');
+ }
+ console.warn('[auth] ADMIN_PASS not set — /admin will return 401 to all requests');
+ }
+ const COOKIE_NAME = 'dw_sid';
+ const SESSION_TTL_MS = 30 * 24 * 60 * 60 * 1000; // 30 days
+
+ const DATA_DIR = path.join(__dirname, 'data');
+ const USERS_FILE = path.join(DATA_DIR, 'users.json');
+ const LEADS_FILE = path.join(DATA_DIR, 'leads.jsonl');
+ try { fs.mkdirSync(DATA_DIR, { recursive: true }); } catch (e) {}
+
+ // ─── storage ──────────────────────────────────────────────────────────────
+ let store = { users: [], sessions: {} }; // {sessions: {sid: {userId, expires}}}
+ try { if (fs.existsSync(USERS_FILE)) store = JSON.parse(fs.readFileSync(USERS_FILE, 'utf8')); } catch (e) { console.warn('[auth] users.json parse failed; starting fresh'); }
+ if (!store.users) store.users = [];
+ if (!store.sessions) store.sessions = {};
+
+ let writeQ = null;
+ function persist() {
+ if (writeQ) return;
+ writeQ = setTimeout(() => { writeQ = null; try { fs.writeFileSync(USERS_FILE + '.tmp', JSON.stringify(store, null, 2)); fs.renameSync(USERS_FILE + '.tmp', USERS_FILE); } catch (e) { console.error('[auth] persist failed:', e.message); } }, 200);
+ }
+
+ // ─── password hashing ─────────────────────────────────────────────────────
+ function hashPassword(pw) {
+ const salt = crypto.randomBytes(16).toString('hex');
+ const hash = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return `scrypt$${salt}$${hash}`;
+ }
+ function verifyPassword(pw, stored) {
+ try {
+ const [scheme, salt, hash] = stored.split('$');
+ if (scheme !== 'scrypt') return false;
+ const test = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return crypto.timingSafeEqual(Buffer.from(hash, 'hex'), Buffer.from(test, 'hex'));
+ } catch (e) { return false; }
+ }
+
+ // ─── helpers ──────────────────────────────────────────────────────────────
+ const EMAIL_RE = /^[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}$/;
+ function clean(s, max) { return s == null ? '' : String(s).replace(/[\r\n\t\v\f ]+/g, ' ').trim().slice(0, max); }
+ function parseCookies(req) { const out = {}; const h = req.headers.cookie || ''; for (const part of h.split(';')) { const [k, v] = part.trim().split('='); if (k) out[k] = decodeURIComponent(v || ''); } return out; }
+ function setCookie(res, name, value, opts = {}) {
+ const parts = [`${name}=${encodeURIComponent(value)}`, `Path=${opts.path || '/'}`, 'HttpOnly', 'SameSite=Lax'];
+ if (opts.secure) parts.push('Secure');
+ if (opts.maxAge) parts.push(`Max-Age=${Math.floor(opts.maxAge / 1000)}`);
+ if (opts.expires) parts.push(`Expires=${opts.expires.toUTCString()}`);
+ res.setHeader('Set-Cookie', parts.join('; '));
+ }
+ function basicAuthOK(req) {
+ if (!ADMIN_PASS) return false; // no admin pass configured → refuse all
+ const h = req.headers.authorization || '';
+ if (!h.startsWith('Basic ')) return false;
+ try {
+ const [u, p] = Buffer.from(h.slice(6), 'base64').toString().split(':');
+ if (u !== ADMIN_USER) return false;
+ const a = Buffer.from(String(p || ''));
+ const b = Buffer.from(ADMIN_PASS);
+ return a.length === b.length && crypto.timingSafeEqual(a, b);
+ } catch (e) { return false; }
+ }
+ function requireAdmin(req, res, next) {
+ if (!basicAuthOK(req)) { res.setHeader('WWW-Authenticate', `Basic realm="${SITE} Admin"`); return res.status(401).send('admin auth required'); }
+ next();
+ }
+ function userFromReq(req) {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (!sid) return null;
+ const sess = store.sessions[sid];
+ if (!sess || sess.expires < Date.now()) { if (sess) delete store.sessions[sid]; return null; }
+ return store.users.find(u => u.id === sess.userId) || null;
+ }
+ function startSession(res, user) {
+ const sid = crypto.randomBytes(24).toString('base64url');
+ store.sessions[sid] = { userId: user.id, expires: Date.now() + SESSION_TTL_MS };
+ persist();
+ const isHttps = (process.env.HTTPS || '').toLowerCase() === 'true' || process.env.NODE_ENV === 'production';
+ setCookie(res, COOKIE_NAME, sid, { maxAge: SESSION_TTL_MS, secure: isHttps });
+ }
+ function readLeads() {
+ if (!fs.existsSync(LEADS_FILE)) return [];
+ try { return fs.readFileSync(LEADS_FILE, 'utf8').trim().split('\n').filter(Boolean).map(l => { try { return JSON.parse(l); } catch (e) { return null; } }).filter(Boolean); } catch (e) { return []; }
+ }
+
+ // ─── /account/register ────────────────────────────────────────────────────
+ app.post('/account/register', (req, res) => {
+ const b = req.body || {};
+ const name = clean(b.name, 200);
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ if (!name || !EMAIL_RE.test(email) || password.length < 8) return res.status(400).json({ error: 'name, valid email, and 8-char password required' });
+ if (store.users.find(u => u.email === email)) return res.status(409).json({ error: 'email already registered' });
+ const user = { id: crypto.randomBytes(8).toString('hex'), name, email, pwd: hashPassword(password), createdAt: new Date().toISOString(), favorites: [] };
+ store.users.push(user); persist();
+ startSession(res, user);
+ res.json({ ok: true, user: { id: user.id, name: user.name, email: user.email } });
+ });
+
+ // Constant-cost dummy hash so login timing doesn't reveal whether email exists
+ const DUMMY_HASH = `scrypt$${crypto.randomBytes(16).toString('hex')}$${crypto.scryptSync('does-not-match', 'dummy-salt', 64).toString('hex')}`;
+
+ // ─── /account/login ───────────────────────────────────────────────────────
+ app.post('/account/login', (req, res) => {
+ const b = req.body || {};
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ const u = store.users.find(x => x.email === email);
+ // Always compute scrypt to keep timing constant whether user exists or not
+ const valid = verifyPassword(password, u ? u.pwd : DUMMY_HASH);
+ if (!u || !valid) return res.status(401).json({ error: 'invalid email or password' });
+ startSession(res, u);
+ res.json({ ok: true, user: { id: u.id, name: u.name, email: u.email } });
+ });
+
+ // ─── /account/logout ──────────────────────────────────────────────────────
+ app.post('/account/logout', (req, res) => {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (sid && store.sessions[sid]) { delete store.sessions[sid]; persist(); }
+ setCookie(res, COOKIE_NAME, '', { maxAge: 0 });
+ res.json({ ok: true });
+ });
+
+ // ─── /account/me ──────────────────────────────────────────────────────────
+ app.get('/account/me', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const samples = readLeads().filter(l => (l.email || '').toLowerCase() === u.email);
+ res.json({ user: { id: u.id, name: u.name, email: u.email, createdAt: u.createdAt }, favorites: u.favorites || [], samples });
+ });
+
+ // ─── /account/favorites ───────────────────────────────────────────────────
+ app.post('/account/favorites', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const b = req.body || {};
+ const action = b.action === 'remove' ? 'remove' : 'add';
+ const sku = clean(b.sku, 200);
+ if (!sku) return res.status(400).json({ error: 'sku required' });
+ u.favorites = u.favorites || [];
+ if (action === 'add') {
+ if (!u.favorites.find(f => f.sku === sku)) {
+ u.favorites.push({ sku, title: clean(b.title, 400), image_url: clean(b.image_url, 600), addedAt: new Date().toISOString() });
+ }
+ } else {
+ u.favorites = u.favorites.filter(f => f.sku !== sku);
+ }
+ persist();
+ res.json({ ok: true, favorites: u.favorites });
+ });
+
+ // ─── /account (HTML dashboard) ────────────────────────────────────────────
+ app.get('/account', (req, res) => {
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>Account · ${SITE}</title>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="/styles.css" onerror="this.remove()">
+<style>
+body{font-family:-apple-system,sans-serif;max-width:680px;margin:80px auto;padding:24px;color:#222;background:#fafaf6}
+h1{font-size:32px;font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.card{background:#fff;padding:32px;border:1px solid #e5dfd0;margin-bottom:18px}
+input,button{font:inherit;padding:11px 14px;width:100%;box-sizing:border-box;margin:6px 0;border:1px solid #d0c9b8;background:#fff}
+button{background:#1b1814;color:#fafaf6;cursor:pointer;border:0;letter-spacing:0.18em;text-transform:uppercase;font-size:11px;padding:14px;margin-top:14px}
+button:hover{background:#3a342a}
+.tab{display:inline-block;padding:11px 20px;cursor:pointer;border:0;background:transparent;font-size:11px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+.tab.active{color:#1b1814;border-bottom:2px solid #1b1814}
+.row{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid #e5dfd0;align-items:center}
+.row img{width:50px;height:50px;object-fit:cover}
+.muted{color:#888;font-size:13px}
+.err{color:#a33d3d;font-size:13px;margin:6px 0}
+[hidden]{display:none}
+</style></head>
+<body>
+<h1>${SITE} · Account</h1>
+<div id="anon">
+ <div class="card">
+ <div><button class="tab active" data-pane="login">Sign In</button><button class="tab" data-pane="register">Create Account</button></div>
+ <div id="login">
+ <input id="le" type="email" placeholder="email" autocomplete="email">
+ <input id="lp" type="password" placeholder="password" autocomplete="current-password">
+ <div id="lerr" class="err"></div>
+ <button onclick="doLogin()">Sign In</button>
+ </div>
+ <div id="register" hidden>
+ <input id="rn" placeholder="name">
+ <input id="re" type="email" placeholder="email" autocomplete="email">
+ <input id="rp" type="password" placeholder="password (min 8)" autocomplete="new-password">
+ <div id="rerr" class="err"></div>
+ <button onclick="doRegister()">Create Account</button>
+ </div>
+ </div>
+</div>
+<div id="auth" hidden>
+ <div class="card">
+ <h2 id="hname" style="font-weight:300"></h2>
+ <p class="muted" id="hemail"></p>
+ <p class="muted" style="margin-top:14px">Member since <span id="hsince"></span></p>
+ <button onclick="logout()" style="margin-top:18px;background:transparent;color:#888;border:1px solid #d0c9b8">Sign Out</button>
+ </div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Saved Patterns</h3><div id="favs"><p class="muted">No favorites yet — heart any pattern in the catalog.</p></div></div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Sample Requests</h3><div id="samples"><p class="muted">No samples yet.</p></div></div>
+</div>
+<script>
+document.querySelectorAll('.tab').forEach(t=>t.onclick=()=>{document.querySelectorAll('.tab').forEach(x=>x.classList.toggle('active',x===t));['login','register'].forEach(id=>document.getElementById(id).hidden=(id!==t.dataset.pane))});
+async function api(path, body){ const r=await fetch(path,{method:'POST',headers:{'Content-Type':'application/json'},credentials:'include',body:body?JSON.stringify(body):undefined}); const j=await r.json().catch(()=>({}));return {ok:r.ok,j}; }
+async function doLogin(){const r=await api('/account/login',{email:le.value,password:lp.value});if(r.ok)render();else lerr.textContent=r.j.error||'login failed'}
+async function doRegister(){const r=await api('/account/register',{name:rn.value,email:re.value,password:rp.value});if(r.ok)render();else rerr.textContent=r.j.error||'register failed'}
+async function logout(){await api('/account/logout');location.reload()}
+function fmt(d){return new Date(d).toLocaleDateString('en-US',{month:'long',year:'numeric'})}
+async function render(){
+ const r=await fetch('/account/me',{credentials:'include'});
+ if(!r.ok){anon.hidden=false;auth.hidden=true;return}
+ const d=await r.json();anon.hidden=true;auth.hidden=false;
+ hname.textContent=d.user.name;hemail.textContent=d.user.email;hsince.textContent=fmt(d.user.createdAt);
+ if(d.favorites?.length){favs.innerHTML=d.favorites.map(f=>'<div class="row"><img src="'+(f.image_url||'')+'" alt=""><div><div>'+(f.title||f.sku)+'</div><div class="muted">'+f.sku+'</div></div></div>').join('')}
+ if(d.samples?.length){samples.innerHTML=d.samples.map(s=>'<div class="row"><div><div>'+(s.title||s.sku||'sample')+'</div><div class="muted">'+(new Date(s.ts).toLocaleDateString())+'</div></div></div>').join('')}
+}
+render();
+</script></body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ // ─── /admin (Basic Auth) ──────────────────────────────────────────────────
+ app.get('/admin', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ const recent = leads.slice(-25).reverse();
+ const stats = { totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, kinds: {} };
+ for (const l of leads) stats.kinds[l.kind] = (stats.kinds[l.kind] || 0) + 1;
+ const recentRows = recent.map(l => `<tr><td>${new Date(l.ts).toLocaleString()}</td><td>${l.kind}</td><td>${(l.name || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.email || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.title || l.projectName || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td></tr>`).join('');
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>${SITE} Admin</title>
+<style>body{font-family:-apple-system,sans-serif;background:#0e0e0e;color:#eee;margin:0;padding:32px;font-size:14px}
+h1{font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.kpi{display:flex;gap:18px;margin-bottom:32px;flex-wrap:wrap}
+.kpi div{background:#1a1a1a;padding:18px 24px;border:1px solid #333;flex:1;min-width:160px}
+.kpi .n{font-size:32px;font-weight:300;color:#eee}
+.kpi .l{font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:#888;margin-top:6px}
+table{width:100%;border-collapse:collapse;background:#1a1a1a;border:1px solid #333}
+th,td{padding:10px 14px;text-align:left;border-bottom:1px solid #2a2a2a;font-size:13px}
+th{background:#222;font-size:10px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+td{color:#ddd}
+small{color:#666}</style></head>
+<body>
+<h1>${SITE} · Admin</h1>
+<div class="kpi">
+ <div><div class="n">${stats.totalLeads}</div><div class="l">Total Leads</div></div>
+ <div><div class="n">${stats.totalUsers}</div><div class="l">Registered Users</div></div>
+ <div><div class="n">${stats.sessionsActive}</div><div class="l">Active Sessions</div></div>
+ <div><div class="n">${stats.kinds.inquiry || 0}</div><div class="l">Inquiries</div></div>
+ <div><div class="n">${stats.kinds.sample || 0}</div><div class="l">Sample Requests</div></div>
+</div>
+<h2 style="font-weight:300;margin:24px 0 12px">Recent Activity (last 25)</h2>
+<table><thead><tr><th>Time</th><th>Kind</th><th>Name</th><th>Email</th><th>Pattern / Project</th></tr></thead><tbody>${recentRows || '<tr><td colspan="5" style="text-align:center;color:#666;padding:24px">no leads yet</td></tr>'}</tbody></table>
+<p style="margin-top:24px"><small><a href="/admin/leads.json" style="color:#888">leads.json</a> · <a href="/admin/stats.json" style="color:#888">stats.json</a> · <a href="/" style="color:#888">site →</a></small></p>
+</body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ app.get('/admin/leads.json', requireAdmin, (req, res) => res.json(readLeads()));
+ app.get('/admin/stats.json', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ res.json({ totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, recent: leads.slice(-10).reverse() });
+ });
+};
diff --git a/_universal-contact.js b/_universal-contact.js
new file mode 100644
index 0000000..194e04f
Binary files /dev/null and b/_universal-contact.js differ
diff --git a/data/products.json b/data/products.json
new file mode 100644
index 0000000..05d9ff2
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,13326 @@
+[
+ {
+ "sku": "dig_4350139_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350139_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Newington 1940's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-28at12.58.50PM.png?v=1756872176",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hallway",
+ "Light Blue",
+ "Living Room",
+ "Mid-Century Modern",
+ "Orange",
+ "Pale Blue",
+ "Solid/Texture",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350139_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435067_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435067_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Carthate 1940's Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-02at2.15.12PM_c55832fe-d3ec-4dbc-88d6-bb7223d29a98.png?v=1756872313",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Carthate 1940's Contemporary",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fabric",
+ "Green",
+ "Khaki",
+ "Living Room",
+ "Modern",
+ "Non-woven",
+ "Office",
+ "Sage Green",
+ "Serene",
+ "Solid/Texture",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435067_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350127_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350127_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Newington 1940's Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at6.27.05AM.png?v=1756872215",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Light Gray",
+ "Living Room",
+ "Newington 1940's Contemporary",
+ "Organic",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Rustic",
+ "Solid/Texture",
+ "Steel Blue",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350127_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350126_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350126_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Nashua 1940's Texture Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2024-04-01at9.01.33AM_07ba3f34-2908-4754-b552-c13ea468ebc0.png?v=1756872220",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grasscloth",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Solid/Texture",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350126_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_553153_vintage_wallpaper_designer_wallpapers",
+ "handle": "dig_553153_vintage_wallpaper_designer_wallpapers",
+ "title": "Beatrice'S Authentic Vintage 1950'S Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553153_mockup_open.jpg?v=1756707123",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Beatrice'S Authentic Vintage 1950'S Contemporary",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Grasscloth",
+ "Lattice",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Natural Wallcovering",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 229.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553153_vintage_wallpaper_designer_wallpapers"
+ },
+ {
+ "sku": "dig_553153_vintage_wallpaper_designer_wallpapers-1",
+ "handle": "dig_553153_vintage_wallpaper_designer_wallpapers-1",
+ "title": "Beatrice'S Authentic Vintage 1950'S Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553153_mockup_open_549d3563-85ae-4927-b660-c0a7eb473722.jpg?v=1756851578",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Beatrice'S Authentic Vintage 1950'S Contemporary",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Grasscloth",
+ "Lattice",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553153_vintage_wallpaper_designer_wallpapers-1"
+ },
+ {
+ "sku": "dig_553153_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_553153_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Beatrice's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553153_mockup_open_49d5c49d-2e90-4298-8cef-bf0f2e747689.jpg?v=1756871290",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Beatrice's Authentic Vintage 1950's s Mid",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Grasscloth",
+ "Lattice",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553153_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-61-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-61-1",
+ "title": "Sammy's 1950's Vintage Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG_540067_1_fccf5bc0-6a6a-4cae-a7fe-0dca97e16f0e.jpg?v=1756872661",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Hallway",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic Modern",
+ "Retro",
+ "Sammy's 1950's Vintage Mid",
+ "Seafoam",
+ "Serene",
+ "Solid/Texture",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-61-1"
+ },
+ {
+ "sku": "erotic-chandelier-nude-naked-women-and-men-in-masks-fabric-ero-1977fab",
+ "handle": "erotic-chandelier-nude-naked-women-and-men-in-masks-fabric-ero-1977fab",
+ "title": "Erotic Chandelier Nude Naked Women and Men in Masks - Fabric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fef34d676b0db8498b08d0a7d5e15c5e.jpg?v=1572309054",
+ "tags": [
+ "1950's",
+ "Architectural",
+ "Art Deco",
+ "Black",
+ "Chandelier",
+ "Class A Fire Rated",
+ "Cloud",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cotton",
+ "Designer Wallcoverings",
+ "Fabric",
+ "Linen",
+ "Masks",
+ "Muted Black On Cotton Duck - Linen Style",
+ "Scenic",
+ "Smoke",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 181.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/erotic-chandelier-nude-naked-women-and-men-in-masks-fabric-ero-1977fab"
+ },
+ {
+ "sku": "dig_4350131_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350131_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Newington 1940's Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-02at10.30.54AM_87b72353-c877-494f-8cc6-c3f6212866c5.png?v=1756872206",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Non-woven",
+ "Pattern",
+ "Sage Green",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350131_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211114_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211114_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Rocket Ship 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-12-05at2.55.57PM_c1757904-12e3-49c8-adb0-ff9b7a8541f3.png?v=1756871444",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Celestial",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Grey",
+ "Light Beige",
+ "Light Gray",
+ "Lime Green",
+ "Mid-Century Modern",
+ "Modern",
+ "Non-woven",
+ "Novelty",
+ "Nursery",
+ "Pale Yellow",
+ "Paper",
+ "Playful",
+ "Playroom",
+ "Red",
+ "Retro",
+ "Rocket Ship 1950's Mid",
+ "Taupe",
+ "Teal",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211114_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435003_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435003_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Simsbury 1940's Brick on Silver Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-435003_room_setting_gold_mylar_1_0c3a977e-d802-4f12-9ec4-38cd36b357a3.jpg?v=1756872343",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gold",
+ "Grey",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Paper",
+ "Serene",
+ "Simsbury 1940's Brick on Silver Contemporary",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435003_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "1950-s-custom-vintage-kitchen-walls-vin-9795",
+ "handle": "1950-s-custom-vintage-kitchen-walls-vin-9795",
+ "title": "1950's Custom Vintage Kitchen Walls | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d07ccac47807bae35b0c0d49257419b0_9f919930-f25b-44ab-9333-1a9c835f7fad.jpg?v=1645558489",
+ "tags": [
+ "Architectural",
+ "Art Production",
+ "Available in Type 2 Vinyl",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Copyright",
+ "Custom",
+ "Custom Digital Walls",
+ "Custom Fabric Available",
+ "Custom Wallcovering",
+ "Customize",
+ "Eco-Friendly Paper",
+ "Exclusive Design",
+ "fix",
+ "Geometric",
+ "Gold",
+ "Green",
+ "Ivory",
+ "Mid-Century Modern",
+ "Novelty",
+ "Printed on Paper",
+ "Red",
+ "Retro",
+ "Set Decorator",
+ "Set Design",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Unique Substrates",
+ "Wallcovering",
+ "Walls on Demand"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/1950-s-custom-vintage-kitchen-walls-vin-9795"
+ },
+ {
+ "sku": "beatrices-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "beatrices-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Cambridge 1950'S Bamboo Trellis Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_5531532_match90210.jpg?v=1756868125",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brushstroke",
+ "Burgundy",
+ "Charcoal Grey",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Office",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Red",
+ "Retro",
+ "Sage Green",
+ "Seafoam Green",
+ "Texture",
+ "Textured",
+ "Trellis",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/beatrices-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-58-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-58-1",
+ "title": "Chastain 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG_540065_1_2447aa99-2ddd-495f-b976-25d9f487630a.jpg?v=1756872666",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Chastain 1950's Mid",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dark Gray",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Gray",
+ "Hallway",
+ "Light Blue",
+ "Light Pink",
+ "Living Room",
+ "Mid-Century Modern",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Pale Pink",
+ "Retro",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-58-1"
+ },
+ {
+ "sku": "ediths-authentic-vintage-1950s-spago-sisal-grasscloth-wallpaper",
+ "handle": "ediths-authentic-vintage-1950s-spago-sisal-grasscloth-wallpaper",
+ "title": "Edith's Authentic Vintage 1950's Spago Sisal Grasscloth . | Retro Walls",
+ "vendor": "Retro Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2022-03-17at11.07.57AM.png?v=1647540489",
+ "tags": [
+ "1950's",
+ "1958",
+ "Antique",
+ "Architectural",
+ "Basket",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Custom",
+ "Custom Wallcovering",
+ "Customize",
+ "Cyan",
+ "Edith",
+ "Floral",
+ "Flowers",
+ "Grand Millemial",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Leaves",
+ "Mid-Century Modern",
+ "Multi",
+ "Pink",
+ "Reproduction",
+ "Retro",
+ "Retro Walls",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Vintage",
+ "Vintage Wallpapers",
+ "Wallcovering",
+ "Walls on Demand",
+ "Walnut",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ediths-authentic-vintage-1950s-spago-sisal-grasscloth-wallpaper"
+ },
+ {
+ "sku": "dig_535010_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_535010_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Juliana's Authentic Vintage 1950's Reproductions Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-535010_20_inch_b80eeb1e-ff55-47b4-a91a-7d732f4efbb5.jpg?v=1756871392",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Forest Green",
+ "Gold",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Juliana's Authentic Vintage 1950's Reproductions Retro",
+ "Lime Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Silver",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_535010_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "kenley-light-pink-polka-dots-wallpaper-wallpaper-cca-82872",
+ "handle": "kenley-light-pink-polka-dots-wallpaper-wallpaper-cca-82872",
+ "title": "Kenley Light Pink Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e9cb14054ca3014eed37941dd262d578.jpg?v=1572309958",
+ "tags": [
+ "1950's",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dark Olive Green",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Polka Dot",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-light-pink-polka-dots-wallpaper-wallpaper-cca-82872"
+ },
+ {
+ "sku": "marias-tulips-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "marias-tulips-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Maria’s Tulips Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-55391_matchBH90210.jpg?v=1756707812",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Mid-Century Modern",
+ "Multi",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Textured",
+ "Tulips",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marias-tulips-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "dwh-74801-1",
+ "handle": "dwh-74801-1",
+ "title": "More than Martinis 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/11843967-dige-martini-glass-112020a-by-designerwallcoverings_2_4a96a6e8-c723-4e0d-8b2a-0f4aba97f876.jpg?v=1756868492",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Conversational",
+ "Crimson",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Glamorous",
+ "Hollywood Regency",
+ "Mid-Century Modern",
+ "More than Martinis 1950's Mid",
+ "Novelty",
+ "Paper",
+ "Pattern",
+ "Powder Room",
+ "Raspberry",
+ "Red",
+ "Restaurant",
+ "Retro",
+ "Silver",
+ "Sophisticated",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwh-74801-1"
+ },
+ {
+ "sku": "dig_4350148_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350148_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Pittsfield 1940's Stripe Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-10-03at12.52.49PM.png?v=1756872170",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Golden Yellow",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Pittsfield 1940's Stripe Contemporary",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350148_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521125_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521125_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Space Age 1950's Rocketss Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-12-05at3.05.05PM_b5342f68-c476-4db4-8800-8cca00fbad99.png?v=1756871517",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Celestial",
+ "Charcoal",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Green",
+ "Lime",
+ "Mid-Century Modern",
+ "Modern",
+ "Multi",
+ "Novelty",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Planet",
+ "Playful",
+ "Retro",
+ "Rocket",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521125_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-38-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-38-1",
+ "title": "Tilly's 1950's Reproduction Vintage Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mockupDIG540040_b7801353-e468-40dc-9be3-d6fcba1f74dd.jpg?v=1756872709",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Lattice",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Rustic",
+ "Sage Green",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-38-1"
+ },
+ {
+ "sku": "dig_4350133_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350133_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Tyson 1940's Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at6.36.43AM.png?v=1756872201",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Hallway",
+ "Living Room",
+ "Off-white",
+ "Olive",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350133_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "handle": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "title": "Wanda's Wandering Wisteria - Grasscloth - Authentic Vintage 1950's Reproductions Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553128_grasscloth_mockup_eb01a19c-9ffc-4dc4-b7c8-fc4375f878e2.jpg?v=1756867973",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Deep Purple",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Floral",
+ "Grasscloth",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Rustic",
+ "Sage Green",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-2-1"
+ },
+ {
+ "sku": "1950-s-custom-vintage-kitchen-utensils-walls-vin-9695-1",
+ "handle": "1950-s-custom-vintage-kitchen-utensils-walls-vin-9695-1",
+ "title": "1950's Custom Vintage Kitchen Utensils Walls Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2024-04-01at9.05.20AM_b93bfec9-fdfc-4201-b8f6-7c103e2f3e71.png?v=1756876652",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Gray",
+ "Kitchen",
+ "Light Blue",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Novelty",
+ "Pale Yellow",
+ "Paper",
+ "Playful",
+ "Restaurant",
+ "Retro",
+ "Slate Gray",
+ "Taupe",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/1950-s-custom-vintage-kitchen-utensils-walls-vin-9695-1"
+ },
+ {
+ "sku": "dig_5910103_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5910103_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Alexandra's 1950's Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-27at8.43.16AM.png?v=1756871158",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Alexandra's 1950's Geometric Mid",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Light Blue",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Off-white",
+ "Office",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Powder Blue",
+ "Retro",
+ "Taupe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5910103_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211140_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211140_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Appleton 1950's Lily Pod Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at8.03.54AM_54f2edc1-005f-493c-9663-3bdcd2d903b3.png?v=1756871429",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Appleton 1950's Lily Pod Mid",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dark Gray",
+ "Dark Olive",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Lavender",
+ "Lime Green",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Nursery",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Purple",
+ "Salmon",
+ "Serene",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211140_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441044_vintage_wallpaper_designer_wallcoverings",
+ "handle": "dig_441044_vintage_wallpaper_designer_wallcoverings",
+ "title": "Belagrada 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.58.50PM.png?v=1756708539",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Belagrada 1940's Retro",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Light Green",
+ "Pale Green",
+ "Paper",
+ "Retro",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441044_vintage_wallpaper_designer_wallcoverings"
+ },
+ {
+ "sku": "dig_5130213_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130213_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Berwick 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130213_original_color_mockup.jpg?v=1756870698",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Berwick 1950's Traditional",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Non-woven",
+ "Paper",
+ "Serene",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130213_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350154_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350154_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Birmingham 1940's Butterflys Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-4350154.jpg?v=1756872155",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art Nouveau",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Birmingham 1940's Butterflys Traditional",
+ "Botanical",
+ "Butterfly",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Living Room",
+ "Non-woven",
+ "Nursery",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350154_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42068_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42068_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bobby's 1940's Airplane Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-06-23at9.53.34AM_7d283875-c545-47c0-b44f-649add3aaed2.png?v=1756872453",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Mid-Century Modern",
+ "Nautical",
+ "Novelty",
+ "Nursery",
+ "Office",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Tan",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42068_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5130113_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130113_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Boynton Beach 1950's Resort Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at7.36.27AM_64e387f2-7bb3-4db7-a066-83840b7194f8.png?v=1756870716",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bathroom",
+ "Blue",
+ "Boynton Beach 1950's Resort Retro",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Light Blue",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Playful",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Tan",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130113_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441049_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441049_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Brighton 1940's Modern Art Deco | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-11-15at10.36.17AM.png?v=1756872067",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bathroom",
+ "Beige",
+ "Black",
+ "Brighton 1940's Modern Art Deco",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Green",
+ "Hollywood Regency",
+ "Paper",
+ "Powder Room",
+ "Primary Suite",
+ "Red",
+ "Retro",
+ "Sophisticated",
+ "Tan",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441049_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55346_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55346_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Brookfield 1950's Floral Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55346_20_inch.jpg?v=1756871362",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brookfield 1950's Floral Mid",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Brown",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Off-white",
+ "Paper",
+ "Retro",
+ "Saddlebrown",
+ "Sage Green",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55346_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42218_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42218_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Carbondale 1940's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-06-20at2.15.10PM.png?v=1756872349",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bathroom",
+ "Beige",
+ "Brown",
+ "Carbondale 1940's Mid",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Kitchen",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Tan",
+ "Tile",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42218_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435098_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435098_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Carmellos 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-01at10.17.33AM_670c0bbe-447b-4bf0-a907-2fd79b1cd0d1.png?v=1756872260",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Carmellos 1940's Traditional",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Tangerine",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435098_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55396_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55396_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Carterdale 1950's Ribbon Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-27at7.30.39PM_df587911-7d8a-40d4-94ca-2e09b3e029ca.png?v=1756871318",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Carterdale 1950's Ribbon Retro",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Grey",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Novelty",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Retro",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55396_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "almas-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "handle": "almas-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "title": "Carthage 1950'S Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130213_open_mockup.jpg?v=1756867893",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Charcoal",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Hallway",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/almas-authentic-vintage-1950s-reproduction-wallpapers-2-1"
+ },
+ {
+ "sku": "eros-erotic-chandelier-nude-wall-paper-ero-1977",
+ "handle": "eros-erotic-chandelier-nude-wall-paper-ero-1977",
+ "title": "EROS - Erotic Chandelier Nude Wallcovering",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20319258.jpg?v=1758052023",
+ "tags": [
+ "1950's",
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Black",
+ "Brick",
+ "Commercial",
+ "Erotica Wall Coverings",
+ "Moss",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eros-erotic-chandelier-nude-wall-paper-ero-1977"
+ },
+ {
+ "sku": "suzanne-lipschutz-vintage-digital-reproduction-wallpaper-patte-dig-62110-1",
+ "handle": "suzanne-lipschutz-vintage-digital-reproduction-wallpaper-patte-dig-62110-1",
+ "title": "Greenwich 1950's Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at11.09.24AM_fb524fbc-9581-4cf8-9a63-0d0ddd0c7a54.png?v=1756876275",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Green",
+ "Greenwich 1950's Geometric Mid",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Modern",
+ "Office",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Tan",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/suzanne-lipschutz-vintage-digital-reproduction-wallpaper-patte-dig-62110-1"
+ },
+ {
+ "sku": "dig_591091_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591091_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Hammond 1950's Geometric Kitchen Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-02-08at8.37.03AM.png?v=1756871167",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Forest Green",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Grey",
+ "Hammond 1950's Geometric Kitchen Mid",
+ "Kitchen",
+ "Light Gray",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Novelty",
+ "Pale Yellow",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Powder Room",
+ "Red",
+ "Retro",
+ "Teal",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591091_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441026_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441026_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Hartford Modern Geometric 1940's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-22at9.12.59AM_96472bc9-e554-449f-baef-3b717b1dea65.png?v=1756872123",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Green",
+ "Hartford Modern Geometric 1940's Mid",
+ "Living Room",
+ "Mid-Century Modern",
+ "Modern",
+ "Nursery",
+ "Paper",
+ "Playful",
+ "Red",
+ "Tan",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441026_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-48-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-48-1",
+ "title": "Henrietta's 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG_540049_1_7986cfbd-5b62-4954-86b2-9598b2277832.jpg?v=1756872697",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Henrietta's 1950's Mid",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Paper",
+ "Retro",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-48-1"
+ },
+ {
+ "sku": "dig_591088_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591088_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Korkington 1950's Kitchen Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at8.13.23AM_41b45cfe-86df-438a-8bd9-090d782c73cb.png?v=1756871171",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Conversational",
+ "Coral",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fish",
+ "Kitchen",
+ "Korkington 1950's Kitchen Mid",
+ "Light Gray",
+ "Light Grey",
+ "Lobster",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Novelty",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Teal",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591088_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42089_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42089_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Latimer's 1940's Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-31at9.17.44AM.png?v=1756872446",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Hallway",
+ "Latimer's 1940's Stripe Mid",
+ "Light Brown",
+ "Light Coral",
+ "Living Room",
+ "Mid-Century Modern",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Silver",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Terracotta",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42089_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "lindas-authentic-vintage-1950s-reproduction-wallpapers-3-1",
+ "handle": "lindas-authentic-vintage-1950s-reproduction-wallpapers-3-1",
+ "title": "Linda's Authentic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553825_grayscale_8ed1ad65-30ad-4fe0-af5e-8c6ffa76fade.jpg?v=1756868197",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Charcoal Grey",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dark Academia",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Light Grey",
+ "Living Room",
+ "Moody",
+ "Non-woven",
+ "Paper",
+ "Pattern",
+ "Primary Suite",
+ "Retro",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lindas-authentic-vintage-1950s-reproduction-wallpapers-3-1"
+ },
+ {
+ "sku": "marias-tulips-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "marias-tulips-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "MariaÕs Tulips Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553913_black_6aa82771-5ff5-45f9-8ce9-3b4f612f4894.jpg?v=1756868193",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Sage Green",
+ "Textured",
+ "Traditional",
+ "Tulips",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marias-tulips-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "ramonas-tulips-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "ramonas-tulips-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "MariaÕs Tulips Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55391_original_4f69371a-ec0e-4a4c-8b78-0b60dce4f0b4.jpg?v=1756868240",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Brown",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Lime Green",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Off-white",
+ "Office",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramonas-tulips-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "mount-vernon-infinite-sizeª-patriotic-americana-1940s-wallpaper-1",
+ "handle": "mount-vernon-infinite-sizeª-patriotic-americana-1940s-wallpaper-1",
+ "title": "Mount Vernon Muralª - 1940's Vintage Patriotic Americana Wallcovering | DW Bespoke Studios",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-01at8.42.19AM_eca4619e-563c-416c-9b69-2bd5c9bc40c0.png?v=1756867367",
+ "tags": [
+ "1940's",
+ "1943",
+ "Animal Print",
+ "Animal/Insects",
+ "Aqua",
+ "Architectural",
+ "Art Production",
+ "Available in Type 2 Vinyl",
+ "Bedroom",
+ "Black",
+ "Blue",
+ "Camille",
+ "Commercial",
+ "Contemporary",
+ "Copyright",
+ "Custom",
+ "Custom Fabric Available",
+ "Custom Wallcovering",
+ "Customize",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eagle",
+ "Eco-Friendly Paper",
+ "Exclusive Design",
+ "Forest Green",
+ "Green",
+ "Multi",
+ "Mural",
+ "Non-woven",
+ "Novelty",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "patriotic",
+ "Playful",
+ "Primary Suite",
+ "Printed on Paper",
+ "Red",
+ "Scenic",
+ "Set Decorator",
+ "Set Design",
+ "Steel",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mount-vernon-infinite-sizeª-patriotic-americana-1940s-wallpaper-1"
+ },
+ {
+ "sku": "nancys-authentic-vintage-1950s-reproduction-wallpapers-4-1",
+ "handle": "nancys-authentic-vintage-1950s-reproduction-wallpapers-4-1",
+ "title": "Nancy's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5531517_49230d0f-7f98-4896-a65b-e07fe38425b6.png?v=1756868133",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Minimalist",
+ "Modern",
+ "Nancy's Authentic Vintage 1950's s Mid",
+ "Non-woven",
+ "Pale Taupe",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nancys-authentic-vintage-1950s-reproduction-wallpapers-4-1"
+ },
+ {
+ "sku": "nancys-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "nancys-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Nancy's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5531513_BH2_colors_02_4ee99d16-441c-40ce-bb41-95a79a5f7ae9.jpg?v=1756868151",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eggplant",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Sage",
+ "Sandstone",
+ "Seafoam Green",
+ "Stripe",
+ "Tan",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nancys-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "ramonas-damask-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "ramonas-damask-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Patricia's 1950's Damask Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-55305_matchBH90210.jpg?v=1756707816",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gold",
+ "Green",
+ "Mid-Century Modern",
+ "Paper",
+ "Red",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramonas-damask-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "dig_42182_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42182_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Portsmith 1940's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-06-05at9.05.52AM.png?v=1756872387",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Office",
+ "Orange",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Portsmith 1940's Mid",
+ "Seafoam Green",
+ "Tan",
+ "Taupe",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42182_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42165_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42165_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Rockingham 1940's Modern Tile Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at8.15.44AM_a6ad480d-433d-4441-8cf7-dafe8643f598.png?v=1756872406",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Playful",
+ "Powder Room",
+ "Purple",
+ "Red",
+ "Retro",
+ "Rockingham 1940's Modern Tile Retro",
+ "Tile",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42165_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435016_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435016_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Southington 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-12at10.56.41AM.png?v=1756872340",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Coral",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eclectic",
+ "Gold",
+ "Green",
+ "Hallway",
+ "Ivory",
+ "Multi",
+ "Nautical",
+ "Navy",
+ "Novelty",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Patchwork",
+ "Playful",
+ "Red",
+ "Retro",
+ "Sage",
+ "Scenic",
+ "Southington 1940's Retro",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435016_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "elaines-authentic-vintage-1950s-wallpapers-4-1",
+ "handle": "elaines-authentic-vintage-1950s-wallpapers-4-1",
+ "title": "Springfield 1950'S Bird Brancheson Basketweave Grasscloth Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-02-16at4.57.03PM_2c9ab3d6-5ceb-4a91-ab20-cfa41ed5ae71.png?v=1756868054",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Brown",
+ "Butterfly",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Grasscloth",
+ "Green",
+ "Living Room",
+ "Mauve",
+ "Mid-Century Modern",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pink",
+ "Sage Green",
+ "Taupe",
+ "Texture",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/elaines-authentic-vintage-1950s-wallpapers-4-1"
+ },
+ {
+ "sku": "dig_62441_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_62441_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "The Original Yeeha 1950's Cowboy - Classic Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/d72a24f4f9821cbc9b98b5d64bff0389.png?v=1773262431",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Rustic",
+ "Sage Green",
+ "Scenic",
+ "Sky Blue",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_62441_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-fabric-cream-copy-1",
+ "handle": "the-original-yeeha-1950s-cowboy-fabric-cream-copy-1",
+ "title": "The Original Yeeha 1950's Cowboy Organic Cotton Sateen Fabric - Cream Fabric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/746d06a1d4c341f83b2344c6a1ffb92b.png?v=1773261795",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Green",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Playful",
+ "Playroom",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Sage",
+ "Scenic",
+ "Southwestern",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 0,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-fabric-cream-copy-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-fabric-cream-copy",
+ "handle": "the-original-yeeha-1950s-cowboy-fabric-cream-copy",
+ "title": "The Original Yeeha 1950's Cowboy Organic Cotton Sateen Fabric - Cream Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2025-08-18at12.31.53PM.png?v=1773262433",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Horse",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Novelty",
+ "Office",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 69.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-fabric-cream-copy"
+ },
+ {
+ "sku": "dig_42180_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42180_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Tinsdale 1940's Wallcoverings | DW Bespoke Studios",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.20.07AM.png?v=1756872394",
+ "tags": [
+ "1940's",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Production",
+ "Available in Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Copyright",
+ "Cottagecore",
+ "Cream",
+ "Custom",
+ "Custom Fabric Available",
+ "Custom Wallcovering",
+ "Customize",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eco-Friendly Paper",
+ "English Country",
+ "Exclusive Design",
+ "Floral",
+ "Grandmillennial",
+ "leaves",
+ "Living Room",
+ "Pale Yellow",
+ "Paper",
+ "Pattern",
+ "Printed on Paper",
+ "Set Decorator",
+ "Set Design",
+ "Tan",
+ "Taupe",
+ "Tinsdale 1940's Wallcoverings",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42180_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441035_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441035_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Torrington 1940's Art Deco | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-11at8.41.27AM_d50bb338-e421-4deb-ac1a-51e56946e7f1.png?v=1756872110",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Mustard",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Peachpuff",
+ "Playful",
+ "Red",
+ "Retro",
+ "Sage",
+ "Teal",
+ "Torrington 1940's Art Deco",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441035_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42109_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42109_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Trisha's 1940's Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-42109_4b0f4573-0719-4f09-a90a-991d286aa561.jpg?v=1756872439",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Green",
+ "Khaki",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Office",
+ "Olive",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Sage",
+ "Silver",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Trisha's 1940's Stripe Mid",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42109_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510130_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510130_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Waitsfield 1950's Floral Lattice Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at10.58.24AM_d17dca5c-bbf2-49fb-9c80-cb2aefb1799a.png?v=1756871545",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Chintz",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Lattice",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510130_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435082_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435082_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wethersfield 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.20.28PM_7cb1406f-fdf3-4e8e-8743-83811557f4c4.png?v=1756872292",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grandmillennial",
+ "Green",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Olive Green",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Wethersfield 1940's Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435082_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441001_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441001_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Windsor 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dig-441001_696b23a3-288a-47b0-8f8b-b9f1d7cb90a9.jpg?v=1756872150",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Peachpuff",
+ "Playful",
+ "Powder Room",
+ "Red",
+ "Retro",
+ "Sky Blue",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Windsor 1940's Retro"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441001_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-50-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-50-1",
+ "title": "Woodbury 1950's Leaves Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-15at4.40.41PM_c85cd25a-6d7d-47ef-b872-fb9e269f643d.png?v=1756872688",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Leaf",
+ "Light Grey",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-50-1"
+ },
+ {
+ "sku": "dig_5130132_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130132_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Addison 1950's Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130132_room_setting_0519288d-3ba4-4d52-b947-7fd60d863c32.jpg?v=1756870712",
+ "tags": [
+ "Abstract",
+ "Addison 1950's Stripe Mid",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Art Nouveau",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Feather",
+ "Light Pink",
+ "Living Room",
+ "Mid-Century Modern",
+ "Navy",
+ "Off-white",
+ "Pale Green",
+ "Paper",
+ "Sophisticated",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130132_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521103_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521103_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Alisa's Authentic Vintage 1950's Reproductions Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-521103_roomsetting02_15b58786-78d0-4ccb-9e06-3247da4c1920.jpg?v=1756871522",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Non-woven",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Primary Suite",
+ "Rose",
+ "Teal",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521103_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42170_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42170_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Allentown 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.15.26AM.png?v=1756872402",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Allentown 1940's Floral Traditional",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Primary Suite",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42170_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42183_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42183_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Arlington 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.30.26AM.png?v=1756872384",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Arlington 1940's Traditional",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Blue",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grandmillennial",
+ "Gray",
+ "Hallway",
+ "Leaf",
+ "Light Beige",
+ "Light Blue",
+ "Paper",
+ "Pattern",
+ "Serene",
+ "Slate Grey",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42183_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-wallpaper-1-1",
+ "handle": "authentic-1950s-reproduction-wallpaper-1-1",
+ "title": "Authentic 1950's Reproduction Vintage Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-540002-roomsetting_62674c3c-b59d-4d36-aa8a-b7a696cbbb51.jpg?v=1756872723",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Blue",
+ "Celestial",
+ "Charcoal",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Grandmillennial",
+ "Gray",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Mustard Yellow",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Playful",
+ "Powder Blue",
+ "Powder Room",
+ "Retro",
+ "Rose Quartz",
+ "Teal",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-wallpaper-1-1"
+ },
+ {
+ "sku": "dig_441044_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441044_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Belagrada 1940'ss Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.58.50PM_cb5ba5d6-4aee-4a54-87c3-ba77c963455b.png?v=1756872086",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Apricot",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Belagrada 1940'ss Traditional",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Light Green",
+ "Nursery",
+ "Olive Green",
+ "Orange",
+ "Organic Modern",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Seafoam Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441044_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441045_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441045_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bennington 1940's Scandinavian | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.00.45PM_3eb18845-daa9-4c0e-a645-cb35d8aa25cd.png?v=1756872078",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bennington 1940's Scandinavian",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Golden Yellow",
+ "Green",
+ "Khaki",
+ "Nursery",
+ "Pale Pink",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Sage Green",
+ "Scandinavian",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441045_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "bettys-authentic-vintage-1950s-plaid-18-repeat-1",
+ "handle": "bettys-authentic-vintage-1950s-plaid-18-repeat-1",
+ "title": "Betty's 1950's 18\" Plaid Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dig-553342_mockup02.jpg?v=1756868212",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Commercial",
+ "Crimson",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "English Country",
+ "Geometric",
+ "Golden Yellow",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Mid-Century Modern",
+ "Navy Blue",
+ "Office",
+ "Paper",
+ "Pattern",
+ "Plaid",
+ "Preppy",
+ "Red",
+ "Retro",
+ "Russet",
+ "Tartan",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bettys-authentic-vintage-1950s-plaid-18-repeat-1"
+ },
+ {
+ "sku": "bettys_vintage_wallpaper_-1",
+ "handle": "bettys_vintage_wallpaper_-1",
+ "title": "Betty's Authentic Vintage 1950's Plaid - 9\" Repeat Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dig-55334_mockup01_be675c49-3663-4471-9fd3-e7805abdf28a.jpg?v=1756871365",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Commercial",
+ "Cream",
+ "Crimson",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Forest Green",
+ "Geometric",
+ "Green",
+ "Living Room",
+ "Mustard Yellow",
+ "Navy Blue",
+ "Office",
+ "Paper",
+ "Pattern",
+ "Plaid",
+ "Preppy",
+ "Red",
+ "Retro",
+ "Russet",
+ "Tartan",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bettys_vintage_wallpaper_-1"
+ },
+ {
+ "sku": "dig_51328_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51328_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bloomfield 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.26.03AM_f34e410f-bec7-40b8-bfa7-4e868723c0f3.png?v=1756871622",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bloomfield 1950's Mid",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Mustard Yellow",
+ "Olive Green",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51328_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "almas-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "almas-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Bradford 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-5130213_matchBH90210_01_mockup.jpg?v=1756707695",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Light Green",
+ "Mid-Century Modern",
+ "Paper",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/almas-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "dig_441023_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441023_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bridgeport 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-08at8.55.07AM_25a4c857-0313-42b2-b954-7fdeedcaf5a4.png?v=1756872128",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Bridgeport 1940's Retro",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Playful",
+ "Red",
+ "Retro",
+ "Sage",
+ "Tile",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441023_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "copy-of-almas-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "handle": "copy-of-almas-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "title": "Bridgewater 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130213_matchBH90210_02_mockup.jpg?v=1756867918",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "Charcoal",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Olive Green",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Sage Green",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/copy-of-almas-authentic-vintage-1950s-reproduction-wallpapers-1"
+ },
+ {
+ "sku": "dig_441053_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441053_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Brunswick 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.38.25PM_80d0d78d-9686-4b54-8529-5f1b869ff7ed.png?v=1756872064",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brunswick 1940's Traditional",
+ "Burlywood",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Light Peach",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Peachpuff",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441053_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "almas-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "almas-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Brunswick 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130213_black.jpg?v=1756867898",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/almas-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "dig_435083_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435083_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Camille's Authentic Vintage 1940's Reproductions Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-435082_room_setting_58cb9d9b-f5d1-44fa-91a5-cfea539ad7bb.jpg?v=1756872288",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grandmillennial",
+ "Light Gray",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Regencycore",
+ "Scroll",
+ "Sophisticated",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435083_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "carmellos-infinite-sizeª-1940s-wallpaper-1",
+ "handle": "carmellos-infinite-sizeª-1940s-wallpaper-1",
+ "title": "Carmellos Floral Mural - 1940's Vintage Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-22at12.26.46PM_273eb20d-8cea-49e2-a9c9-f764cb6db867.png?v=1756867358",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bohemian",
+ "Botanical",
+ "Carmellos Floral Mural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Mural",
+ "Non-woven",
+ "Orange",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Peach",
+ "Retro",
+ "Sage Green",
+ "Tangerine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carmellos-infinite-sizeª-1940s-wallpaper-1"
+ },
+ {
+ "sku": "dig_441057_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441057_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Castleton 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.43.19PM_2aa2c677-91cc-44e3-9542-f3faa121378f.png?v=1756872060",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Blue",
+ "Botanical",
+ "Castleton 1940's Retro",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "French Country",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Mid-Century Modern",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441057_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441059_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441059_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Cavendish 1940's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.44.27PM_6277f1e2-d062-4522-9533-1dc8e931f9ab.png?v=1756872057",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Blush Pink",
+ "Botanical",
+ "Brown",
+ "Cadetblue",
+ "Cavendish 1940's Mid",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Blue",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grey",
+ "Leaf",
+ "Light Green",
+ "Light Yellow",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic Modern",
+ "Pale Yellow",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Seafoam Green",
+ "Serene",
+ "Taupe",
+ "Tropical",
+ "Tropical Leaf",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441059_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58444_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58444_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Cheshire 1950's Floral Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at10.08.23AM_3401cdeb-2d05-4c0a-87bf-3183a2333a1c.png?v=1756870668",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Champagne",
+ "Cheshire 1950's Floral Mid",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Light Blue",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Paper",
+ "Sea Green",
+ "Serene",
+ "Sky Blue",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58444_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441063_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441063_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Clarendon 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.46.31PM_e9615c3e-7fb9-46c1-9420-8a2d41d98e44.png?v=1756872050",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Clarendon 1940's Traditional",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Light Beige",
+ "Living Room",
+ "Off-white",
+ "Orange",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Serene",
+ "Teal",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441063_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "clowning-around-authentic-vintage-1950s-reproduction-wallpaper-1-1",
+ "handle": "clowning-around-authentic-vintage-1950s-reproduction-wallpaper-1-1",
+ "title": "Clowning Around Authentic Vintage 1950's Reproduction Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-16at2.50.40PM.png?v=1756868020",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Balloons",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Charcoal Gray",
+ "Clowns",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Elephant",
+ "Gray",
+ "Grey",
+ "Horse",
+ "Light Blue",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Scenic",
+ "Traditional",
+ "Trees",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/clowning-around-authentic-vintage-1950s-reproduction-wallpaper-1-1"
+ },
+ {
+ "sku": "dig_501102_vintage_wallpaper_designer_wallcoverings",
+ "handle": "dig_501102_vintage_wallpaper_designer_wallcoverings",
+ "title": "Cornwall 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.49.04PM.png?v=1756708520",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cornwall 1950's Floral Traditional",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Paper",
+ "Pink",
+ "Red",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_501102_vintage_wallpaper_designer_wallcoverings"
+ },
+ {
+ "sku": "dig_591020_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591020_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Deandra's 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-03at4.09.28PM_4641cde1-58df-4ffc-a855-f579cba0523b.png?v=1756871213",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Deandra's 1950's Mid",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591020_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42078_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42078_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Dixfield 1940's Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at7.42.43AM.png?v=1756872449",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dixfield 1940's Stripe Traditional",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Hallway",
+ "Light Gray",
+ "Living Room",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Slate Gray",
+ "Stripe",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42078_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58719_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58719_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Durham 1950's Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG58719_1c8a8b3f-6dd8-4fa5-af5e-aeebb474da0a.jpg?v=1756871246",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Durham 1950's Stripe Traditional",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Light Green",
+ "Light Peach",
+ "Living Room",
+ "Mid-Century Modern",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58719_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42061_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42061_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ema's 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-42061_original_c7734b47-49f2-4daf-92a5-2fb8302a355b.jpg?v=1756872472",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burnt Sienna",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42061_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "emas-authentic-vintage-1940s-reproduction-wallpapers-2-1",
+ "handle": "emas-authentic-vintage-1940s-reproduction-wallpapers-2-1",
+ "title": "Ema's 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-17at10.57.12AM_4fe0eb26-2aa3-42e6-bd52-78841d5b1dad.png?v=1756867889",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Burgundy",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Edwardian",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Grey",
+ "Hallway",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Red",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emas-authentic-vintage-1940s-reproduction-wallpapers-2-1"
+ },
+ {
+ "sku": "emas-authentic-vintage-1940s-reproduction-wallpapers-on-silver-mylar-1-1",
+ "handle": "emas-authentic-vintage-1940s-reproduction-wallpapers-on-silver-mylar-1-1",
+ "title": "Ema's 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_4206132_Silver_Mylar_04178fbc-b6a8-4170-8265-e663b9828be2.gif?v=1756868073",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Ema's 1940's Traditional",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Grey",
+ "Light Gray",
+ "Living Room",
+ "Olive Green",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Red",
+ "Silver",
+ "Sophisticated",
+ "Stripe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emas-authentic-vintage-1940s-reproduction-wallpapers-on-silver-mylar-1-1"
+ },
+ {
+ "sku": "emas-authentic-vintage-1940s-reproduction-wallpapers-on-gold-mylar-1",
+ "handle": "emas-authentic-vintage-1940s-reproduction-wallpapers-on-gold-mylar-1",
+ "title": "Ema's 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_4206131_Gold_Mylar_580f946d-be21-450c-8a1f-6b759558d99c.gif?v=1756868077",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Ema's 1940's Traditional",
+ "English Country",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Khaki",
+ "Living Room",
+ "Maroon",
+ "Olive Drab",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Red",
+ "Sage",
+ "Stripe",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emas-authentic-vintage-1940s-reproduction-wallpapers-on-gold-mylar-1"
+ },
+ {
+ "sku": "emas-authentic-vintage-1940s-reproduction-wallpapers-1-1",
+ "handle": "emas-authentic-vintage-1940s-reproduction-wallpapers-1-1",
+ "title": "Ema's 1940's Victorian | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-02-10at11.44.46AM_5a129e17-46c9-47df-9200-0e20d08358a3.png?v=1756868081",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dark Academia",
+ "Dining Room",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Ema's 1940's Victorian",
+ "Floral",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Red",
+ "Regencycore",
+ "Sophisticated",
+ "Stripe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emas-authentic-vintage-1940s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "dig_58726_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58726_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Fairfield 1950's Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-04-13at11.42.47AM_2f9eb64c-124c-4c95-b8ef-7e0aa82393fe.png?v=1756871236",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fairfield 1950's Stripe Traditional",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Light Green",
+ "Living Room",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Sage",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58726_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510142_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510142_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Fayette 1950's Floral Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.52.39AM_1f91b24b-f8af-4aa4-b617-a233950ec165.png?v=1756871539",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Butter Yellow",
+ "Chintz",
+ "Commercial",
+ "Coral Red",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Paper",
+ "Pink",
+ "Red",
+ "Retro",
+ "Rose Pink",
+ "Sky Blue",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510142_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "gigis-authentic-vintage-1940s-reproduction-wallpapers-1",
+ "handle": "gigis-authentic-vintage-1940s-reproduction-wallpapers-1",
+ "title": "Gigi's 1940'ss Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-4350322_Version2-room_settingcreative_dc709fef-1fc9-43cf-911d-d5b690f7fdcb.jpg?v=1756867551",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Charcoal Gray",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Grey",
+ "Hotel Lobby",
+ "Leaf",
+ "Modern",
+ "Non-woven",
+ "Organic Modern",
+ "Paper",
+ "Restaurant",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gigis-authentic-vintage-1940s-reproduction-wallpapers-1"
+ },
+ {
+ "sku": "dig_58108_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58108_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Giulia's 1950's Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-27at7.25.38PM_714667ac-d010-4ba2-ad04-50534e08997a.png?v=1756871286",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bathroom",
+ "Beige",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Giulia's 1950's Geometric Mid",
+ "Grandmillennial",
+ "Green",
+ "Mid-Century Modern",
+ "Modern",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Playful",
+ "Powder Room",
+ "Red",
+ "Retro",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58108_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "giulias-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "handle": "giulias-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "title": "Giulia'S 1950'S Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-04-13at12.02.57PM_8647c0f9-7702-4b84-abc1-7c00696ce9e8.png?v=1756867731",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Gold",
+ "Grandmillennial",
+ "Lavender",
+ "Living Room",
+ "Mid-Century Modern",
+ "Navy",
+ "Paper",
+ "Purple",
+ "Retro",
+ "Serene",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/giulias-authentic-vintage-1950s-reproduction-wallpapers-1"
+ },
+ {
+ "sku": "giulias-1950s-geometric-wallcovering-dw-bespoke-studios",
+ "handle": "giulias-1950s-geometric-wallcovering-dw-bespoke-studios",
+ "title": "Giulia's 1950s Geometric Wallcovering | DW Bespoke Studios",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-04-13at12.02.57PM_9283a129-4c97-4d5d-90fd-704724b89d3e.png?v=1774290657",
+ "tags": [
+ "Bedroom",
+ "Blue",
+ "Color: Purple",
+ "Contemporary",
+ "Dining Room",
+ "Floral",
+ "Geometric",
+ "Gold",
+ "Grandmillennial",
+ "Lavender",
+ "Living Room",
+ "Modern",
+ "Navy",
+ "Pattern",
+ "Purple",
+ "Serene",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/giulias-1950s-geometric-wallcovering-dw-bespoke-studios"
+ },
+ {
+ "sku": "dig_51117_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51117_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Hillboro Botanical 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-51117_room_setting_07965a0b-af9a-468f-a715-36b0b6c587ac.jpg?v=1756871807",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grandmillennial",
+ "Green",
+ "Hillboro Botanical 1950's Mid",
+ "Light Beige",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Tree",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51117_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_51107_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51107_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Isabel's 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_51107_room_setting.jpg?v=1756871823",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Isabel's 1950's Mid",
+ "Lavender Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Rosybrown",
+ "Serene",
+ "Terracotta",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51107_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5310028_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5310028_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Kiki's Floral 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at8.09.53AM_2ecc703f-febf-424d-9a3f-078048317fc5.png?v=1756871415",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Kiki's Floral 1950's Mid",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Slate Blue",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5310028_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42211_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42211_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Lakesdale 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-10-24at10.07.49AM.png?v=1756872362",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lakesdale 1940's Retro",
+ "Light Blue",
+ "Light Goldenrodyellow",
+ "Living Room",
+ "Nursery",
+ "Pale Yellow",
+ "Paper",
+ "Pink",
+ "Retro",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42211_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441061_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441061_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Leontown 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-441061_room_setting_7e1519b7-e41d-45ad-8666-45059d9c52c3.jpg?v=1756872052",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Leontown 1940's Retro",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Red",
+ "Retro",
+ "Sage Green",
+ "Sky Blue",
+ "Tile",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441061_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42036_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42036_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Lillith's 1940's Coastal | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at7.26.59AM.png?v=1756872475",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Bird",
+ "Birds",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Light Green",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Sage",
+ "Scandinavian",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42036_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "lindas-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "lindas-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Linda's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-55382_BH.jpg?v=1770402627",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Burgundy",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Mid-Century Modern",
+ "Paper",
+ "Red",
+ "Retro",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lindas-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "lindas-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "lindas-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Linda's Authentic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55382_black_eb03c748-d267-4dc4-bacc-3fe0cd94f28f.jpg?v=1756868206",
+ "tags": [
+ "Architectural",
+ "Arts & Crafts",
+ "Bedroom",
+ "Black",
+ "Blue",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Light Grey",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Primary Suite",
+ "Retro",
+ "Salmon",
+ "smooth",
+ "Teal",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lindas-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "dig_55392_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55392_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "MariaÕs Tulips 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55392_original.jpg?v=1756871326",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "MariaÕs Tulips 1950's Mid",
+ "Maroon",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55392_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "maria-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "handle": "maria-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "title": "MariaÕs Tulips Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55392_black_fb0d7994-de69-4869-9da3-196e8097d3d5.jpg?v=1756868236",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Hallway",
+ "Light Grey",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Retro",
+ "Salmon",
+ "Seafoam Green",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maria-authentic-vintage-1950s-reproduction-wallpapers-1"
+ },
+ {
+ "sku": "dig_55393_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55393_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Martha's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55393_original_color.jpg?v=1756871322",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Green",
+ "Living Room",
+ "Martha's Authentic Vintage 1950's s Mid",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Retro",
+ "Salmon",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55393_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "marthas-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "marthas-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Martha's Authentic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553934_black_6f702431-2315-4522-80bb-a0300a112052.jpg?v=1756867985",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Charcoal",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Grey",
+ "Hallway",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Sage",
+ "Taupe",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marthas-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "dig_58435_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58435_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Maxine's 1950's Plaid Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-58435_12_inch.jpg?v=1756870677",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Check",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Geometric",
+ "Hallway",
+ "Living Room",
+ "Maxine's 1950's Plaid Mid",
+ "Mid-Century Modern",
+ "Paper",
+ "Plaid",
+ "Red",
+ "Retro",
+ "Tan",
+ "Tartan",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58435_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58420_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58420_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Maxine's Authentic Vintage 1950's Reproductions Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-58420_room_setting_0f04b4a1-9a73-44b3-b888-d9c8c442c6ca.jpg?v=1756870681",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Maxine's Authentic Vintage 1950's Reproductions Traditional",
+ "Mustard Yellow",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Red",
+ "Retro",
+ "Rose",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58420_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350109_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350109_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Merrimack 1940's Kitchen Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-12at10.57.54AM_08410530-dae4-4514-94f0-335d956ff1ed.png?v=1756872245",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Botanical",
+ "Brick",
+ "Burnt Orange",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350109_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "nancys-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "handle": "nancys-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "title": "Nancy's Authentic Vintage 1950's Art Deco | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mockup06_4407b2ac-520d-4fd9-88db-e3a4a0edd2b7.jpg?v=1756868144",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Charcoal Grey",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Glamorous",
+ "Gray",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Sophisticated",
+ "Stripe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nancys-authentic-vintage-1950s-reproduction-wallpapers-2-1"
+ },
+ {
+ "sku": "nancys-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "nancys-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Nancy's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-553151_BH1-_colors_01.jpg?v=1756707784",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Sea Green",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nancys-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "nancys-authentic-vintage-1950s-reproduction-wallpapers-3-1",
+ "handle": "nancys-authentic-vintage-1950s-reproduction-wallpapers-3-1",
+ "title": "Nancy's Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553151-BP-black_positive_bf9cad6c-8bc3-4b13-be06-27853635a72d.jpg?v=1756868137",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Hallway",
+ "Living Room",
+ "Mid-Century Modern",
+ "Minimalist",
+ "Modern",
+ "Onyx",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Stripe",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nancys-authentic-vintage-1950s-reproduction-wallpapers-3-1"
+ },
+ {
+ "sku": "dig_5011120_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5011120_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Northfield 1950's Drapery Swag Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5011120_mockup.jpg?v=1756871892",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Brown",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Edwardian",
+ "Floral",
+ "Grandmillennial",
+ "Light Blue",
+ "Light Brown",
+ "Living Room",
+ "Mid-Century Modern",
+ "Northfield 1950's Drapery Swag Mid",
+ "Nursery",
+ "Off White",
+ "Pale Blue",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Serene",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011120_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441028_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441028_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Norwalk 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-441028_room_setting_5ff0af14-b3bd-43aa-80de-c7a1b74a9ffe.jpg?v=1756872119",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bathroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Light Pink",
+ "Mid-century",
+ "Norwalk 1940's Retro",
+ "Nursery",
+ "Orange",
+ "Pale Pink",
+ "Paper",
+ "Pastel Yellow",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Powder Room",
+ "Red",
+ "Retro",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441028_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "ramonas-damask-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "ramonas-damask-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Patricia's 1950's Damask Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55305_open_45984675-dd2d-4a0c-a525-cbed2ba13107.jpg?v=1756868246",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Lamp",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramonas-damask-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "patricia-damask-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "handle": "patricia-damask-authentic-vintage-1950s-reproduction-wallpapers-1",
+ "title": "Patricia's 1950's Damask Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55305_black_cb460177-debb-49bf-99f1-997c756de988.jpg?v=1756868252",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Grey",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Paper",
+ "Pattern",
+ "Silver",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patricia-damask-authentic-vintage-1950s-reproduction-wallpapers-1"
+ },
+ {
+ "sku": "dig_51116_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51116_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Pennington 1950's Tree Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.03.38AM_047108b0-4acb-48cb-8125-5c674c151c49.png?v=1756871819",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Green",
+ "Light Pink",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Olive Green",
+ "Orange",
+ "Organic",
+ "Paper",
+ "Peach",
+ "Pennington 1950's Tree Mid",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Tree",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51116_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_591066_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591066_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Perkinsville 1950's Fish Aquarium Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-02-03at12.56.28PM.png?v=1756871193",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fish",
+ "Hallway",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Nautical",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Perkinsville 1950's Fish Aquarium Mid",
+ "Pink",
+ "Playful",
+ "Retro",
+ "Salmon",
+ "Scenic",
+ "Tan",
+ "Teal",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591066_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "piermont-1940s-wallpaper-dw-bespoke-studios-flame-scarlet-orange-autumn-glaze-orange-1",
+ "handle": "piermont-1940s-wallpaper-dw-bespoke-studios-flame-scarlet-orange-autumn-glaze-orange-1",
+ "title": "Piermont 1940's Cody Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored__d2691e_de0fa999-1684-492f-93a9-cc5df0c4458d.jpg?v=1758771764",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bohemian",
+ "Brown",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Piermont 1940's Cody Retro",
+ "Retro",
+ "Russet",
+ "Rustic",
+ "Taupe",
+ "Tuscan",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/piermont-1940s-wallpaper-dw-bespoke-studios-flame-scarlet-orange-autumn-glaze-orange-1"
+ },
+ {
+ "sku": "dig_4350142_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350142_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Piermont 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at6.44.18AM_16a5e4fb-337f-4da8-be5d-7bd8b34d10a5.png?v=1756872174",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Floral",
+ "Geometric",
+ "Gold",
+ "Golden Brown",
+ "Green",
+ "Khaki",
+ "Living Room",
+ "Olive Green",
+ "Orange",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Piermont 1940's Retro",
+ "Retro",
+ "Rustic",
+ "Tangerine",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350142_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "piermont-1940s-wallpaper-dw-bespoke-studios-flame-scarlet-orange-autumn-glaze-orange",
+ "handle": "piermont-1940s-wallpaper-dw-bespoke-studios-flame-scarlet-orange-autumn-glaze-orange",
+ "title": "Piermont 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored__d2691e.jpg?v=1758771762",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bohemian",
+ "Brown",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Hallway",
+ "Light Tan",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Piermont 1940's Retro",
+ "Retro",
+ "Russet",
+ "Rustic",
+ "Taupe",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/piermont-1940s-wallpaper-dw-bespoke-studios-flame-scarlet-orange-autumn-glaze-orange"
+ },
+ {
+ "sku": "rockingham-1940s-modern-tile-vinyl-wallcovering-1-1",
+ "handle": "rockingham-1940s-modern-tile-vinyl-wallcovering-1-1",
+ "title": "Rockingham Muralª - 1940's Vintage Reproduction Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at8.15.36AM_f4de197a-0244-4578-bb2b-b28e964e66ad.png?v=1756867394",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Green",
+ "Mid-Century Modern",
+ "Mural",
+ "Paper",
+ "Playful",
+ "Purple",
+ "Red",
+ "Restaurant",
+ "Retail",
+ "Retro",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rockingham-1940s-modern-tile-vinyl-wallcovering-1-1"
+ },
+ {
+ "sku": "copy-of-madelyns-pink-and-lavender-ribbon-trellis-1",
+ "handle": "copy-of-madelyns-pink-and-lavender-ribbon-trellis-1",
+ "title": "St Bart's 1950's Tropical Golf Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-21at4.20.56PM_f4a25fce-109f-4f00-a7d1-f6448611cf46.png?v=1770330026",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Hallway",
+ "Living Room",
+ "Maroon",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Off-white",
+ "Ogee",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Sophisticated",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/copy-of-madelyns-pink-and-lavender-ribbon-trellis-1"
+ },
+ {
+ "sku": "dig_435030_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435030_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Stonington 1940's Kitchen Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-01at3.59.40PM_ece42d0f-21d8-4da5-935c-6baeeee7a052.png?v=1756872331",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Green",
+ "Kitchen",
+ "Multi",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Stonington 1940's Kitchen Retro",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435030_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_553106_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_553106_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Susan's Authentic Vintage 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553106_mockup_e573e241-8a82-4843-95e6-f8ee5df5b9f6.jpg?v=1756871302",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Green",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Susan's Authentic Vintage 1950's s Traditional",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553106_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_553106_vintage_wallpaper_designer_wallpapers",
+ "handle": "dig_553106_vintage_wallpaper_designer_wallpapers",
+ "title": "Susan'S Authentic Vintage 1950'S Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553106_mockup_955e04ad-99ec-473c-90e1-59015c2ea403.jpg?v=1756707116",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Lattice",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Serene",
+ "Susan'S Authentic Vintage 1950'S Traditional",
+ "Taupe",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553106_vintage_wallpaper_designer_wallpapers"
+ },
+ {
+ "sku": "dig_553106_vintage_wallpaper_designer_wallpapers-1",
+ "handle": "dig_553106_vintage_wallpaper_designer_wallpapers-1",
+ "title": "Susan'S Authentic Vintage 1950'S Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553106_mockup_da9c8fb0-9d4d-4fbf-a917-8f4a1dc9cc44.jpg?v=1756851568",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Green",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Susan'S Authentic Vintage 1950'S Traditional",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553106_vintage_wallpaper_designer_wallpapers-1"
+ },
+ {
+ "sku": "susans-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "susans-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Susan'S Authentic Vintage 1950'S Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_553106_black_5443613c-3c18-4507-8f5f-68ff5166d0c2.jpg?v=1756868176",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dark Academia",
+ "Dark Green",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Leaf",
+ "Lemon Yellow",
+ "Living Room",
+ "Moody",
+ "Non-woven",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susans-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-light-blue-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-light-blue-1",
+ "title": "The Original Yeeha 1950's Cowboy - Light Blue Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ac54a7b0ce2ed5c3cac5b429c9121757.png?v=1773261802",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Horse",
+ "Light Blue",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Sky Blue",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-light-blue-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-green-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-green-1",
+ "title": "The Original Yeeha 1950's Cowboy - Midnight Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/c62aff24cd5e7a6b08a554d7b2ab2a9e.png?v=1773261796",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-green-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-orange-spice-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-orange-spice-1",
+ "title": "The Original Yeeha 1950's Cowboy - Orange Spice Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/b896bf16d016b67439fe7bc76cc4814c.png?v=1773261806",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burnt Sienna",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Playful",
+ "Playroom",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-orange-spice-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-red-baron-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-red-baron-1",
+ "title": "The Original Yeeha 1950's Cowboy - Red Baron Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/c730c349c9b1b9a9bacc892284adc9e4.png?v=1773261798",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Crimson",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Horse",
+ "Lodge",
+ "Mid-Century Modern",
+ "Navy",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Playful",
+ "Playroom",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-red-baron-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-true-blue-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-true-blue-1",
+ "title": "The Original Yeeha 1950's Cowboy - True Blue Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/31b0ba61fc2a99c90a40872dfba20bdd.png?v=1773261803",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Cerulean",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Playroom",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-true-blue-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-yellow-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-yellow-1",
+ "title": "The Original Yeeha 1950's Cowboy - Yellow Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/d223c6a48728fc03bbba9f8fe8ca77ba.png?v=1773261800",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Horse",
+ "Light Yellow",
+ "Mid-Century Modern",
+ "Navy",
+ "Novelty",
+ "Nursery",
+ "Orange",
+ "Pale Yellow",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Playroom",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "Terracotta",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-yellow-1"
+ },
+ {
+ "sku": "yeeha-1950s-cowboy-wallpaper-pine-green-copy-1",
+ "handle": "yeeha-1950s-cowboy-wallpaper-pine-green-copy-1",
+ "title": "The Original Yeeha 1950's Cowboy Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dad890d9dc873d47b6283a124c82e796.png?v=1773261811",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Green",
+ "Horse",
+ "Lodge",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy Mid",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yeeha-1950s-cowboy-wallpaper-pine-green-copy-1"
+ },
+ {
+ "sku": "yeeha-1950s-cowboy-wallpaper-ecru-1",
+ "handle": "yeeha-1950s-cowboy-wallpaper-ecru-1",
+ "title": "The Original Yeeha 1950's Cowboy Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9b204c3b9138f83ac702e4642988c882.png?v=1773261808",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brick Red",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Horse",
+ "Lodge",
+ "Mid-Century Modern",
+ "Navy Blue",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Sage Green",
+ "Scenic",
+ "Southwest",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy Retro",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yeeha-1950s-cowboy-wallpaper-ecru-1"
+ },
+ {
+ "sku": "yeeha-1950s-cowboy-wallpaper-deep-denim-blue-1",
+ "handle": "yeeha-1950s-cowboy-wallpaper-deep-denim-blue-1",
+ "title": "The Original Yeeha 1950's Cowboy Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9960f416333e0da3cb79a0358d428c28.png?v=1773261810",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Horse",
+ "Mid-Century Modern",
+ "Navy",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Rustic",
+ "Sage",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy Retro",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yeeha-1950s-cowboy-wallpaper-deep-denim-blue-1"
+ },
+ {
+ "sku": "yeeha-1950s-cowboy-wallpaper-pine-green-1",
+ "handle": "yeeha-1950s-cowboy-wallpaper-pine-green-1",
+ "title": "The Original Yeeha 1950's Cowboy Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/eb11a5b03c08aeaa89ceb0c0e972bbfb.png?v=1773261813",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Forest Green",
+ "Green",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pine Green",
+ "Playful",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy Retro",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yeeha-1950s-cowboy-wallpaper-pine-green-1"
+ },
+ {
+ "sku": "yeeha-1950s-cowboy-wallpaper-rusty-brown-1",
+ "handle": "yeeha-1950s-cowboy-wallpaper-rusty-brown-1",
+ "title": "The Original Yeeha 1950's Cowboy Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2bb55fc14713481551a68419f8236b20.png?v=1773261814",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burnt Sienna",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Horse",
+ "Lodge",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy Retro",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yeeha-1950s-cowboy-wallpaper-rusty-brown-1"
+ },
+ {
+ "sku": "tillys-1950s-reproduction-vintage-wallcoverings-1",
+ "handle": "tillys-1950s-reproduction-vintage-wallcoverings-1",
+ "title": "Tilly's 1950's Reproduction Vintage Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-28at12.05.23PM_f69e61e3-1ab6-4e50-a332-4700eb65fceb.png?v=1756868112",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "Green",
+ "Leaf",
+ "Living Room",
+ "Mid-Century Modern",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Teal",
+ "Tilly's 1950's Reproduction Vintage Mid",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tillys-1950s-reproduction-vintage-wallcoverings-1"
+ },
+ {
+ "sku": "dig_51125_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51125_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Titusville 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-51125_room_setting.jpg?v=1756871790",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Nouveau",
+ "Bedroom",
+ "Blush Pink",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Sage Green",
+ "Taupe",
+ "Titusville 1950's Mid",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51125_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "clowning-around-authentic-vintage-1950s-reproduction-wallpaper-2-1",
+ "handle": "clowning-around-authentic-vintage-1950s-reproduction-wallpaper-2-1",
+ "title": "Townshend Clown Circus 1950's ON SILVER Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-16at2.53.16PM.png?v=1756868016",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Elephant",
+ "Forest Green",
+ "Gray",
+ "Green",
+ "Grey",
+ "Horse",
+ "Light Gray",
+ "Mid-Century Modern",
+ "Mustard Yellow",
+ "Novelty",
+ "Nursery",
+ "Pale Pink",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Scenic",
+ "Sky Blue",
+ "Townshend Clown Circus 1950's ON SILVER Mid",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/clowning-around-authentic-vintage-1950s-reproduction-wallpaper-2-1"
+ },
+ {
+ "sku": "dig_591025_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591025_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Townshend Clown Circus 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.58.11AM_7e20ce94-871a-4c67-9984-b08e940bf2ca.png?v=1756871209",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Conversational",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dog",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Green",
+ "Horse",
+ "Mid-century",
+ "Navy",
+ "Novelty",
+ "Nursery",
+ "Olive",
+ "Paper",
+ "Playful",
+ "Playroom",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Teal",
+ "Townshend Clown Circus 1950's Retro",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591025_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510102_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510102_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Vershir 1950's Drapery Swags Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at10.55.08AM_821ba62e-cfd4-4238-930a-34be8329a17b.png?v=1756871549",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Coral Pink",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Mid-Century Modern",
+ "Nursery",
+ "Olive Green",
+ "Pale Blue",
+ "Paper",
+ "Red",
+ "Retro",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510102_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_591081_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591081_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Vintage 1950's Leaves Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-22at9.07.53AM.png?v=1756871176",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Brick",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Orange",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Terracotta",
+ "Traditional",
+ "Vintage 1950's Leaves Mid",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591081_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435074_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435074_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wallingford 1940's Geometric Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.09.42PM_d173dfc2-a751-4f9b-944c-a4dfe79d2038.png?v=1756872307",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Gray",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Mustard Yellow",
+ "Nursery",
+ "Olive Green",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Wallcovering",
+ "Wallingford 1940's Geometric Retro",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435074_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510153_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510153_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wallingford 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at11.06.02AM_c92899e8-6441-4617-847c-c45d429c07c1.png?v=1756871528",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lemon Yellow",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Powder Blue",
+ "Rose Pink",
+ "Sage Green",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510153_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-3-1",
+ "handle": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-3-1",
+ "title": "Wanda Wandering Wisteria 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-16at4.01.18PM_faa72c45-8302-42e3-a439-b64bf0f7a0f2.png?v=1756867968",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "Mauve",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Plum",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-3-1"
+ },
+ {
+ "sku": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-4-1",
+ "handle": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-4-1",
+ "title": "Wanda's Wandering Wisteria Authentic Vintage 1950's Floral Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-16at4.03.41PM_32a05eb4-4547-490e-bbdd-e829f48dc789.png?v=1756867964",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Purple",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Light Pink",
+ "Living Room",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-4-1"
+ },
+ {
+ "sku": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-5-1",
+ "handle": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-5-1",
+ "title": "Wanda's Wandering Wisteria Authentic Vintage 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-16at4.06.25PM_5710af96-ffd5-4003-8b7d-34ce055dfc43.png?v=1756867959",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "Mauve",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Purple",
+ "Red",
+ "Retro",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-5-1"
+ },
+ {
+ "sku": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Wanda's Wandering Wisteria Authentic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5531283_black_mockup_97dd415c-2bea-4518-ba76-2801021a037c.jpg?v=1756867978",
+ "tags": [
+ "Amethyst",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wandas-wandering-wisteria-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "dig_553128_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_553128_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wanda's Wandering Wisteria Authentic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5531281_originalcolor_mockup_9c4bb2d9-9a81-4420-9266-78e5f16fc8dc.jpg?v=1756871298",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Deep Purple",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Lavender",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Wanda's Wandering Wisteria Authentic Vintage 1950's s Retro"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553128_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_553128_vintage_wallpaper_designer_wallpapers",
+ "handle": "dig_553128_vintage_wallpaper_designer_wallpapers",
+ "title": "Wanda'S Wandering Wisteria Authentic Vintage 1950'S Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5531281_originalcolor_mockup.jpg?v=1756707119",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Deep Purple",
+ "Dining Room",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Lavender",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Wanda'S Wandering Wisteria Authentic Vintage 1950'S Retro"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553128_vintage_wallpaper_designer_wallpapers"
+ },
+ {
+ "sku": "dig_553128_vintage_wallpaper_designer_wallpapers-1",
+ "handle": "dig_553128_vintage_wallpaper_designer_wallpapers-1",
+ "title": "Wanda'S Wandering Wisteria Authentic Vintage 1950'S Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5531281_originalcolor_mockup_2dad4b2c-de27-4ca2-b33f-2b0755fd1a87.jpg?v=1756851573",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Deep Purple",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Floralwhite",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Lavender",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Wanda'S Wandering Wisteria Authentic Vintage 1950'S Retro"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553128_vintage_wallpaper_designer_wallpapers-1"
+ },
+ {
+ "sku": "dig_435077_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435077_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Waterbury 1940's Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-07-07at9.06.00AM.png?v=1756872305",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Geometric",
+ "Hotel Lobby",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Primary Suite",
+ "Scandinavian",
+ "Serene",
+ "Tile",
+ "Wallcovering",
+ "Waterbury 1940's Contemporary",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435077_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435078_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435078_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Watertown 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-12at11.41.45AM.png?v=1756872299",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Chick",
+ "Chicken",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dog",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Lemon Yellow",
+ "Light Brown",
+ "Multi",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Shamrock Green",
+ "Sky Blue",
+ "Tomato Red",
+ "Traditional",
+ "Wallcovering",
+ "Watertown 1940's Retro",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435078_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521144_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521144_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Weathersfield 1950's Brick Floral Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-01-30at9.02.23AM.png?v=1756871489",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brick",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Floral",
+ "Green",
+ "Lime Green",
+ "Living Room",
+ "Organic",
+ "Paper",
+ "Red",
+ "Retro",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Weathersfield 1950's Brick Floral Retro",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521144_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435080_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435080_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Westbrook 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.16.16PM_52d4258b-ab09-461b-a2cf-840eac8e878b.png?v=1756872295",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Charcoal Grey",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Peach",
+ "Red",
+ "Retro",
+ "Sage Green",
+ "Serene",
+ "Tan",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Westbrook 1940's Floral Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435080_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521161_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521161_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Westmore 1950's Leaves Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.21.40AM_9cef181b-6355-45bf-ae4e-61570ac3076b.png?v=1756871478",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Hallway",
+ "Leaf",
+ "Light Grey",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Organic",
+ "Paper",
+ "Red",
+ "Retro",
+ "Taupe",
+ "Tropical",
+ "Wallcovering",
+ "Westmore 1950's Leaves Mid",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521161_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441036_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441036_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Winsted 1940's Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.54.45PM_a4b6e8ae-9834-44df-864c-16789234a34e.png?v=1756872106",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Lattice",
+ "Living Room",
+ "Nursery",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Red",
+ "Seafoam Green",
+ "Stripe",
+ "Tan",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Winsted 1940's Stripe Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441036_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441004_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441004_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wolcott 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.32.27PM_8b32de22-728a-4e82-baa7-d5560e2aeec2.png?v=1756872145",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Red",
+ "Retro",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wolcott 1940's Retro"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441004_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5130107_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130107_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wolfeboro 1950's Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at7.30.33AM_2e2cd95a-9f6c-4197-8ebb-a59763bd2e56.png?v=1756870721",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Navy",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Teal",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Wolfeboro 1950's Geometric Mid",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130107_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441008_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441008_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Woodbury 1940's Modern Geometrics Art Deco | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-30at9.45.17AM_9a23023c-98a0-4b52-940d-97e63f0d1806.png?v=1756872138",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Living Room",
+ "Mid-Century Modern",
+ "Modern",
+ "Navy",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Sophisticated",
+ "Tan",
+ "Wallcovering",
+ "White",
+ "Woodbury 1940's Modern Geometrics Art Deco"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441008_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-51-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-51-1",
+ "title": "Woodford 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.39.34AM_c44ba75a-117f-4704-901f-003e0013ca5a.png?v=1756872670",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-51-1"
+ },
+ {
+ "sku": "dig_441019_vintage_wallpaper_designer_wallpapers-1",
+ "handle": "dig_441019_vintage_wallpaper_designer_wallpapers-1",
+ "title": "Woodstock 1940'S Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-441019_room_setting_6e99c62f-bd0f-4902-b54e-02d8ed296963.jpg?v=1756851526",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Lattice",
+ "Living Room",
+ "Multi",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Peachpuff",
+ "Red",
+ "Retro",
+ "Sky Blue",
+ "Tomato Red",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "Woodstock 1940'S Retro"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441019_vintage_wallpaper_designer_wallpapers-1"
+ },
+ {
+ "sku": "susans-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "handle": "susans-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "title": "Worcester 1950'S Leaves Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig_5531065_white_444c792b-f7c0-4a66-b024-9e3af9dd7454.png?v=1756868171",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Mustard Yellow",
+ "Olive Green",
+ "Pale Lavender",
+ "Paper",
+ "Purple",
+ "Retro",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susans-authentic-vintage-1950s-reproduction-wallpapers-2-1"
+ },
+ {
+ "sku": "dig_5211110_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211110_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Alice's Authentic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-12at11.03.13AM.png?v=1756871448",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Alice's Authentic Vintage 1950's s Retro",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Mid-Century Modern",
+ "Nursery",
+ "Orange",
+ "Pale Turquoise",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Retro",
+ "Rose",
+ "Serene",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211110_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_591074_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591074_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Amherst Aquarium 1950'ss Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-02-06at8.30.22AM.png?v=1756871180",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Amherst Aquarium 1950'ss Mid",
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fish",
+ "Gray",
+ "Light Gray",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Nautical",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Purple",
+ "Retro",
+ "Salmon",
+ "Scenic",
+ "Taupe",
+ "Teal",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591074_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_51197_vintage_wallpaper_designer_wallpapers",
+ "handle": "dig_51197_vintage_wallpaper_designer_wallpapers",
+ "title": "Andover 1950'S Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-51197_12_inch.jpg?v=1756707105",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Andover 1950'S Stripe Mid",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Geometric",
+ "Hallway",
+ "Living Room",
+ "Mid-Century Modern",
+ "Oatmeal",
+ "Paper",
+ "Pattern",
+ "Russet",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51197_vintage_wallpaper_designer_wallpapers"
+ },
+ {
+ "sku": "dig_51235_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51235_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ashford 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-51235_room_setting.jpg?v=1756871634",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashford 1950's Traditional",
+ "Bedroom",
+ "Botanical",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dimgray",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pink",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51235_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211168_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211168_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ashland 1950's Floral Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dIG-5211168_room_setting.jpg?v=1756871424",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashland 1950's Floral Mid",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Mid-Century Modern",
+ "Pale Green",
+ "Paper",
+ "Pink",
+ "Rosybrown",
+ "Saddlebrown",
+ "Seafoam Green",
+ "Serene",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211168_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5310072_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5310072_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ashley's Authentic Vintage 1950's Reproductions Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-17at2.59.14PM_76d31516-f14e-49ed-b33c-5e316bf751a3.png?v=1756871398",
+ "tags": [
+ "1970s Retro",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashley's Authentic Vintage 1950's Reproductions Mid",
+ "Avocado Green",
+ "Brown",
+ "Burnt Umber",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eclectic",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Hallway",
+ "Medallion",
+ "Mediterranean",
+ "Mid-Century Modern",
+ "Nursery",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Peachpuff",
+ "Retro",
+ "Tangerine",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5310072_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211173_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211173_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Augusta 1950's Butterfly Floral Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-27at5.12.18PM.png?v=1756871420",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Augusta 1950's Butterfly Floral Mid",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Butter Yellow",
+ "Butterfly",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Ivory",
+ "Mid-Century Modern",
+ "Navy Blue",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Sage Green",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211173_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_51302_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51302_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Belgrade 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-08-22at2.28.52PM.png?v=1756871626",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Belgrade 1950's Floral Traditional",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Paper",
+ "Pink",
+ "Rose Pink",
+ "Sage Green",
+ "Taupe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51302_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211124_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211124_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Beverly Crest Floral 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-07at9.47.58AM_262d118a-ea51-4f37-a8f9-31e9de1197f1.png?v=1756871439",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beverly Crest Floral 1950's Traditional",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Grey",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Quartz",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211124_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441047_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441047_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bloomfield 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-11-28at11.54.35AM.png?v=1756872076",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Bloomfield 1940's Traditional",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Light Coral",
+ "Light Seagreen",
+ "Living Room",
+ "Off-white",
+ "Pale Turquoise",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Stripe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441047_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_51143_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51143_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bridgeport 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-51143_room_setting_mockup.jpg?v=1756871785",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Bridgeport 1950's Floral Traditional",
+ "Burgundy",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Red",
+ "Retro",
+ "Rose",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51143_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441048_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441048_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Bridgewater 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at2.33.44PM_e340de3a-a5e7-4566-80af-61a77b9dd3f4.png?v=1756872072",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Bridgewater 1940's Traditional",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Light Coral",
+ "Light Green",
+ "Living Room",
+ "Orange",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Peachpuff",
+ "Pink",
+ "Red",
+ "Rose Gold",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441048_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "clowning-around-authentic-vintage-1950s-wallpaper",
+ "handle": "clowning-around-authentic-vintage-1950s-wallpaper",
+ "title": "Clowning Around 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-553782_BH90210_mockup.jpg?v=1756707735",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Clown",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Elephant",
+ "Green",
+ "Horse",
+ "Mid-Century Modern",
+ "Multi",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Retro",
+ "Scenic",
+ "Tree",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/clowning-around-authentic-vintage-1950s-wallpaper"
+ },
+ {
+ "sku": "clowning-around-authentic-vintage-1950s-wallpaper-1-1",
+ "handle": "clowning-around-authentic-vintage-1950s-wallpaper-1-1",
+ "title": "Clowning Around 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553784_open_mockup.jpg?v=1756868026",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Balloon",
+ "Bedroom",
+ "Blue",
+ "Burgundy",
+ "Charcoal",
+ "Clown",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Elephant",
+ "Golden Yellow",
+ "Gray",
+ "Green",
+ "Horse",
+ "Lattice",
+ "Lightgray",
+ "Mid-Century Modern",
+ "Multi",
+ "Novelty",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Playroom",
+ "Red",
+ "Retro",
+ "Rose",
+ "Sage Green",
+ "Scenic",
+ "Sky Blue",
+ "Textured",
+ "Tree",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/clowning-around-authentic-vintage-1950s-wallpaper-1-1"
+ },
+ {
+ "sku": "copy-of-clowning-around-authentic-vintage-1950s-wallpaper-1",
+ "handle": "copy-of-clowning-around-authentic-vintage-1950s-wallpaper-1",
+ "title": "Clowning Around 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553783_Black_mockup.jpg?v=1756868030",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Balloon",
+ "Bedroom",
+ "Charcoal Gray",
+ "Clown",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Elephant",
+ "Gray",
+ "Grey",
+ "Horse",
+ "Light Gray",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Retro",
+ "Scenic",
+ "Tree",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/copy-of-clowning-around-authentic-vintage-1950s-wallpaper-1"
+ },
+ {
+ "sku": "clowning-around-authentic-vintage-1950s-reproduction-wallpaper",
+ "handle": "clowning-around-authentic-vintage-1950s-reproduction-wallpaper",
+ "title": "Clowning Around Authentic Vintage 1950's Reproduction Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2022-03-16at2.48.38PM.png?v=1756707730",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Balloons",
+ "Beige",
+ "Blue",
+ "Clowns",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Elephant",
+ "Green",
+ "Horse",
+ "Mid-Century Modern",
+ "Multi",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Scenic",
+ "Trees",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/clowning-around-authentic-vintage-1950s-reproduction-wallpaper"
+ },
+ {
+ "sku": "dig_58458_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58458_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Colebrook 1950's Floral Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at10.27.22AM_159b79c2-1616-4ca0-afe3-d74d16ad04d9.png?v=1756870659",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Colebrook 1950's Floral Stripe Mid",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Paper",
+ "Red",
+ "Retro",
+ "Sky Blue",
+ "Stripe",
+ "Tan",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58458_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_553151_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_553151_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Concord 1950's Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mockup01_6c20ec24-725f-4dda-a77a-17184d315770.jpg?v=1756871293",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Concord 1950's Stripe Mid",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dark Olivegreen",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Leaf",
+ "Light Goldenrodyellow",
+ "Light Gray",
+ "Lime",
+ "Living Room",
+ "Mid-Century Modern",
+ "Pale Lavender",
+ "Paper",
+ "Pattern",
+ "Purple",
+ "Sophisticated",
+ "Stripe",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_553151_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42141_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42141_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Crewville 1940's Tulip Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Authentic_Reproduction_1940s_Wallpaper-72dpi-DIG-42141_1154126a-54d7-4462-8bbf-36328943dda8.jpg?v=1756872427",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Flowers",
+ "Grandmillennial",
+ "Green",
+ "Mid-century",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Polka Dot",
+ "Red",
+ "Retro",
+ "Stripe",
+ "Tomato Red",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42141_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58703_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58703_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Danbury 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-21at12.20.26PM_0b40b4b6-06d4-45f0-8c54-72e04e09089f.png?v=1756871249",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Danbury 1950's Floral Traditional",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mustard",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Red",
+ "Retro",
+ "Rose",
+ "Sage",
+ "Taupe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58703_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_51187_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51187_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Danbury 1950's Floral Trellis Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.10.27AM_404be122-0a1c-44c2-a53d-054af5cda56f.png?v=1756871781",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Danbury 1950's Floral Trellis Traditional",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Nursery",
+ "Olive Green",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Peachpuff",
+ "Pink",
+ "Rose",
+ "Traditional",
+ "Trellis",
+ "Vine",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51187_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42131_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42131_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Durham 1940's Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at7.56.19AM.png?v=1756872431",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Seagreen",
+ "display_variant",
+ "Durham 1940's Stripe Traditional",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Green",
+ "Hallway",
+ "Light Gray",
+ "Living Room",
+ "Off-white",
+ "Pale Sage",
+ "Paper",
+ "Pattern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42131_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42121_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42121_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Eastway Lighthouse 1940's Sea Gulls Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-06-22at9.41.17AM.png?v=1759877446",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Light Beige",
+ "Light Gray",
+ "Light Green",
+ "Living Room",
+ "Misty Green",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42121_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350149_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350149_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Fayette 1940's Geometrics Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at6.49.35AM_cf293d01-3843-4e02-a5d8-c149983eaac7.png?v=1756872163",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fayette 1940's Geometrics Retro",
+ "Floral",
+ "Geometric",
+ "Golden Yellow",
+ "Gray",
+ "Living Room",
+ "Medallion",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350149_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_441033_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441033_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Hawaii Tropic 1940's Tropical | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.50.57PM_aca24a2d-6e8d-4e94-8017-63bbc87d0520.png?v=1756872114",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Hawaii Tropic 1940's Tropical",
+ "Light Green",
+ "Living Room",
+ "Nursery",
+ "Orange",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Retro",
+ "Rose",
+ "Sage Green",
+ "Traditional",
+ "Tropical",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441033_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42181_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42181_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Henniker 1940'ss Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-42181_room_setting01.jpg?v=1756872391",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Henniker 1940'ss Traditional",
+ "Light Blue",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Taupe",
+ "Traditional",
+ "Trellis",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42181_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "infinite-sizeª-hillville-1940s-modern-geometric-wallpaper-1",
+ "handle": "infinite-sizeª-hillville-1940s-modern-geometric-wallpaper-1",
+ "title": "Hillville Muralª - 1940's Modern Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-42150_room_setting_infinite_size_1_0732ec46-176f-47ff-8b76-2bf106b07b03.jpg?v=1756867389",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eclectic",
+ "Emerald Green",
+ "Floral",
+ "Geometric",
+ "Green",
+ "Lemon Yellow",
+ "Living Room",
+ "Maximalist",
+ "Mid-Century Modern",
+ "Mural",
+ "Navy Blue",
+ "Non-Woven",
+ "Orange",
+ "Playful",
+ "Red",
+ "Restaurant",
+ "Tangerine",
+ "Tomato Red",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/infinite-sizeª-hillville-1940s-modern-geometric-wallpaper-1"
+ },
+ {
+ "sku": "infinite-size™-hillville-1940s-modern-geometric-wallpaper",
+ "handle": "infinite-size™-hillville-1940s-modern-geometric-wallpaper",
+ "title": "Hillville Mural™ - 1940's Modern Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-42150_room_setting_infinite_size_1.jpg?v=1756707511",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Hillville Mural™",
+ "Maximalist",
+ "Mid-Century Modern",
+ "Mural",
+ "Paper",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/infinite-size™-hillville-1940s-modern-geometric-wallpaper"
+ },
+ {
+ "sku": "infinite-sizeª-hudson-1950s-wallpaper-1",
+ "handle": "infinite-sizeª-hudson-1950s-wallpaper-1",
+ "title": "Hudson Muralª - 1950's Vintage Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-11at3.44.42PM_aa314949-bcc7-4742-b4f0-d19bb7116022.png?v=1756867385",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eclectic",
+ "Floral",
+ "Geometric",
+ "Gold",
+ "Grandmillennial",
+ "Hotel Lobby",
+ "Mid-Century Modern",
+ "Mural",
+ "Navy Blue",
+ "Restaurant",
+ "Retro",
+ "Sophisticated",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/infinite-sizeª-hudson-1950s-wallpaper-1"
+ },
+ {
+ "sku": "dig_5011152_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5011152_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Laurena's Leaf Floral 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-12at10.17.49AM.png?v=1756871835",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Green",
+ "Laurena's Leaf Floral 1950's Mid",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off White",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Traditional",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011152_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5130173_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130173_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Lexingtown 1950's Leaf Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130173_room_setting.jpg?v=1756870703",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Lexingtown 1950's Leaf Mid",
+ "Light Gray",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Sage",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130173_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55382_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55382_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Lia's 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-12at11.36.16AM.png?v=1756871334",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Lavender",
+ "Leaf",
+ "Lia's 1950's Mid",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Nursery",
+ "Organic",
+ "Paper",
+ "Pink",
+ "Purple",
+ "Red",
+ "Sage Green",
+ "Slate Blue",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55382_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58442_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58442_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Maxine's Authentic Vintage 1950's Reproductions Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-17at10.57.29AM_832a6ef7-75aa-4237-90f3-2a0c7fa8c00c.png?v=1756870673",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Green",
+ "Light Beige",
+ "Light Pink",
+ "Living Room",
+ "Maxine's Authentic Vintage 1950's Reproductions Traditional",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose",
+ "Sage",
+ "Serene",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58442_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211107_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211107_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Morristown 1950's Scroll Rococo | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at7.43.20AM_4e83fbac-327a-49f2-bdd3-e8f2e96cbedc.png?v=1756871462",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Antique White",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Gray",
+ "Light Blue",
+ "Living Room",
+ "Morristown 1950's Scroll Rococo",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Powder Blue",
+ "Rococo",
+ "Rose Taupe",
+ "Scroll",
+ "Silver Grey",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211107_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350115_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350115_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Mount Vernon Patriotic Americana 1940's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-4350115_room_setting_9dfcbae3-3159-41ad-959b-6999c665fc90.jpg?v=1756872231",
+ "tags": [
+ "Americana",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Blue",
+ "Commercial",
+ "Crimson",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eagle",
+ "Eclectic",
+ "Green",
+ "Hotel Lobby",
+ "Light Gray",
+ "Medallion",
+ "Mid-century",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Powder Room",
+ "Red",
+ "Restaurant",
+ "Retro",
+ "Sage Green",
+ "Sky Blue",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350115_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5011148_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5011148_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Northfield 1950's Drapery Swag Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-30at8.13.34AM_45412a62-5045-442e-9ea0-0a2141ab87ba.png?v=1756871853",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lace",
+ "Northfield 1950's Drapery Swag Traditional",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Primary Suite",
+ "Rose",
+ "Sage Green",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011148_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55305_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55305_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Patricia's 1950's Damask Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55305_original.jpg?v=1756871377",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Luxe",
+ "Paper",
+ "Patricia's 1950's Damask Traditional",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Teal",
+ "Traditional",
+ "Turquoise",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55305_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350128_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350128_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Pembroke 1940's Scenic Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-01at3.39.54PM.png?v=1756872212",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "Farmhouse",
+ "Green",
+ "Light Green",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Nursery",
+ "Off White",
+ "Olive Green",
+ "Orange",
+ "Organic",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Pembroke 1940's Scenic Mid",
+ "Pink",
+ "Retro",
+ "Rose Quartz",
+ "Scenic",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350128_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_591060_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591060_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Pittsford 1950's Aquarium Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-02-02at9.03.17AM.png?v=1756871198",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fish",
+ "Gray",
+ "Grey",
+ "Light Gray",
+ "Mid-Century Modern",
+ "Nautical",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pittsford 1950's Aquarium Mid",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Serene",
+ "Shell",
+ "Taupe",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591060_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510056_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510056_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Putney Pond 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Vintage_Wallpaper_Dig-510056_38327855-575a-49a5-81b6-5b6c94bcfda3.jpg?v=1756871581",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Light Pink",
+ "Living Room",
+ "Mid-Century Modern",
+ "Paper",
+ "Seafoam Green",
+ "Serene",
+ "Teal",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510056_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55303_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55303_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ramona's 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-21at12.14.51PM.png?v=1756871381",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Crimson",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Ramona's 1950's Floral Traditional",
+ "Red",
+ "Retro",
+ "Rose Pink",
+ "Sky Blue",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55303_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "rosies-roses-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "rosies-roses-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Readsboro 1950's Rose Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.49.44AM.png?v=1756707725",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Mid-Century Modern",
+ "Paper",
+ "Red",
+ "Roses",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rosies-roses-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "rosies-roses-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "handle": "rosies-roses-authentic-vintage-1950s-reproduction-wallpapers-2-1",
+ "title": "Rosie's Roses 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553804_mylar_mockup_cea1117a-db48-4bde-b25b-ea81d46f3c62.jpg?v=1756867991",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Charcoal Gray",
+ "Chintz",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Primary Suite",
+ "Red",
+ "Rose Pink",
+ "Sage Green",
+ "Sophisticated",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rosies-roses-authentic-vintage-1950s-reproduction-wallpapers-2-1"
+ },
+ {
+ "sku": "dig_55380_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55380_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Rosie's Roses 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-55380_original_color_mockup.jpg?v=1756871347",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Primary Suite",
+ "Red",
+ "Retro",
+ "Rose Red",
+ "Rosie's Roses 1950's Traditional",
+ "Slate Blue",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55380_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "rosies-roses-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "rosies-roses-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Rosie's Roses Authentic Vintage 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-553803_black_mockup_cf35e8b9-71f3-4308-b885-a77136cd88b5.jpg?v=1756868010",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Burgundy",
+ "Chintz",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "Dusty Blue",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Primary Suite",
+ "Red",
+ "Rose Pink",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rosies-roses-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "sallys-authentic-scenic-vintage-1950s-wallpaper",
+ "handle": "sallys-authentic-scenic-vintage-1950s-wallpaper",
+ "title": "Sally's Authentic Scenic Vintage 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ScreenShot2022-03-17at9.39.03AM.png?v=1756707708",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Grey",
+ "House",
+ "Paper",
+ "Pattern",
+ "People",
+ "Retro",
+ "Scenic",
+ "Traditional",
+ "Trees",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sallys-authentic-scenic-vintage-1950s-wallpaper"
+ },
+ {
+ "sku": "sallys-authentic-scenic-vintage-1950s-wallpaper-3-1",
+ "handle": "sallys-authentic-scenic-vintage-1950s-wallpaper-3-1",
+ "title": "Sally's Authentic Scenic Vintage 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-17at9.44.19AM_ed896c14-93f3-444a-aa40-3745fbd8332d.png?v=1756867942",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Blue",
+ "Charcoal",
+ "Commercial",
+ "Copper",
+ "Custom Wallcovering",
+ "Dark Academia",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eclectic",
+ "Floral",
+ "Gray",
+ "Grey",
+ "Light Gray",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Powder Room",
+ "Primary Suite",
+ "Scenic",
+ "Sophisticated",
+ "Teal",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sallys-authentic-scenic-vintage-1950s-wallpaper-3-1"
+ },
+ {
+ "sku": "dig_5130217_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130217_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Sally's Authentic Scenic Vintage 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130217_original_color_mockup_ZOOM.jpg?v=1756870694",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brick Red",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Navy",
+ "Paper",
+ "Red",
+ "Retro",
+ "Sage Green",
+ "Sally's Authentic Scenic Vintage 1950's Traditional",
+ "Scenic",
+ "Tan",
+ "Taupe",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130217_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "sallys-authentic-scenic-vintage-1950s-wallpaper-1-1",
+ "handle": "sallys-authentic-scenic-vintage-1950s-wallpaper-1-1",
+ "title": "Sally's Authentic Scenic Vintage 1950's Victorian | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-17at9.41.09AM_78065798-1a1b-4c33-a19f-ddb37b17f569.png?v=1756867953",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Black",
+ "Charcoal",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dark Academia",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Hallway",
+ "Moody",
+ "Off-white",
+ "Paper",
+ "Powder Room",
+ "Scenic",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sallys-authentic-scenic-vintage-1950s-wallpaper-1-1"
+ },
+ {
+ "sku": "dig_513060_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_513060_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Savannah Starfish 's Authentic Vintage 1950's Reproductions Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dig_513060_mockup.jpg?v=1756871599",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Green",
+ "Grey",
+ "Hallway",
+ "Light Grey",
+ "Mid-Century Modern",
+ "Nautical",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Sage",
+ "Serene",
+ "Starfish",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_513060_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5011133_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5011133_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Somersworth 1950's Damask Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-01at3.51.33PM_12217007-1833-43ea-8b79-1cc1d6e4e64e.png?v=1756871876",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Celadon",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Pale Turquoise",
+ "Paper",
+ "Pattern",
+ "Rococo",
+ "Rosy Brown",
+ "Scroll",
+ "Somersworth 1950's Damask Traditional",
+ "Sophisticated",
+ "Taupe",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011133_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435022_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435022_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Stafford 1940's Geometric Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-435022_room_setting.jpg?v=1756872337",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Living Room",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose",
+ "Stafford 1940's Geometric Retro",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435022_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435024_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435024_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Sterling 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at12.57.23PM_5509a1f8-fce8-4e12-8712-01c304b5087d.png?v=1756872334",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Grandmillennial",
+ "Lattice",
+ "Living Room",
+ "Off-white",
+ "Ogee",
+ "Paper",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Sterling 1940's Traditional",
+ "Tan",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435024_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5011135_vintage_wallpaper_designer_wallpapers-1",
+ "handle": "dig_5011135_vintage_wallpaper_designer_wallpapers-1",
+ "title": "Tamworth 1950'S Tufted Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig5011135_5a3d9589-aef3-472f-bedd-af594a504086.jpg?v=1756851532",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Geometric",
+ "Grandmillennial",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Pale Beige",
+ "Pale Pink",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Sophisticated",
+ "Tamworth 1950'S Tufted Mid",
+ "Traditional",
+ "Trellis",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011135_vintage_wallpaper_designer_wallpapers-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-mustard-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-mustard-1",
+ "title": "The Original Yeeha 1950's Cowboy - Mustard Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/58f8eedb209f532306672e0da78c5717.png?v=1773261807",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Golden Yellow",
+ "Goldenrod",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Retro",
+ "Rustic",
+ "Scenic",
+ "The Original Yeeha 1950's Cowboy",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-mustard-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-pink-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-pink-1",
+ "title": "The Original Yeeha 1950's Cowboy - Pink Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/88cd80acdee4700c48c0a3144be05186.png?v=1773261805",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Horse",
+ "Mid-Century Modern",
+ "Navy",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Primary Suite",
+ "Retro",
+ "Rose Quartz",
+ "Rustic",
+ "Sage",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-pink-1"
+ },
+ {
+ "sku": "the-original-yeeha-1950s-cowboy-wallpaper-blush-pink-1",
+ "handle": "the-original-yeeha-1950s-cowboy-wallpaper-blush-pink-1",
+ "title": "The Original Yeeha 1950's Cowboy -Blush Pink Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/7eae9fccc3cebd3e67f77c7ab4aa813f.png?v=1773261797",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Conversational",
+ "Custom Wallcovering",
+ "Denim",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Farmhouse",
+ "Horse",
+ "Mid-Century Modern",
+ "Novelty",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Playful",
+ "Playroom",
+ "Red",
+ "Retro",
+ "Rosy Beige",
+ "Rustic",
+ "Scenic",
+ "Southwestern",
+ "Tan",
+ "The Original Yeeha 1950's Cowboy",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-original-yeeha-1950s-cowboy-wallpaper-blush-pink-1"
+ },
+ {
+ "sku": "dig_435032_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435032_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Thompson 1940's Contemporary | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG-435032_room_settingonerepetition_a52289cd-e3db-4656-b5f9-c2df469f0bed.jpg?v=1756872326",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Grey",
+ "Hotel Lobby",
+ "Leaf",
+ "Light Gray",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Paper",
+ "Restaurant",
+ "Serene",
+ "Thompson 1940's Contemporary",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435032_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58702_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58702_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Torrey's 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-27at7.10.27PM_76f5f918-8a1b-4e28-9bf1-a7108c0cceb1.png?v=1756871259",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Gold",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Powder Blue",
+ "Rose Pink",
+ "Sage Green",
+ "Torrey's 1950's Floral Traditional",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58702_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510057_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510057_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Tunbridge 1950's Floral Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-03-03at8.35.12AM.png?v=1756871575",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Chintz",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Pink",
+ "Seafoam Green",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510057_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42198_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42198_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Virginia's 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2025-10-23at9.26.00AM.png?v=1761236799",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Brown",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Lattice",
+ "Light Beige",
+ "Light Green",
+ "Living Room",
+ "Nursery",
+ "Organic",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Stripe",
+ "Traditional",
+ "Virginia's 1940's Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42198_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510132_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510132_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Waitsfield 1950's Floral Lattice Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at10.59.00AM_4972b24c-3d91-463b-83e6-53fadb557c3e.png?v=1756871542",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Grey",
+ "Lattice",
+ "Living Room",
+ "Mustard Yellow",
+ "Pale Grey",
+ "Paper",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510132_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510152_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510152_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wallingford 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at11.03.49AM_7422a01e-b4db-40a5-9275-6da084dd8fd0.png?v=1756871532",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Lemon Yellow",
+ "Living Room",
+ "Nursery",
+ "Off White",
+ "Pale Blue",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510152_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521129_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521129_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Waterbury 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-04-12at9.04.16AM.png?v=1756871511",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Off-white",
+ "Olive Green",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Teal Green",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Waterbury 1950's Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521129_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42142_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42142_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "West Coast Seagulls 1940's Coastal | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.02.01AM.png?v=1756872417",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Birds",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Gray",
+ "Lighthouses",
+ "Nautical",
+ "Nursery",
+ "Off White",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Seagulls",
+ "Serene",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42142_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521146_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521146_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Westfield 1950's Ribbon Rococo | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.16.46AM_900c4ca2-b8d9-4845-8ed4-54e1eff78aab.png?v=1756871485",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Light Blue",
+ "Light Turquoise",
+ "Living Room",
+ "Luxurious",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Regencycore",
+ "Rococo",
+ "Scroll",
+ "Teal",
+ "Traditional",
+ "Turquoise",
+ "Vine",
+ "Wallcovering",
+ "Westfield 1950's Ribbon Rococo"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521146_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_591045_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591045_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Westminster 1950's Floral Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at8.00.02AM_60ccfa8a-8cb8-42cb-9a37-f81760dc8185.png?v=1756871201",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rosybrown",
+ "Seafoam Green",
+ "Serene",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Westminster 1950's Floral Retro",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591045_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521165_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521165_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Weybridge 1950's Rococo | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.23.43AM_624eb96f-8383-4af7-9dbe-780a8d93bdf2.png?v=1756871473",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Renaissance",
+ "Rococo",
+ "Rose",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Weybridge 1950's Rococo",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521165_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435096_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435096_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Windham 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.26.44PM_8761413e-15c2-4971-b184-728e8c402fa2.png?v=1756872263",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Charcoal Grey",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Light Blue",
+ "Living Room",
+ "Nursery",
+ "Off White",
+ "Paper",
+ "Pink",
+ "Rose Pink",
+ "Seafoam Green",
+ "Serene",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "Windham 1940's Floral Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435096_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "windham-1940s-floral-wallpaper-dw-bespoke-studios-custom-color-custom-color",
+ "handle": "windham-1940s-floral-wallpaper-dw-bespoke-studios-custom-color-custom-color",
+ "title": "Windham 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored_Silver_Gray.jpg?v=1758691332",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Teal",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Light Blue",
+ "Living Room",
+ "Nursery",
+ "Pale Turquoise",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Pink",
+ "Serene",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/windham-1940s-floral-wallpaper-dw-bespoke-studios-custom-color-custom-color"
+ },
+ {
+ "sku": "windham-1940s-floral-wallpaper-dw-bespoke-studios-burgundy-crimson",
+ "handle": "windham-1940s-floral-wallpaper-dw-bespoke-studios-burgundy-crimson",
+ "title": "Windham 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored__591c0d.jpg?v=1758691434",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Deep Rose",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Light Coral",
+ "Living Room",
+ "Nursery",
+ "Off White",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Pink",
+ "Teal Green",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "Windham 1940's Floral Traditional"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/windham-1940s-floral-wallpaper-dw-bespoke-studios-burgundy-crimson"
+ },
+ {
+ "sku": "windham-1940s-floral-wallpaper-dw-bespoke-studios-burgundy-crimson-1",
+ "handle": "windham-1940s-floral-wallpaper-dw-bespoke-studios-burgundy-crimson-1",
+ "title": "Windham 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored__57140f.jpg?v=1758691483",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Light Coral",
+ "Living Room",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Pink",
+ "Teal",
+ "Teal Green",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Windham 1940's Floral Traditional"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/windham-1940s-floral-wallpaper-dw-bespoke-studios-burgundy-crimson-1"
+ },
+ {
+ "sku": "windham-1940s-floral-wallpaper-dw-bespoke-studios-purple-potion-purple-potion",
+ "handle": "windham-1940s-floral-wallpaper-dw-bespoke-studios-purple-potion-purple-potion",
+ "title": "Windham 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored__570f47.jpg?v=1758691543",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Lavender",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Purple",
+ "Rose Quartz",
+ "Seafoam Green",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm",
+ "Windham 1940's Floral Traditional"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/windham-1940s-floral-wallpaper-dw-bespoke-studios-purple-potion-purple-potion"
+ },
+ {
+ "sku": "windham-1940s-floral-wallpaper-dw-bespoke-studios-estate-blue-snorkel-blue",
+ "handle": "windham-1940s-floral-wallpaper-dw-bespoke-studios-estate-blue-snorkel-blue",
+ "title": "Windham 1940's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/recolored__181a4e.jpg?v=1758691597",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Purple",
+ "Rose Quartz",
+ "Serene",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "Windham 1940's Floral Traditional"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/windham-1940s-floral-wallpaper-dw-bespoke-studios-estate-blue-snorkel-blue"
+ },
+ {
+ "sku": "dig_441006_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_441006_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Woodbridge 1940's Palm Tropical | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.34.34PM_7bf17934-ece3-43bb-85ae-814af53eafa0.png?v=1756872142",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Leaf",
+ "Light Seagreen",
+ "Light Yellow",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Red",
+ "Retro",
+ "Seafoam Green",
+ "Serene",
+ "Tropical",
+ "Wallcovering",
+ "White",
+ "Woodbridge 1940's Palm Tropical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_441006_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_591070_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591070_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Alex's 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at8.06.22AM_6830d3e6-8d1b-4d6e-808a-18c2f00ca8d9.png?v=1756871188",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Alex's 1950's Mid",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Bird",
+ "Birds",
+ "Blush",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Organic Modern",
+ "Palm",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sage Green",
+ "Scenic",
+ "Serene",
+ "Slate Grey",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591070_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_51230_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51230_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Allendale 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-10-24at7.49.25AM_85b4f82e-6647-41cf-b2ce-8830b3635e77.png?v=1756871773",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Allendale 1950's Traditional",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Lavender",
+ "Leaf",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Purple",
+ "Red",
+ "Rose",
+ "Tan",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51230_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-26-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-26-1",
+ "title": "Aurora 1950's Geometric Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-04-13at8.41.45AM_4a1892af-d3f0-4a17-b051-95f10d22bd37.png?v=1756872713",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blush",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Living Room",
+ "Medallion",
+ "Mid-Century Modern",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Red",
+ "Retro",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-26-1"
+ },
+ {
+ "sku": "dig_55318_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55318_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Branford 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.36.22AM_dd9e163a-10ae-4128-9342-228121c5bb3d.png?v=1756871374",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Branford 1950's Traditional",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dot",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Grey",
+ "Light Gray",
+ "Light Grey",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55318_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "classic-1940-s-clover-leaf-floral-wallcovering-vin-1080-1",
+ "handle": "classic-1940-s-clover-leaf-floral-wallcovering-vin-1080-1",
+ "title": "Classic 1940's Clover Leaf Floral wallcovering Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4e33ef16eec5205f9be0d7d2b6c52260_405b70a9-b8b3-407a-8843-66be367ee34b.jpg?v=1756867580",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Green",
+ "Nursery",
+ "Off-white",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Sage Green",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/classic-1940-s-clover-leaf-floral-wallcovering-vin-1080-1"
+ },
+ {
+ "sku": "classic-1940-s-retro-clover-leaf-floral-wallcovering-vin-1080-1",
+ "handle": "classic-1940-s-retro-clover-leaf-floral-wallcovering-vin-1080-1",
+ "title": "Claytonville 1940's Clover Leaf Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4e33ef16eec5205f9be0d7d2b6c52260_565e8379-e5d6-41f8-8343-f9ed97a702bb.jpg?v=1756876743",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Green",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Nursery",
+ "Off-white",
+ "Olive Green",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 558.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/classic-1940-s-retro-clover-leaf-floral-wallcovering-vin-1080-1"
+ },
+ {
+ "sku": "dig_58640_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58640_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Coventry 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2026-01-20at10.16.44AM.png?v=1768933187",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Coventry 1950's Traditional",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Light Beige",
+ "Living Room",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Stripe",
+ "Taupe",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58640_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "sams-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "handle": "sams-authentic-vintage-1950s-reproduction-wallpapers-1-1",
+ "title": "Cromwell 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-58640_matchBH90210_b63288a2-b47c-456f-90d5-373ed17f1447.jpg?v=1756867875",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Birdcage",
+ "Birds",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Paper",
+ "Sage Green",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sams-authentic-vintage-1950s-reproduction-wallpapers-1-1"
+ },
+ {
+ "sku": "cassies-authentic-vintage-1950s-reproduction-wallpaper",
+ "handle": "cassies-authentic-vintage-1950s-reproduction-wallpaper",
+ "title": "Duquesne 1950'S Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-51014_original_10_inch.jpg?v=1756707664",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Botanical",
+ "Chintz",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Gray",
+ "Green",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cassies-authentic-vintage-1950s-reproduction-wallpaper"
+ },
+ {
+ "sku": "elaines-authentic-vintage-1950s-wallpapers-1-1",
+ "handle": "elaines-authentic-vintage-1950s-wallpapers-1-1",
+ "title": "Elaine's Authentic Vintage 1950'ss Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mockup-Dig-5011663_black_04962cc8-ef6f-4388-b9f4-d53548320e86.jpg?v=1756868067",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Botanical",
+ "Butterfly",
+ "Charcoal Gray",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Rustic",
+ "Sophisticated",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/elaines-authentic-vintage-1950s-wallpapers-1-1"
+ },
+ {
+ "sku": "dig_58722_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58722_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Essex 1950's Roses Vine Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-27at7.09.14PM_e6b478a1-d63c-4a16-9f50-0acd4744728f.png?v=1756871241",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Essex 1950's Roses Vine Stripe Traditional",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pink",
+ "Rose Pink",
+ "Sage Green",
+ "Stripe",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58722_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510144_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510144_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Hazleton 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.57.33AM_39a661d6-5a9a-45cd-9d26-ab5e327cda2a.png?v=1756871535",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Living Room",
+ "Mid-Century Modern",
+ "Olive",
+ "Pale Blue",
+ "Paper",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510144_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510098_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510098_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Hudson 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-510098_example_e3a67046-49a8-4552-939b-945a1386ab20.jpg?v=1756871553",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Flowers",
+ "Fruit",
+ "Geometric",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Kitchen",
+ "Lattice",
+ "Mid-Century Modern",
+ "Novelty",
+ "Paper",
+ "Pattern",
+ "Powder Room",
+ "Purple",
+ "Red",
+ "Retro",
+ "Teapot",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510098_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42217_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42217_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Huntington 1940's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-12at9.51.18AM_d694d0d6-c827-45fb-868f-78ea06d2451e.png?v=1756872353",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Celadon",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Huntington 1940's Traditional",
+ "Lattice",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose",
+ "Rose Quartz",
+ "Traditional",
+ "Trellis",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42217_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521139_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521139_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Lauren 1950's Scenic Horse Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.11.44AM_f5a7b666-eb0f-49f3-9d59-d0b39bb0fc81.png?v=1756871503",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dog",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Green",
+ "Horse",
+ "Lauren 1950's Scenic Horse Traditional",
+ "Light Gray",
+ "Living Room",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sage Green",
+ "Scenic",
+ "Serene",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521139_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_42156_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_42156_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Lisa's 1940's Flower Pot Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at8.04.10AM.png?v=1756872409",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Geometric",
+ "Grandmillennial",
+ "Green",
+ "Kitchen",
+ "Lisa's 1940's Flower Pot Retro",
+ "Mid-century",
+ "Olive Green",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_42156_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435045_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435045_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Mt Vernon 1940's Colonial Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at1.06.54PM_a2796383-ce3e-47d3-b5f2-669bb6a9132e.png?v=1756872315",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Aqua",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Living Room",
+ "Mediterranean",
+ "Mid-century",
+ "Mt Vernon 1940's Colonial Traditional",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Retro",
+ "Scenic",
+ "Scroll",
+ "Serene",
+ "Taupe",
+ "Teal",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435045_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55398_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55398_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ramo's 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-05at10.05.47AM_d9b157a2-3e6e-4eb7-b5df-f7a665849d47.png?v=1756871306",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Navy Blue",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Ramo's 1950's Traditional",
+ "Rosy Beige",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55398_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "sallys-authentic-scenic-vintage-1950s-wallpaper-6-1",
+ "handle": "sallys-authentic-scenic-vintage-1950s-wallpaper-6-1",
+ "title": "Sally's Authentic Scenic Vintage 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-03-17at9.49.24AM_ee1c8e83-bc41-49d3-86fa-9d997ea2c994.png?v=1756867935",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Black",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Ebony",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Paper",
+ "Pink",
+ "Powder Room",
+ "Primary Suite",
+ "Retro",
+ "Rose Quartz",
+ "Sage Green",
+ "Scenic",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sallys-authentic-scenic-vintage-1950s-wallpaper-6-1"
+ },
+ {
+ "sku": "sams-authentic-vintage-1950s-reproduction-wallpapers",
+ "handle": "sams-authentic-vintage-1950s-reproduction-wallpapers",
+ "title": "Sam's Authentic Vintage 1950's Reproduction Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-09-28at12.09.18PM.png?v=1756707680",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Birdcage",
+ "Black",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Paper",
+ "Pattern",
+ "Single Dominant Background Color Word",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sams-authentic-vintage-1950s-reproduction-wallpapers"
+ },
+ {
+ "sku": "dig_510052_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510052_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Townshend 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at10.46.42AM_4ab2d8a1-5790-40e1-94f5-8cb9906ac11c.png?v=1756871587",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chintz",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Teal",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Medallion",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose",
+ "Sophisticated",
+ "Taupe",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510052_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_510132_vintage_wallpaper_designer_wallpapers",
+ "handle": "dig_510132_vintage_wallpaper_designer_wallpapers",
+ "title": "Waitsfield 1950'S Floral Lattice Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at10.59.00AM_df5832d2-f413-47c8-a558-b6008bef0dae.png?v=1756707109",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "Dusty Blue",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Mustard Yellow",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Victorian",
+ "Waitsfield 1950'S Floral Lattice Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 239.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510132_vintage_wallpaper_designer_wallpapers"
+ },
+ {
+ "sku": "dig_510132_vintage_wallpaper_designer_wallpapers-1",
+ "handle": "dig_510132_vintage_wallpaper_designer_wallpapers-1",
+ "title": "Waitsfield 1950'S Floral Lattice Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-05at10.59.00AM_bc221804-19d7-4f33-84af-8f249326211f.png?v=1756851559",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Dusty Blue",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "English Country",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Paper",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Serene",
+ "Traditional",
+ "Victorian",
+ "Waitsfield 1950'S Floral Lattice Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510132_vintage_wallpaper_designer_wallpapers-1"
+ },
+ {
+ "sku": "dig_510158_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_510158_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Wardsboro 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-06-23at9.49.35AM_f4336fba-a340-4f7d-ba51-e51595f2e80d.png?v=1756871525",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Flowers",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Leaves",
+ "Light Blue",
+ "Light Peach",
+ "Mid-Century Modern",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Red",
+ "Retro",
+ "Seafoam Green",
+ "Teal",
+ "Tomato Red",
+ "Traditional",
+ "Trellis",
+ "Vine",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_510158_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_521159_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521159_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Westminster 1950's Leaf Lattice Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.19.22AM_e01bcacd-88f3-4463-ab36-41d679a376c4.png?v=1756871481",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Gold",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Pink",
+ "Retro",
+ "Rose",
+ "Sage Green",
+ "Silver",
+ "Traditional",
+ "Trellis",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Westminster 1950's Leaf Lattice Mid",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521159_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "1800-s-colonial-scene-on-demand-wall-paper-vin-400-1",
+ "handle": "1800-s-colonial-scene-on-demand-wall-paper-vin-400-1",
+ "title": "Williamsburg 1950's Colonial | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-12-04at2.09.20PM_0f6a5ce0-41e6-4f9f-b9bf-b3cd5434c7b4.png?v=1756868038",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Champagne",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Colonial",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dog",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Horse",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Scenic",
+ "Teal",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm",
+ "Williamsburg 1950's Colonial"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/1800-s-colonial-scene-on-demand-wall-paper-vin-400-1"
+ },
+ {
+ "sku": "dig_535024_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_535024_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Williamstown 1950's Block Tile Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.30.03AM_1cd7e572-66e5-4b2d-857d-1541a477594b.png?v=1756871388",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burgundy",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Geometric",
+ "Grandmillennial",
+ "Gray",
+ "Living Room",
+ "Paper",
+ "Red",
+ "Rosybrown",
+ "Scroll",
+ "Silver",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Williamstown 1950's Block Tile Traditional",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_535024_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435086_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435086_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Willington 1940's Branches Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-05-05at9.02.49AM_c5b47b4d-8ae9-42c9-a906-80cdece7ae21.png?v=1756872272",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Golden Yellow",
+ "Japonisme",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Willington 1940's Branches Chinoiserie",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435086_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5130101_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5130101_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Windham 1950's Floral Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at7.29.05AM_1932ae14-79d0-4787-bccd-05f5140e777a.png?v=1756870724",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pink",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Windham 1950's Floral Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5130101_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-49-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-49-1",
+ "title": "Yosemite 1950's Pine Tree Japonisme | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DIG_540050_1_4a7af8db-a1a4-4261-b181-bed8ee241449.jpg?v=1756872693",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Green",
+ "Japonisme",
+ "Leaf",
+ "Living Room",
+ "Mid-Century Modern",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pine Cones",
+ "Sage Green",
+ "Scenic",
+ "Seafoam Green",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Trees",
+ "Vine",
+ "Wallcovering",
+ "Zen"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-49-1"
+ },
+ {
+ "sku": "sallys-authentic-scenic-vintage-1950s-wallpaper-7-1",
+ "handle": "sallys-authentic-scenic-vintage-1950s-wallpaper-7-1",
+ "title": "Beacon Falls Scenic 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130216_black_c5eb4669-528f-40fc-9c9f-f3952973d08c.jpg?v=1756867929",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mauve",
+ "Multi",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Retro",
+ "Rose",
+ "Sage Green",
+ "Scenic",
+ "Tan",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sallys-authentic-scenic-vintage-1950s-wallpaper-7-1"
+ },
+ {
+ "sku": "dig_591073_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_591073_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Birmingham 1950's Floral Butterfly Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-04-28at8.46.57AM_96f95a17-8350-4846-9a7e-325f3dd98c55.png?v=1756871184",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Birmingham 1950's Floral Butterfly Mid",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Butterfly",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Japonisme",
+ "Light Blue",
+ "Mid-Century Modern",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Powder Blue",
+ "Powder Room",
+ "Rose Quartz",
+ "Serene",
+ "Taupe",
+ "Teal",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_591073_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_4350104_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350104_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Cheshire 1940's Roses Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Vintage_Wallpaper_DIG-4350109_9f6d7364-367c-44d2-95b2-123a1df0f508.jpg?v=1759877569",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Botanical",
+ "Burnt Orange",
+ "Cheshire 1940's Roses Retro",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Horse",
+ "Kitchen",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Mustard Yellow",
+ "Novelty",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Powder Room",
+ "Retro",
+ "Sage Green",
+ "Scenic",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350104_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "cassies-authentic-vintage-1950s-reproduction-wallpaper-5-1",
+ "handle": "cassies-authentic-vintage-1950s-reproduction-wallpaper-5-1",
+ "title": "Duquesne 1950'S Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5101407_red_20_inch.png?v=1756867831",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Crimson",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Duquesne 1950'S Chinoiserie",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Olive Green",
+ "Pale Pink",
+ "Paper",
+ "Red",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cassies-authentic-vintage-1950s-reproduction-wallpaper-5-1"
+ },
+ {
+ "sku": "dig_51014_vintage_wallpaper_designer_wallcoverings",
+ "handle": "dig_51014_vintage_wallpaper_designer_wallcoverings",
+ "title": "Duquesne 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Dig-51014_black_20_inch_abb55d13-4267-4527-849c-b844de8b889d.jpg?v=1756708434",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Duquesne 1950's Mid",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Mid-Century Modern",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 195,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51014_vintage_wallpaper_designer_wallcoverings"
+ },
+ {
+ "sku": "dig_51014_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51014_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Duquesne 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-51014_black_20_inch_abb55d13-4267-4527-849c-b844de8b889d.jpg?v=1756871830",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dark Academia",
+ "Dark Green",
+ "Dining Room",
+ "display_variant",
+ "Duquesne 1950's Traditional",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Moody",
+ "Olive Green",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Pink",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51014_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "cassies-authentic-vintage-1950s-reproduction-wallpaper-6-1",
+ "handle": "cassies-authentic-vintage-1950s-reproduction-wallpaper-6-1",
+ "title": "Duquesne 1950'S Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5101406_Blush_Pink_20_inch.png?v=1756867826",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Duquesne 1950'S Traditional",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lemon Yellow",
+ "Light Pink",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Red",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cassies-authentic-vintage-1950s-reproduction-wallpaper-6-1"
+ },
+ {
+ "sku": "elaines-authentic-vintage-1950s-wallpapers-2-1",
+ "handle": "elaines-authentic-vintage-1950s-wallpapers-2-1",
+ "title": "Elaine's 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-02-16at4.47.38PM_13e8e5d2-6b76-4b75-ad21-1115e2990f87.png?v=1756868063",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Birds",
+ "Botanical",
+ "Brown",
+ "Burgundy",
+ "Butterflies",
+ "Butterfly",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Green",
+ "Living Room",
+ "Mauve",
+ "Olive Green",
+ "Organic",
+ "Paper",
+ "Pink",
+ "Red",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/elaines-authentic-vintage-1950s-wallpapers-2-1"
+ },
+ {
+ "sku": "dig_55384_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55384_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Florenza's 1950's Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-08-11at8.23.59AM_eeff9356-4f98-4ffb-8756-b915974476aa.png?v=1756871330",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Butterfly",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Florenza's 1950's Mid",
+ "Green",
+ "Light Gray",
+ "Living Room",
+ "Mid-Century Modern",
+ "Navy Blue",
+ "Organic",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Sage Green",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55384_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "authentic-1950s-reproduction-vintage-wallcoverings-14-1",
+ "handle": "authentic-1950s-reproduction-vintage-wallcoverings-14-1",
+ "title": "Linda's 1950's Flower Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-01-31at4.37.15PM_35e2cc84-38e9-4251-b81a-d677172f2aab.png?v=1756872718",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Charcoal",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Gray-green",
+ "Japonisme",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Retro",
+ "Rose Quartz",
+ "Serene",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/authentic-1950s-reproduction-vintage-wallcoverings-14-1"
+ },
+ {
+ "sku": "dig_4350118_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350118_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Milford 1940's Toile Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-12at6.19.07AM.png?v=1756872222",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "dog",
+ "duck",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "French Country",
+ "goat",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mauve",
+ "Milford 1940's Toile Traditional",
+ "Neoclassical",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Quartz",
+ "Sage Green",
+ "Scenic",
+ "Serene",
+ "sheep",
+ "Toile",
+ "Traditional",
+ "Umber",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350118_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig-55330-designerwallcoverings-com",
+ "handle": "dig-55330-designerwallcoverings-com",
+ "title": "Pennsylvania 1950's Peacock Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.38.07AM.png?v=1756707574",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Chinoiserie",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fauna",
+ "Floral",
+ "Green",
+ "Hand-painted",
+ "Multi",
+ "Paper",
+ "Peacock",
+ "Red",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 229.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig-55330-designerwallcoverings-com"
+ },
+ {
+ "sku": "dig-55330-designerwallcoverings-com-1",
+ "handle": "dig-55330-designerwallcoverings-com-1",
+ "title": "Pennsylvania 1950's Peacocks Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.38.07AM_d8261d6f-491d-4378-9651-3ddc4214a9a3.png?v=1756867594",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Fauna",
+ "Green",
+ "Hand-painted",
+ "Living Room",
+ "Off-white",
+ "Olive Green",
+ "Paper",
+ "Pattern",
+ "Peacock",
+ "Red",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig-55330-designerwallcoverings-com-1"
+ },
+ {
+ "sku": "dig_5011150_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5011150_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Pitts 1950's Peacocks Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-01-11at8.58.29PM.png?v=1756871847",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Birds",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Butterfly",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Paper",
+ "Pattern",
+ "Peacock",
+ "Pitts 1950's Peacocks Chinoiserie",
+ "Red",
+ "Serene",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011150_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_55330_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_55330_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Ramona's Peacock 1950's Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-08-28at11.54.40AM_07ebbf0f-bad0-4248-b807-8236e0b05f25.png?v=1756871371",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Birds",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Crimson Red",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Emerald Green",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Multi",
+ "Navy Blue",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Peacocks",
+ "Pheasants",
+ "Ramona's Peacock 1950's Chinoiserie",
+ "Red",
+ "Serene",
+ "Sky Blue",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_55330_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "sallys-authentic-scenic-vintage-1950s-wallpaper-2-1",
+ "handle": "sallys-authentic-scenic-vintage-1950s-wallpaper-2-1",
+ "title": "Sally's Authentic Scenic Vintage 1950's Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-5130217_open_0f901386-7d4e-4c6f-8840-4a9f90c44c64.png?v=1756867948",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Blue",
+ "Brown",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Green",
+ "Multi",
+ "Nursery",
+ "Off White",
+ "Paper",
+ "Pink",
+ "Powder Room",
+ "Retro",
+ "Rose",
+ "Scenic",
+ "Tan",
+ "Teal",
+ "Toile",
+ "Victorian",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sallys-authentic-scenic-vintage-1950s-wallpaper-2-1"
+ },
+ {
+ "sku": "dig_51288_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_51288_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Sandra's 1950's Masquerade Retro | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-04at9.18.23AM_dd52949e-76f7-486e-9548-13e7bccc8b89.png?v=1756871630",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "display_variant",
+ "Dove",
+ "Dove Grey",
+ "Dusty Rose",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Grey",
+ "Nursery",
+ "Olive Green",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Pink",
+ "Playful",
+ "Powder Room",
+ "Retro",
+ "Sage",
+ "Sandra's 1950's Masquerade Retro",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_51288_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5011145_vintage_wallpaper_designer_wallcoverings",
+ "handle": "dig_5011145_vintage_wallpaper_designer_wallcoverings",
+ "title": "Waterville 1950's Bird Floral Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-01at3.55.01PM.png?v=1756708443",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Botanical",
+ "Brown",
+ "Butterfly",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Green",
+ "Light Blue",
+ "Mid-Century Modern",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "Waterville 1950's Bird Floral Mid"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5011145_vintage_wallpaper_designer_wallcoverings"
+ },
+ {
+ "sku": "dig_521178_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_521178_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Whitingham 1950's Scenic Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-10-06at7.25.32AM_12d978c0-e891-4997-b981-99359cf45a54.png?v=1756871469",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dark Seagreen",
+ "Deer",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Forest Green",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-woven",
+ "Nursery",
+ "Off-white",
+ "Pale Pink",
+ "Paper",
+ "Pattern",
+ "Retro",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "Whitingham 1950's Scenic Mid"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_521178_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_435095_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_435095_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Winchester 1940's Branches Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2022-04-13at9.11.38AM.png?v=1756872268",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Powder Blue",
+ "Rose Quartz",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Winchester 1940's Branches Traditional"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_435095_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211132_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211132_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Alexander 1950's Bamboo Birds Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Vintage_Wallpaper_Reproduction_1952_Dig-5211132_cda5b52d-def4-4de0-b66e-334d2e3d3420.jpg?v=1756871434",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Alexander 1950's Bamboo Birds Mid",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Burgundy",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Golden Brown",
+ "Green",
+ "Japonisme",
+ "Leaf",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "Off-white",
+ "Olive Green",
+ "Paper",
+ "Red",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211132_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_5211109_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_5211109_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Asbury 1950's Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Vintage_Wallpaper_Reproduction1952_Dig-5211109.jpg?v=1756871453",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Asbury 1950's Traditional",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Chintz",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Horse",
+ "Light Blue",
+ "Novelty",
+ "Nursery",
+ "Pale Turquoise",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Powder Room",
+ "Retro",
+ "Rose Quartz",
+ "Sage Green",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_5211109_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "dig_58637_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_58637_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "Edith's 1950's Stripe Mid-Century Modern | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-58637_original_color.jpg?v=1756871267",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Burnt Sienna",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Edith's 1950's Stripe Mid",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Mid-Century Modern",
+ "Nursery",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Retro",
+ "Rose Pink",
+ "Sage Green",
+ "Serene",
+ "Sky Blue",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_58637_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "ediths-authentic-vintage-1950s-wallpaper-1-1",
+ "handle": "ediths-authentic-vintage-1950s-wallpaper-1-1",
+ "title": "Edith's 1950's Stripe Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Dig-58637_black_c423fb62-a907-46ba-85d8-ec9a201a3f2c.jpg?v=1756867882",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Birdcage",
+ "Black",
+ "Blue",
+ "Botanical",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "English Country",
+ "Floral",
+ "Flowers",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Multi",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Retro",
+ "Sage Green",
+ "Serene",
+ "Sky Blue",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ediths-authentic-vintage-1950s-wallpaper-1-1"
+ },
+ {
+ "sku": "dig_4350114_vintage_wallpaper_designer_wallcoverings-1",
+ "handle": "dig_4350114_vintage_wallpaper_designer_wallcoverings-1",
+ "title": "MOUNT VERNON PATRIOTIC AMERICANA 1940'S Traditional | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2023-11-01at8.38.31AM_ac0ddf5c-efbf-4c8b-a8c5-3216fd8c1d93.png?v=1756872237",
+ "tags": [
+ "Americana",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Blue",
+ "Brick Red",
+ "Colonial",
+ "Commercial",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Eagle",
+ "Grandmillennial",
+ "Green",
+ "Light Grey",
+ "Living Room",
+ "Medallion",
+ "Novelty",
+ "Off-white",
+ "Office",
+ "Olive Green",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Red",
+ "Scenic",
+ "Sky Blue",
+ "Stripe",
+ "Toile",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dig_4350114_vintage_wallpaper_designer_wallcoverings-1"
+ },
+ {
+ "sku": "elaines-authentic-vintage-1950s-wallpapers-5-1",
+ "handle": "elaines-authentic-vintage-1950s-wallpapers-5-1",
+ "title": "SPRINGFIELD 1950'S BIRD BRANCHES on Gold Mylar Chinoiserie | Architectural Wallcoverings",
+ "vendor": "DW Bespoke Studio",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mockup-Dig-5011669_mylar_gold_b3129400-2420-4928-9d9a-99c48cb5435f.gif?v=1756868050",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Brown",
+ "Butterfly",
+ "Champagne",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Custom Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "DW Bespoke Studio",
+ "DW Bespoke Studios To Go",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mid-Century Modern",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Rose Pink",
+ "Sage Green",
+ "Taupe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 668,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/elaines-authentic-vintage-1950s-wallpapers-5-1"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..c2d6599
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+ "name": "1940swallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "1940swallpaper",
+ "version": "0.1.0",
+ "dependencies": {
+ "express": "^4.21.0",
+ "helmet": "^8.1.0"
+ }
+ },
+ "node_modules/accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
+ "license": "MIT"
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.5",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz",
+ "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "~3.1.2",
+ "content-type": "~1.0.5",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "~1.2.0",
+ "http-errors": "~2.0.1",
+ "iconv-lite": "~0.4.24",
+ "on-finished": "~2.4.1",
+ "qs": "~6.15.1",
+ "raw-body": "~2.5.3",
+ "type-is": "~1.6.18",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/body-parser/node_modules/qs": {
+ "version": "6.15.1",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz",
+ "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-type": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie": {
+ "version": "0.7.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
+ "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
+ "license": "MIT"
+ },
+ "node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.22.1",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
+ "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
+ "license": "MIT",
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "~1.20.3",
+ "content-disposition": "~0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "~0.7.1",
+ "cookie-signature": "~1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "~1.3.1",
+ "fresh": "~0.5.2",
+ "http-errors": "~2.0.0",
+ "merge-descriptors": "1.0.3",
+ "methods": "~1.1.2",
+ "on-finished": "~2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "~0.1.12",
+ "proxy-addr": "~2.0.7",
+ "qs": "~6.14.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "~0.19.0",
+ "serve-static": "~1.16.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "~2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
+ "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "~2.0.2",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz",
+ "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/helmet": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/helmet/-/helmet-8.1.0.tgz",
+ "integrity": "sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
+ "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "~2.0.0",
+ "inherits": "~2.0.4",
+ "setprototypeof": "~1.2.0",
+ "statuses": "~2.0.2",
+ "toidentifier": "~1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz",
+ "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==",
+ "license": "MIT"
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "license": "MIT",
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.14.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
+ "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
+ "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "~3.1.2",
+ "http-errors": "~2.0.1",
+ "iconv-lite": "~0.4.24",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "license": "MIT"
+ },
+ "node_modules/send": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
+ "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "~0.5.2",
+ "http-errors": "~2.0.1",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "~2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "~2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/serve-static": {
+ "version": "1.16.3",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
+ "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
+ "license": "MIT",
+ "dependencies": {
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "~0.19.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "license": "ISC"
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/statuses": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "license": "MIT",
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..334f53b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "1940swallpaper",
+ "version": "0.1.0",
+ "description": "1940s WALLPAPER — DW family vertical",
+ "main": "server.js",
+ "scripts": {
+ "start": "node server.js"
+ },
+ "dependencies": {
+ "express": "^4.21.0",
+ "helmet": "^8.1.0"
+ }
+}
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..0bf53be
--- /dev/null
+++ b/public/favicon.svg
@@ -0,0 +1,4 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
+<rect width="32" height="32" rx="6" fill="#10b981"/>
+<text x="50%" y="55%" text-anchor="middle" dominant-baseline="middle" font-size="20" font-family="Apple Color Emoji, Segoe UI Emoji, sans-serif" fill="white">A</text>
+</svg>
\ No newline at end of file
diff --git a/public/hero-bg.jpg b/public/hero-bg.jpg
new file mode 100644
index 0000000..11eb8ae
Binary files /dev/null and b/public/hero-bg.jpg differ
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..5930d7a
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,613 @@
+<!doctype html>
+<html lang="en">
+<head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<title>1940s WALLPAPER — Post-war optimism</title>
+<meta name="description" content="1940s WALLPAPER · Post-war optimism. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#1a1410">
+<link rel="canonical" href="https://1940swallpaper.com/">
+<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap" rel="stylesheet">
+<script src="/zd-loader.js" defer></script>
+<style>
+:root {
+ --bg: #1a1410;
+ --paper: #ffffff;
+ --muted: #a89880;
+ --line: rgba(255,255,255,0.10);
+ --accent: #d49a55;
+ --bg-soft: #26201a;
+ --cols: 6; /* default grid density — slider controls this */
+}
+html[data-theme="light"] {
+ --bg: #f5e8d4;
+ --paper: #0a0905;
+ --muted: #6b5f56;
+ --line: rgba(10,9,5,0.12);
+ --accent: #5a3818;
+ --bg-soft: #ebd8b8;
+}
+* { margin:0; padding:0; box-sizing:border-box }
+html { scroll-behavior:smooth }
+body { font-family:'Inter', sans-serif; color:var(--paper); -webkit-font-smoothing:antialiased; background:var(--bg); min-height:100vh; overflow-x:hidden }
+
+/* ===== Auto-hide header ===== */
+header { position:fixed; top:0; left:0; right:0; display:flex; justify-content:space-between; align-items:center; padding:22px 32px; z-index:100; background:rgba(0,0,0,0.55); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); transition:transform .3s }
+.h-link { display:flex; align-items:center; gap:10px; font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; color:var(--paper); text-decoration:none; cursor:pointer; background:transparent; border:0 }
+.h-link:hover { opacity:0.7 }
+.h-icon { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:1.5 }
+
+/* ===== Cinema hero ===== */
+.cinema { position:relative; height:100vh; width:100%; overflow:hidden }
+.cinema-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-image:url('/hero-bg.jpg') }
+.cinema-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.75) 100%) }
+.corner-mark { position:absolute; top:24px; left:32px; font-size:11px; font-weight:700; letter-spacing:0.32em; text-transform:uppercase; mix-blend-mode:difference; color:#fff; z-index:5 }
+.corner-mark::before { content:"◆ "; margin-right:6px }
+.center-mark { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:clamp(34px,5vw,72px); font-weight:300; letter-spacing:0.42em; text-transform:uppercase; text-align:center; color:#fff; z-index:5; mix-blend-mode:difference }
+.center-mark .tm { font-size:14px; vertical-align:super; opacity:0.7; margin-left:0.2em }
+.center-mark .sub { display:block; font-family:'Playfair Display', Georgia, serif; font-style:italic; font-weight:400; font-size:0.4em; letter-spacing:0.04em; text-transform:none; margin-top:14px; opacity:0.85 }
+.meta-line { position:absolute; bottom:32px; left:32px; font-size:10px; letter-spacing:0.28em; text-transform:uppercase; font-weight:700; color:#fff; z-index:5; opacity:0.85 }
+.meta-line .num { font-size:12px; display:block; margin-top:4px; letter-spacing:0.05em }
+.enter { position:absolute; bottom:32px; right:32px; display:flex; align-items:center; gap:14px; font-size:11px; letter-spacing:0.36em; text-transform:uppercase; font-weight:700; color:#fff; text-decoration:none; padding-bottom:6px; border-bottom:1px solid #fff; transition:gap 0.25s; z-index:5 }
+.enter:hover { gap:22px }
+.enter svg { width:24px; height:12px }
+
+/* ===== Section ===== */
+.section { padding:96px 32px }
+.section-header { display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px; margin-bottom:32px; padding-bottom:24px; border-bottom:1px solid var(--line) }
+.section-title { font-size:clamp(36px,5vw,64px); font-weight:300; letter-spacing:-0.02em; line-height:1 }
+.section-title .accent { color: var(--accent); font-family:'Playfair Display', Georgia, serif; font-style:italic; font-weight:400 }
+.section-eyebrow { font-size:10px; letter-spacing:0.4em; text-transform:uppercase; font-weight:700; color:var(--muted); margin-bottom:16px }
+.section-meta { font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:600; color:var(--muted); text-align:right; line-height:1.6 }
+
+/* ===== Filter bar ===== */
+.filters { display:flex; gap:8px; align-items:center; margin-bottom:18px; flex-wrap:wrap }
+.chip { padding:8px 16px; font-size:11px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; color:var(--paper); background:transparent; border:1px solid var(--line); cursor:pointer; transition:all 0.2s; font-family:inherit }
+.chip:hover { border-color:var(--paper) }
+.chip.active { background:var(--paper); color:var(--bg); border-color:var(--paper) }
+.search { flex:0 1 280px; margin-left:auto; display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--line); padding:6px 0 }
+.search input { flex:1; background:transparent; border:0; color:var(--paper); font-family:inherit; font-size:13px; outline:none; letter-spacing:0.04em }
+.search input::placeholder { color:var(--muted) }
+.search svg { width:16px; height:16px; stroke:var(--muted); fill:none; stroke-width:1.5 }
+
+/* ===== Grid-density slider ===== */
+.density { display:flex; align-items:center; gap:14px; padding:6px 0; margin-bottom:24px }
+.density label { font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:700; color:var(--muted) }
+.density input[type=range] { flex:1; max-width:240px; -webkit-appearance:none; appearance:none; height:1px; background:var(--line); outline:none }
+.density input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; appearance:none; width:14px; height:14px; background:var(--accent); cursor:pointer; border-radius:50% }
+.density input[type=range]::-moz-range-thumb { width:14px; height:14px; background:var(--accent); cursor:pointer; border-radius:50%; border:0 }
+.density .ct { font-size:11px; color:var(--muted); letter-spacing:0.18em; text-transform:uppercase; font-weight:600; min-width:80px }
+
+/* ===== Stats line ===== */
+.stat-line { font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:600; color:var(--muted); margin-bottom:24px }
+
+/* ===== Product grid (novasuede pattern: flush grid + slide-up overlay) ===== */
+.grid { display:grid; grid-template-columns:repeat(var(--cols), 1fr); gap:0 }
+.card { position:relative; aspect-ratio:1/1.15; cursor:pointer; overflow:hidden; border:1px solid var(--bg); transition:transform 0.4s cubic-bezier(0.2,0.8,0.2,1); background:var(--bg-soft) }
+.card:hover { transform:scale(1.04); z-index:5 }
+.card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease }
+.card .overlay { position:absolute; left:0; right:0; bottom:0; padding:20px 16px 14px; background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%); transform:translateY(48%); opacity:0.85; transition:transform 0.3s ease, opacity 0.3s ease }
+.card:hover .overlay { transform:translateY(0); opacity:1 }
+.card .pat { font-size:13px; font-weight:600; letter-spacing:0.02em; color:#fff; line-height:1.25; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden }
+.card .ven { font-size:9px; letter-spacing:0.18em; text-transform:uppercase; color:#fff; opacity:0.7; font-weight:500; margin-top:4px }
+.card .actions { margin-top:10px; display:flex; gap:6px }
+.card .sample-btn { flex:1; padding:7px 10px; background:#fff; color:#000; font-family:inherit; font-size:10px; letter-spacing:0.22em; text-transform:uppercase; font-weight:700; border:0; cursor:pointer; text-align:center; transition:all 0.2s }
+.card .sample-btn:hover { background:var(--accent); color:#fff }
+
+@media (max-width:980px) { .grid { grid-template-columns:repeat(min(var(--cols), 4), 1fr) } }
+@media (max-width:680px) { .grid { grid-template-columns:repeat(2, 1fr) } .density { display:none } }
+
+.sentinel { height:1px }
+.loading { text-align:center; color:var(--muted); padding:32px; font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:700 }
+
+/* ===== Footer ===== */
+footer { padding:64px 32px 32px; border-top:1px solid var(--line); margin-top:32px }
+.footer-grid { max-width:1400px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; margin-bottom:48px }
+.footer-brand { font-size:24px; font-weight:300; letter-spacing:0.32em; text-transform:uppercase; margin-bottom:12px }
+.footer-text { font-size:13px; line-height:1.6; color:var(--muted); max-width:380px }
+.footer-col h4 { font-size:10px; letter-spacing:0.32em; text-transform:uppercase; font-weight:700; color:var(--paper); margin-bottom:18px }
+.footer-col a { display:block; font-size:13px; color:var(--muted); text-decoration:none; margin-bottom:8px; transition:color 0.2s; cursor:pointer; background:transparent; border:0; font-family:inherit; padding:0; text-align:left }
+.footer-col a:hover { color:var(--accent) }
+.footer-bottom { max-width:1400px; margin:0 auto; padding-top:24px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--muted) }
+
+@media (max-width:720px) {
+ .corner-mark, .meta-line, .enter { font-size:10px }
+ .center-mark { font-size:30px; letter-spacing:0.32em }
+ .section, footer { padding-left:20px; padding-right:20px }
+ .footer-grid { grid-template-columns:1fr; gap:32px }
+ .search { margin-left:0; flex:1 1 100% }
+}
+
+.theme-toggle { background:transparent; border:1px solid var(--line); width:32px; height:32px; cursor:pointer; color:var(--paper); display:inline-flex; align-items:center; justify-content:center; font-size:14px; line-height:1; transition:all .15s; padding:0 }
+.theme-toggle:hover { border-color:var(--accent); color:var(--accent) }
+
+/* ===== WCAG 2.4.7 — keyboard focus indicators ===== */
+/* Strictly :focus-visible so mouse clicks do NOT show the ring */
+a:focus-visible,
+button:focus-visible,
+input:focus-visible,
+select:focus-visible,
+textarea:focus-visible,
+[tabindex]:focus-visible {
+ outline: 2px solid var(--accent);
+ outline-offset: 2px;
+}
+</style>
+<script>
+(function(){ try { var t = localStorage.getItem('w40_theme') || 'dark'; document.documentElement.dataset.theme = t; } catch(e){} })();
+</script>
+</head>
+<body>
+
+<header>
+ <button class="h-link" onclick="dwmOpen('Contact')" aria-label="Contact"><svg class="h-icon" viewBox="0 0 24 24"><path d="M3 7h18M3 12h18M3 17h18"/></svg><span>Contact</span></button>
+ <button class="theme-toggle" id="theme-toggle" aria-label="Theme toggle">☾</button>
+</header>
+
+<section class="cinema">
+ <div class="cinema-bg"></div>
+ <div class="corner-mark">Post-War Era</div>
+ <div class="center-mark">1940s WALLPAPER<span class="tm">.</span><span class="sub">Post-war optimism</span></div>
+ <div class="meta-line">Atomic · Cottagecore · Toile<span class="num" id="heroNum"></span></div>
+ <a class="enter" href="#shop">Enter <svg viewBox="0 0 24 12" fill="none" stroke="currentColor" stroke-width="1.4"><path d="M0 6h22M16 1l6 5-6 5"/></svg></a>
+</section>
+
+<section class="section" id="shop">
+ <div class="section-header">
+ <div>
+ <div class="section-eyebrow">The Collection</div>
+ <h2 class="section-title"><span class="accent" id="totalCount">—</span> Patterns.</h2>
+ </div>
+ <div class="section-meta">Atomic · Cottagecore · Toile</div>
+ </div>
+
+ <div class="filters" id="facets">
+ <button class="chip active" data-facet="all">All</button>
+ </div>
+
+ <div class="density">
+ <label>Grid</label>
+ <input type="range" id="densitySlider" min="4" max="12" step="1" value="6" aria-label="Grid columns">
+ <span class="ct" id="densityLabel">6 cols</span>
+ <div class="search">
+ <svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M21 21l-5.5-5.5"/></svg>
+ <input type="text" id="searchInput" placeholder="Search by pattern, color…" autocomplete="off">
+ </div>
+ </div>
+
+ <div class="stat-line" id="statLine">Loading…</div>
+ <div class="grid" id="grid"></div>
+ <div class="loading" id="loading">Loading more…</div>
+ <div class="sentinel" id="sentinel"></div>
+</section>
+
+<footer>
+ <div class="footer-grid">
+ <div>
+ <div class="footer-brand">1940s WALLPAPER</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated atomic · cottagecore · toile from heritage mills, fulfilled through the DW trade channel — memo samples ship free.</p>
+ <p class="footer-text" style="margin-top:14px;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;font-weight:600;color:var(--paper);opacity:0.7">DesignerWallcoverings.com — Authorized Trade Channel</p>
+ </div>
+ <div class="footer-col">
+ <h4>Aesthetic</h4>
+ <div id="footerFacets"></div>
+ </div>
+ <div class="footer-col">
+ <h4>Trade</h4>
+ <button onclick="dwmOpen('Inquiry')">Project Inquiry</button>
+ <button onclick="dwmOpen('Sample')">Request Sample</button>
+ <button onclick="dwmOpen('Contact')">Contact</button>
+ </div>
+ </div>
+ <!-- mini-constellation: every storefront shows its position in the family -->
+ <div style="max-width:1400px;margin:0 auto 24px;padding:32px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)">
+ <div style="display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:12px;margin-bottom:18px">
+ <div>
+ <div style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:6px">★ DW FAMILY · 43 niches</div>
+ <div style="font-family:'EB Garamond',serif;font-style:italic;font-size:18px;color:var(--paper);letter-spacing:0.01em">You're on <span style="color:var(--accent);font-weight:500">{{SLUG}}</span>. Hover any star to leap.</div>
+ </div>
+ <a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--accent);font-weight:600;text-decoration:none;border:1px solid var(--accent);padding:8px 14px">DW Universe →</a>
+ </div>
+ <svg id="miniConst" viewBox="0 0 1080 140" style="width:100%;height:140px;display:block">
+ <defs>
+ <pattern id="dna-mat" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><line x1="0" y1="0" x2="0" y2="5" stroke="#c9b687" stroke-width="0.6"/></pattern>
+ <pattern id="dna-dec" width="8" height="5" patternUnits="userSpaceOnUse"><polyline points="0,4 4,1 8,4" stroke="#b86a4a" stroke-width="0.6" fill="none"/></pattern>
+ <pattern id="dna-cra" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(-30)"><line x1="0" y1="2.5" x2="5" y2="2.5" stroke="#6b8e6f" stroke-width="0.5" stroke-dasharray="1.4 1.2"/></pattern>
+ <pattern id="dna-use" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M0 0 L4 0 M0 0 L0 4" stroke="#4a6b8e" stroke-width="0.4" fill="none"/></pattern>
+ </defs>
+ </svg>
+ <div style="display:flex;justify-content:space-between;font-size:9px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:6px;padding:0 8px">
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#c9b687;border-radius:50%"></i>Material</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#b86a4a;border-radius:50%"></i>Decade</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#6b8e6f;border-radius:50%"></i>Craft</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#4a6b8e;border-radius:50%"></i>Use-case</span>
+ </div>
+ </div>
+
+ <div class="footer-bottom">
+ <span>1940swallpaper.com · a designer wallcoverings family vertical</span>
+ <span><a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="color:var(--accent);text-decoration:none;letter-spacing:0.18em">DW Universe — search all 43 niches at once →</a></span>
+ <span id="footerStat"></span>
+ </div>
+</footer>
+
+<script>
+// mini-constellation — 43 niche-stars, current site highlighted in gold
+(function(){
+ const SLUG = "{{SLUG}}";
+ const NICHES = [
+ ['silkwallpaper','Silk','mat'],['silkwallcoverings','Silk W/C','mat'],['linenwallpaper','Linen','mat'],
+ ['jutewallpaper','Jute','mat'],['raffiawallcoverings','Raffia W/C','mat'],['raffiawalls','Raffia Walls','mat'],
+ ['corkwallcovering','Cork','mat'],['fabricwallpaper','Fabric','mat'],['textilewallpaper','Textile','mat'],
+ ['metallicwallpaper','Metallic','mat'],['silverleafwallpaper','Silver Leaf','mat'],['vinylwallpaper','Vinyl','mat'],
+ ['micawallpaper','Mica','mat'],['madagascarwallpaper','Madagascar','mat'],['mylarwallpaper','Mylar','mat'],
+ ['suedewallpaper','Suede','mat'],
+ ['1800swallpaper','1800s','dec'],['1890swallpaper','1890s','dec'],['1900swallpaper','1900s','dec'],
+ ['1920swallpaper','1920s','dec'],['1930swallpaper','1930s','dec'],['1940swallpaper','1940s','dec'],
+ ['1950swallpaper','1950s','dec'],['1960swallpaper','1960s','dec'],['1970swallpaper','1970s','dec'],
+ ['1980swallpaper','1980s','dec'],['retrowalls','Retro','dec'],['wallpapersback','W. Back','dec'],
+ ['agedwallpaper','Aged','cra'],['handcraftedwallpaper','Handcrafted','cra'],['museumwallpaper','Museum','cra'],
+ ['restorationwallpaper','Restoration','cra'],['pastelwallpaper','Pastel','cra'],['glitterwalls','Glitter','cra'],
+ ['greenwallcoverings','Green','cra'],['naturalwallcoverings','Natural','cra'],['saloonwallpaper','Saloon','cra'],
+ ['contractwallpaper','Contract','use'],['hotelwallcoverings','Hotel','use'],['hospitalitywallpaper','Hospitality','use'],
+ ['healthcarewallpaper','Healthcare','use'],['restaurantwallpaper','Restaurant','use'],['architecturalwallcoverings','Architectural','use']
+ ];
+ const COLOR = { mat:'#c9b687', dec:'#b86a4a', cra:'#6b8e6f', use:'#4a6b8e' };
+ const W = 1080, H = 140, BANDS = ['mat','dec','cra','use'];
+ const groups = { mat:[], dec:[], cra:[], use:[] };
+ for (const n of NICHES) groups[n[2]].push(n);
+ const svg = document.getElementById('miniConst');
+ if (!svg) return;
+ const bandW = W / BANDS.length;
+ let nodes = '';
+ BANDS.forEach((band, bi) => {
+ const list = groups[band];
+ const cx = bi * bandW + bandW / 2;
+ list.forEach((n, i) => {
+ const t = list.length === 1 ? 0.5 : i / (list.length - 1);
+ // deterministic jitter per slug
+ let h = 0; for (let k = 0; k < n[0].length; k++) h = (h * 31 + n[0].charCodeAt(k)) | 0;
+ const jx = ((h & 0xff) / 255 - 0.5) * (bandW * 0.5);
+ const jy = (((h >> 8) & 0xff) / 255 - 0.5) * 14;
+ const x = cx + jx, y = 24 + t * (H - 48) + jy;
+ const isCurrent = n[0] === SLUG;
+ const r = isCurrent ? 8 : 4;
+ const op = isCurrent ? 1 : 0.55;
+ nodes += `<g class="mc-node" data-slug="${n[0]}" data-label="${n[1]}" style="cursor:pointer">
+ <circle cx="${x}" cy="${y}" r="${r}" fill="url(#dna-${band})" fill-opacity="${op}" stroke="${COLOR[band]}" stroke-opacity="${isCurrent?1:0.7}" stroke-width="${isCurrent?2:1}">
+ <title>${n[1]} — ${n[0]}.com</title>
+ </circle>
+ ${isCurrent ? `<circle cx="${x}" cy="${y}" r="${r+5}" fill="none" stroke="${COLOR[band]}" stroke-opacity="0.4" stroke-width="1"><animate attributeName="r" values="${r+5};${r+12};${r+5}" dur="2.4s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" repeatCount="indefinite"/></circle>` : ''}
+ </g>`;
+ });
+ });
+ // append nodes after defs
+ svg.insertAdjacentHTML('beforeend', nodes);
+ svg.querySelectorAll('.mc-node').forEach(n => {
+ n.addEventListener('mouseenter', () => n.querySelector('circle').setAttribute('fill-opacity', '1'));
+ n.addEventListener('mouseleave', e => {
+ const isCurrent = n.dataset.slug === SLUG;
+ n.querySelector('circle').setAttribute('fill-opacity', isCurrent ? '1' : '0.55');
+ });
+ n.addEventListener('click', () => window.open('https://' + n.dataset.slug + '.com', '_blank'));
+ });
+})();
+</script>
+
+<script>
+const state = { q:'', facet:'all', page:1, pages:1, total:0, loading:false, exhausted:false };
+const LABELS = {"all":"All"};
+
+function escAttr(s) { return String(s == null ? '' : s).replace(/[&<>"']/g, c => ({ '&':'&','<':'<','>':'>','"':'"',"'":''' }[c])); }
+// Image-URL allowlist: only DW Shopify CDN + designerwallcoverings.com (defends against XSS via crafted products.json)
+function safeImg(u) { return /^https:\/\/(?:cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u || '') ? u : '/hero-bg.jpg'; }
+function cardHTML(p) {
+ return '<img loading="lazy" src="' + escAttr(safeImg(p.image_url)) + '" alt="' + escAttr(p.title) + '">'
+ + '<div class="overlay">'
+ + '<div class="pat">' + escAttr(p.pattern_name || p.title) + '</div>'
+ + '<div class="ven">' + escAttr((p.vendor || '').replace(/-/g, ' ')) + '</div>'
+ + '<div class="actions">'
+ + '<button class="sample-btn" onclick="event.stopPropagation();dwmOpen(\'Sample\',' + JSON.stringify({sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}).replace(/"/g,'"') + ')">Sample</button>'
+ + '</div></div>';
+}
+
+async function loadFacets() {
+ let f;
+ try {
+ const r = await fetch('/api/facets');
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ f = await r.json();
+ } catch (e) { console.error('loadFacets failed:', e); return; }
+ const el = document.getElementById('facets');
+ for (const [k, v] of Object.entries(f.aesthetics).sort((a,b) => b[1] - a[1])) {
+ const b = document.createElement('button');
+ b.className = 'chip'; b.dataset.facet = k;
+ b.innerHTML = (LABELS[k] || k) + ' <span style="opacity:.55;font-weight:500;margin-left:4px">' + v + '</span>';
+ el.appendChild(b);
+ }
+ el.addEventListener('click', e => {
+ if (e.target.tagName !== 'BUTTON') return;
+ document.querySelectorAll('#facets button').forEach(b => b.classList.remove('active'));
+ e.target.classList.add('active');
+ state.facet = e.target.dataset.facet;
+ resetGrid();
+ });
+ document.getElementById('totalCount').textContent = f.total;
+ document.getElementById('footerStat').textContent = f.total + ' patterns · live archive';
+ // Footer aesthetic links
+ const footerEl = document.getElementById('footerFacets');
+ for (const [k] of Object.entries(f.aesthetics)) {
+ const b = document.createElement('button');
+ b.textContent = LABELS[k] || k;
+ b.onclick = () => { state.facet = k; resetGrid(); document.querySelectorAll('#facets button').forEach(x => x.classList.toggle('active', x.dataset.facet === k)); document.getElementById('shop').scrollIntoView({behavior:'smooth'}); };
+ footerEl.appendChild(b);
+ }
+}
+
+function resetGrid() {
+ state.page = 1; state.exhausted = false;
+ document.getElementById('grid').innerHTML = '';
+ document.getElementById('loading').textContent = 'Loading…';
+ loadGridPage();
+}
+
+async function loadGridPage() {
+ if (state.loading || state.exhausted) return;
+ state.loading = true;
+ const params = new URLSearchParams({ page:state.page, limit:24 });
+ if (state.q) params.set('q', state.q);
+ if (state.facet !== 'all') params.set('aesthetic', state.facet);
+ let data;
+ try {
+ const r = await fetch('/api/products?' + params);
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ data = await r.json();
+ } catch (e) {
+ console.error('loadGridPage failed:', e);
+ document.getElementById('loading').textContent = '— offline — refresh to retry —';
+ state.loading = false;
+ return;
+ }
+ state.total = data.total; state.pages = data.pages;
+
+ if (state.page === 1) {
+ document.getElementById('statLine').textContent = data.total + ' patterns · ' + (state.facet === 'all' ? 'all aesthetics' : (LABELS[state.facet] || state.facet)) + (state.q ? ' · matching "' + state.q + '"' : '');
+ }
+ const grid = document.getElementById('grid');
+ for (const p of data.items) {
+ const a = document.createElement('a');
+ a.className = 'card'; a.href = '#'; a.onclick = (e) => { e.preventDefault(); dwmOpen('Sample',{sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}); };
+ a.innerHTML = cardHTML(p);
+ grid.appendChild(a);
+ }
+ if (state.page >= state.pages || data.items.length === 0) {
+ state.exhausted = true;
+ document.getElementById('loading').textContent = state.total > 0 ? '— end of archive · ' + state.total + ' patterns —' : '';
+ } else state.page++;
+ state.loading = false;
+}
+
+const io = new IntersectionObserver(es => { for (const e of es) if (e.isIntersecting) loadGridPage(); }, { rootMargin:'600px 0px' });
+io.observe(document.getElementById('sentinel'));
+
+document.getElementById('searchInput').addEventListener('input', e => {
+ state.q = e.target.value.trim();
+ clearTimeout(window._t);
+ window._t = setTimeout(resetGrid, 220);
+});
+
+// Density slider
+const slider = document.getElementById('densitySlider');
+const dlabel = document.getElementById('densityLabel');
+function setDensity(n) {
+ document.documentElement.style.setProperty('--cols', n);
+ dlabel.textContent = n + ' cols';
+ try { localStorage.setItem('w40_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('w40_theme_density') || '6');
+if (savedDensity >= 4 && savedDensity <= 12) { slider.value = savedDensity; setDensity(savedDensity); }
+
+// Theme toggle
+const tb = document.getElementById('theme-toggle');
+function setTheme(t){ document.documentElement.dataset.theme = t; try { localStorage.setItem('w40_theme', t); } catch(e){} tb.textContent = t === 'dark' ? '☾' : '☀'; }
+setTheme(document.documentElement.dataset.theme || 'dark');
+tb.addEventListener('click', () => setTheme(document.documentElement.dataset.theme === 'dark' ? 'light' : 'dark'));
+
+loadFacets();
+loadGridPage();
+</script>
+<!-- ============================================================
+ DW UNIVERSAL CONTACT MODULE — fashion-house UX
+ Inject before </body> in every DW-family sister site.
+ Self-contained: CSS + 4 modals + JS submission handlers.
+ Uses host site's CSS vars (--bg, --fg, --gold, --rule).
+ ============================================================ -->
+<style>
+ /* === MODAL BASE === */
+ .dwm{position:fixed;inset:0;background:rgba(0,0,0,0.78);display:none;align-items:center;justify-content:center;z-index:9999;padding:24px;overflow-y:auto}
+ .dwm.open{display:flex}
+ .dwm-box{background:var(--bg);border:1px solid var(--rule);max-width:520px;width:100%;padding:36px 32px;position:relative;max-height:90vh;overflow-y:auto;animation:dwm-in 0.25s ease}
+ @keyframes dwm-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
+ .dwm-box h3{font-family:'Playfair Display',Georgia,serif;font-style:italic;font-weight:400;font-size:32px;line-height:1.05;margin-bottom:6px;color:var(--fg);letter-spacing:-0.01em}
+ .dwm-box .sub{color:var(--muted);font-size:12px;letter-spacing:0.16em;text-transform:uppercase;margin-bottom:24px;font-weight:500}
+ .dwm-close{position:absolute;top:18px;right:18px;background:transparent;border:0;color:var(--muted);font-size:24px;cursor:pointer;width:32px;height:32px;line-height:1;padding:0}
+ .dwm-close:hover{color:var(--gold)}
+ .dwm-preview{display:flex;gap:14px;align-items:center;padding:12px;background:var(--bg-soft);margin-bottom:18px}
+ .dwm-preview img{width:64px;height:64px;object-fit:cover}
+ .dwm-preview .pn{font-family:'Playfair Display',Georgia,serif;font-style:italic;font-size:15px;line-height:1.2;color:var(--fg)}
+ .dwm-preview .pc{font-size:10px;letter-spacing:0.14em;text-transform:uppercase;color:var(--muted);margin-top:4px}
+ .dwm-field{margin-bottom:14px}
+ .dwm-field label{display:block;font-size:10px;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted);margin-bottom:6px;font-weight:500}
+ .dwm-field input,.dwm-field textarea,.dwm-field select{width:100%;border:0;border-bottom:1px solid var(--rule);background:transparent;padding:8px 4px;font-size:14px;font-family:inherit;color:var(--fg);outline:none;transition:border-color 0.2s}
+ .dwm-field input:focus,.dwm-field textarea:focus{border-bottom-color:var(--gold)}
+ .dwm-field textarea{min-height:60px;resize:vertical}
+ .dwm-submit{background:var(--gold);color:#000;border:0;padding:14px 28px;font-family:inherit;font-size:11px;letter-spacing:0.20em;text-transform:uppercase;font-weight:700;cursor:pointer;width:100%;margin-top:8px;transition:opacity 0.15s}
+ .dwm-submit:hover{opacity:0.85}
+ .dwm-submit:disabled{opacity:0.5;cursor:default}
+ .dwm-status{margin-top:14px;font-size:11px;letter-spacing:0.16em;text-transform:uppercase;text-align:center;display:none}
+ .dwm-status.ok{color:var(--sage);display:block}
+ .dwm-status.err{color:#e08070;display:block}
+ /* contact-options */
+ .dwm-options{display:flex;flex-direction:column;gap:10px}
+ .dwm-option{display:flex;align-items:center;gap:14px;padding:18px 20px;background:transparent;border:1px solid var(--rule);color:var(--fg);font-family:inherit;font-size:11px;letter-spacing:0.20em;text-transform:uppercase;font-weight:600;cursor:pointer;text-decoration:none;transition:all 0.2s;text-align:left;width:100%}
+ .dwm-option:hover{border-color:var(--gold);color:var(--gold)}
+ .dwm-option svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.5;flex-shrink:0}
+ .dwm-option .lbl{flex:1;display:block}
+ .dwm-option .val{display:block;font-size:10px;letter-spacing:0.14em;text-transform:none;font-weight:500;opacity:0.65;margin-top:4px}
+</style>
+
+<!-- Contact options modal -->
+<div class="dwm" id="dwmContact" onclick="if(event.target===this)dwmClose('Contact')">
+ <div class="dwm-box" style="max-width:440px">
+ <button class="dwm-close" onclick="dwmClose('Contact')" aria-label="Close">×</button>
+ <h3>Contact</h3>
+ <p class="sub" id="dwmContactSub">Three ways to reach us</p>
+ <div class="dwm-options">
+ <button class="dwm-option" type="button" onclick="dwmClose('Contact');dwmOpen('Inquiry')">
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v12H7l-3 3z"/></svg>
+ <span class="lbl">Send an Inquiry<span class="val">Project name · scope · all the details</span></span>
+ </button>
+ <button class="dwm-option" type="button" onclick="dwmClose('Contact');dwmOpen('Sample')">
+ <svg viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="14"/><path d="M4 10h16M9 6V3h6v3"/></svg>
+ <span class="lbl">Request a Sample<span class="val">Memo sample · ships free · 3–5 business days</span></span>
+ </button>
+ <a class="dwm-option" id="dwmContactEmailLink" href="mailto:info@designerwallcoverings.com">
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v12H3z"/><path d="M3 6l9 7 9-7"/></svg>
+ <span class="lbl">Email Us<span class="val" id="dwmContactEmailLabel">info@designerwallcoverings.com</span></span>
+ </a>
+ </div>
+ </div>
+</div>
+
+<!-- Inquiry modal -->
+<div class="dwm" id="dwmInquiry" onclick="if(event.target===this)dwmClose('Inquiry')">
+ <div class="dwm-box">
+ <button class="dwm-close" onclick="dwmClose('Inquiry')" aria-label="Close">×</button>
+ <h3>Project Inquiry</h3>
+ <p class="sub">We'll respond within one business day</p>
+ <form id="dwmInquiryForm" onsubmit="return dwmSubmit(event,'inquiry')">
+ <div class="dwm-field"><label>Name</label><input type="text" name="name" required></div>
+ <div class="dwm-field"><label>Email</label><input type="email" name="email" required></div>
+ <div class="dwm-field"><label>Phone</label><input type="tel" name="phone"></div>
+ <div class="dwm-field"><label>Company / Trade</label><input type="text" name="company"></div>
+ <div class="dwm-field"><label>Project Name</label><input type="text" name="projectName" required></div>
+ <div class="dwm-field"><label>Project Scope</label><textarea name="projectScope" placeholder="Square footage · room count · timeline" required></textarea></div>
+ <div class="dwm-field"><label>Additional Information</label><textarea name="message" placeholder="Patterns of interest, finish preferences, budget"></textarea></div>
+ <button type="submit" class="dwm-submit">Send Inquiry</button>
+ <div class="dwm-status" id="dwmInquiryStatus"></div>
+ </form>
+ </div>
+</div>
+
+<!-- Sample-request modal -->
+<div class="dwm" id="dwmSample" onclick="if(event.target===this)dwmClose('Sample')">
+ <div class="dwm-box">
+ <button class="dwm-close" onclick="dwmClose('Sample')" aria-label="Close">×</button>
+ <h3>Request a Sample</h3>
+ <p class="sub">Memo sample · ships free · 3–5 business days</p>
+ <div class="dwm-preview" id="dwmSamplePreview" style="display:none">
+ <img id="dwmSampleImg" src="" alt="">
+ <div><div class="pn" id="dwmSampleName"></div><div class="pc" id="dwmSampleSku"></div></div>
+ </div>
+ <form id="dwmSampleForm" onsubmit="return dwmSubmit(event,'sample')">
+ <input type="hidden" name="sku" id="dwmSampleSkuInput">
+ <input type="hidden" name="title" id="dwmSampleTitleInput">
+ <input type="hidden" name="image_url" id="dwmSampleImageInput">
+ <div class="dwm-field"><label>Name</label><input type="text" name="name" required></div>
+ <div class="dwm-field"><label>Email</label><input type="email" name="email" required></div>
+ <div class="dwm-field"><label>Company / Trade</label><input type="text" name="company"></div>
+ <div class="dwm-field"><label>Shipping Address</label><input type="text" name="address" placeholder="Street" required></div>
+ <div class="dwm-field" style="display:grid;grid-template-columns:2fr 1fr 1fr;gap:8px">
+ <input type="text" name="city" placeholder="City" required>
+ <input type="text" name="state" placeholder="State" required>
+ <input type="text" name="zip" placeholder="ZIP" required>
+ </div>
+ <div class="dwm-field"><label>Notes (optional)</label><textarea name="message" placeholder="Project, sq.ft., timing"></textarea></div>
+ <button type="submit" class="dwm-submit">Send Sample Request</button>
+ <div class="dwm-status" id="dwmSampleStatus"></div>
+ </form>
+ </div>
+</div>
+
+<script>
+ // Universal modal control
+ function dwmOpen(name, opts){
+ document.getElementById('dwm' + name).classList.add('open');
+ document.body.style.overflow = 'hidden';
+ if (name === 'Sample' && opts) {
+ document.getElementById('dwmSamplePreview').style.display = 'flex';
+ document.getElementById('dwmSampleImg').src = opts.image_url || '';
+ document.getElementById('dwmSampleName').textContent = opts.title || '';
+ document.getElementById('dwmSampleSku').textContent = opts.sku || '';
+ document.getElementById('dwmSampleSkuInput').value = opts.sku || '';
+ document.getElementById('dwmSampleTitleInput').value = opts.title || '';
+ document.getElementById('dwmSampleImageInput').value = opts.image_url || '';
+ } else if (name === 'Sample') {
+ document.getElementById('dwmSamplePreview').style.display = 'none';
+ document.getElementById('dwmSampleSkuInput').value = '';
+ document.getElementById('dwmSampleTitleInput').value = '';
+ document.getElementById('dwmSampleImageInput').value = '';
+ }
+ }
+ function dwmClose(name){ document.getElementById('dwm'+name).classList.remove('open'); document.body.style.overflow=''; }
+
+ // Universal form submit — POSTs to /api/send-{kind}
+ async function dwmSubmit(e, kind) {
+ e.preventDefault();
+ const form = e.target;
+ const data = Object.fromEntries(new FormData(form).entries());
+ const btn = form.querySelector('.dwm-submit');
+ const status = form.querySelector('.dwm-status');
+ btn.disabled = true; const orig = btn.textContent; btn.textContent = 'Sending…';
+ status.className = 'dwm-status';
+ try {
+ const r = await fetch('/api/send-' + kind, { method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify(data) });
+ if (!r.ok) throw new Error('HTTP '+r.status);
+ const j = await r.json();
+ status.textContent = kind === 'sample' ? 'Sample request sent — ships within 3–5 business days' : 'Inquiry sent — we respond within 1 business day';
+ status.className = 'dwm-status ok';
+ btn.textContent = 'Sent ✓';
+ setTimeout(() => { dwmClose(kind === 'sample' ? 'Sample' : 'Inquiry'); btn.disabled = false; btn.textContent = orig; status.className = 'dwm-status'; form.reset(); }, 2800);
+ } catch (err) {
+ status.textContent = 'Send failed — please email info@designerwallcoverings.com';
+ status.className = 'dwm-status err';
+ btn.disabled = false; btn.textContent = orig;
+ }
+ return false;
+ }
+
+ // Wire up "Memo samples ship free" badge in hero to open sample modal directly
+ document.querySelectorAll('.hero .badge, [data-open-sample]').forEach(el => {
+ el.style.cursor = 'pointer';
+ el.addEventListener('click', () => dwmOpen('Sample'));
+ });
+
+ // Wire nav "Trade" link to inquiry modal
+ document.querySelectorAll('nav a[href*="designerwallcoverings.com"]').forEach(a => {
+ a.removeAttribute('target');
+ a.removeAttribute('href');
+ a.style.cursor = 'pointer';
+ a.addEventListener('click', e => { e.preventDefault(); dwmOpen('Contact'); });
+ });
+
+ // Override product card clicks — open Sample modal pre-filled instead of redirecting to DW
+ document.addEventListener('click', e => {
+ const card = e.target.closest('.card, .rail-card');
+ if (!card) return;
+ if (card.tagName === 'A' && (card.getAttribute('href') || '').startsWith('/sample/')) {
+ e.preventDefault();
+ const img = card.querySelector('img');
+ const pat = card.querySelector('.pat');
+ const sku = card.getAttribute('href').replace('/sample/', '');
+ dwmOpen('Sample', {
+ sku,
+ title: pat ? pat.textContent.trim() : '',
+ image_url: img ? img.src : ''
+ });
+ }
+ }, true);
+</script>
+
+</body>
+</html>
diff --git a/server.js b/server.js
new file mode 100644
index 0000000..020e724
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * 1940s WALLPAPER — DW family vertical
+ * Curated slice from live designerwallcoverings.com Shopify catalog.
+ */
+const express = require('express');
+const helmet = require('helmet');
+const path = require('path');
+const fs = require('fs');
+
+const PORT = process.env.PORT || 9838;
+const DW_SHOPIFY = 'https://designerwallcoverings.com';
+const __SITE = path.basename(__dirname);
+let DATA_RAW;
+try {
+ const raw = fs.readFileSync(path.join(__dirname, 'data', 'products.json'), 'utf8');
+ DATA_RAW = JSON.parse(raw);
+ if (!Array.isArray(DATA_RAW)) throw new Error('products.json must be an array');
+} catch (e) {
+ console.error(`[${__SITE}] FATAL: could not load products.json — ${e.message}`);
+ console.error(`[${__SITE}] Starting with empty catalog. Run pull script to populate data/products.json.`);
+ DATA_RAW = [];
+}
+
+function isJunk(p) {
+ if (!p.image_url || !p.image_url.trim()) return true;
+ if (!p.handle && !p.sku) return true;
+ const t = p.title || '';
+ if (/lamp|rug|pillow|throw|tripod|frame|mirror|vase|candle|sculpture|figurine/i.test(t)) return true;
+ if (/visual.{0,3}merchandiser/i.test(t)) return true;
+ if (/(?:^|\W)image[ _-]?4(?:\W|$)/i.test(t)) return true;
+ if (/bh.?90210|beverly.?hills.?90210|iconic.{0,4}bh/i.test(t)) return true;
+ return false;
+}
+
+const PRODUCTS = DATA_RAW.filter(p => !isJunk(p));
+const DROPPED = DATA_RAW.length - PRODUCTS.length;
+console.log(`Loaded ${DATA_RAW.length}, kept ${PRODUCTS.length}, dropped ${DROPPED}`);
+
+const app = express();
+// Security headers via helmet (added 2026-05-04 overnight YOLO loop)
+app.use(helmet({ contentSecurityPolicy: false }));
+app.use(express.json({ limit: '256kb' }));
+// Universal contact module — modals, /api/send-inquiry, /api/send-sample, /zd-loader.js
+require('./_universal-contact')(app, { siteName: "1940s Wallpaper", zdColor: "#d49a55", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "1940swallpaper" });
+
+app.use(express.static(path.join(__dirname, 'public')));
+
+app.get('/api/products', (req, res) => {
+ const { q, aesthetic, vendor, page = 1, limit = 24 } = req.query;
+ let list = PRODUCTS;
+ if (q) {
+ const needle = q.toLowerCase();
+ list = list.filter(p => (p.title || '').toLowerCase().includes(needle) || (p.tags || []).some(t => t.toLowerCase().includes(needle)));
+ }
+ if (aesthetic && aesthetic !== 'all') list = list.filter(p => p.aesthetic === aesthetic);
+ if (vendor && vendor !== 'all') list = list.filter(p => p.vendor === vendor);
+ const total = list.length;
+ const pageNum = Math.max(1, parseInt(page) || 1);
+ const lim = Math.min(60, parseInt(limit) || 24);
+ const start = (pageNum - 1) * lim;
+ res.json({ total, page: pageNum, limit: lim, pages: Math.ceil(total / lim), items: list.slice(start, start + lim) });
+});
+
+app.get('/api/sliders', (req, res) => {
+ const SLIDER_AESTHETICS = ["atomic","cottage","toile","botanical","stripe","abstract"];
+ const out = [];
+ for (const a of SLIDER_AESTHETICS) {
+ const items = PRODUCTS.filter(p => p.aesthetic === a).slice(0, 12);
+ if (items.length >= 4) out.push({ aesthetic: a, items });
+ }
+ res.json({ rails: out });
+});
+
+app.get('/api/facets', (req, res) => {
+ const aesthetics = {}; const vendors = {};
+ for (const p of PRODUCTS) {
+ aesthetics[p.aesthetic] = (aesthetics[p.aesthetic] || 0) + 1;
+ vendors[p.vendor] = (vendors[p.vendor] || 0) + 1;
+ }
+ res.json({ aesthetics, vendors, total: PRODUCTS.length });
+});
+
+app.get('/api/health', (req, res) => res.json({ status: 'ok', count: PRODUCTS.length, dropped: DROPPED }));
+
+app.get('/sample/:handle', (req, res) => {
+ const p = PRODUCTS.find(x => x.handle === req.params.handle || x.sku === req.params.handle);
+ if (!p) return res.status(404).send('Not found');
+ res.redirect(302, p.product_url || `${DW_SHOPIFY}/products/${encodeURIComponent(p.handle)}#sample`);
+});
+
+// sitemap.xml + robots.txt for SEO
+app.get('/robots.txt', (req, res) => {
+ res.type('text/plain').send(`User-agent: *
+Allow: /
+Sitemap: https://1940swallpaper.com/sitemap.xml
+`);
+});
+app.get('/sitemap.xml', (req, res) => {
+ const urls = ['/'];
+ const xml = `<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
+${urls.map(u => ` <url><loc>https://1940swallpaper.com${u}</loc><changefreq>weekly</changefreq></url>`).join('\n')}
+</urlset>`;
+ res.type('application/xml').send(xml);
+});
+
+app.listen(PORT, '127.0.0.1', () => {
+ console.log(`1940swallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..ce30304
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+ "slug": "1940swallpaper",
+ "siteName": "1940s Wallpaper",
+ "domain": "1940swallpaper.com",
+ "nicheKeyword": "1940s",
+ "tagline": "Wartime and post-war prints.",
+ "heroHeadline": "1940S WALLPAPER",
+ "heroSub": "Wartime and post-war prints.",
+ "theme": {
+ "accent": "#d49a55"
+ },
+ "rails": [
+ "novelty",
+ "tropical",
+ "victory",
+ "floral",
+ "tradiotional",
+ "feedsack"
+ ],
+ "port": 9838
+}
(oldest)
·
back to 1940swallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero 9468f2a →