← back to Restaurantwallpaper
initial scaffold (gitify-all 2026-05-06)
b3d7a1b5e32578430ebacc2446a35b5e321bfcc9 · 2026-05-06 10:25:46 -0700 · Steve Abrams
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 b3d7a1b5e32578430ebacc2446a35b5e321bfcc9
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:46 2026 -0700
initial scaffold (gitify-all 2026-05-06)
---
.gitignore | 12 +
_universal-auth.js | 296 +
_universal-contact.js | Bin 0 -> 15049 bytes
data/products.json | 22272 ++++++++++++++++++++++++++++++++++++++++++++++++
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, 24193 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7e6a9c3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,12 @@
+node_modules/
+.env
+.env.local
+.env.*.local
+.env.*
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+*.bak
diff --git a/_universal-auth.js b/_universal-auth.js
new file mode 100644
index 0000000..02bc9fb
--- /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=>{const e=s=>String(s||'').replace(/[<>&"']/g,c=>({'<':'<','>':'>','&':'&','"':'"',"'":'''}[c]));const u=String(f.image_url||'');const safeUrl=/^https:\/\/(cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u)?u:'';return '<div class="row"><img src="'+e(safeUrl)+'" alt=""><div><div>'+e(f.title||f.sku)+'</div><div class="muted">'+e(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..ebf3b0e
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,22272 @@
+[
+ {
+ "sku": "dwkk-127710",
+ "handle": "dwkk-127710",
+ "title": "Tree Bark - Antique By Clarke And Clarke | Clarke & Clarke Reflections |Solid Texture Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0062_01_CAC_0e57882d-c181-43ce-8200-71a630c6b6fe.jpg?v=1726037821",
+ "tags": [
+ "20.875In",
+ "Antique",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Taupe",
+ "display_variant",
+ "Green",
+ "Hallway",
+ "Living Room",
+ "Non-Woven",
+ "Olive",
+ "Print",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tree Bark",
+ "United Kingdom",
+ "Vinyl",
+ "W0062/01.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 184.47,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127710"
+ },
+ {
+ "sku": "natalia-peach-curly-scroll-wallpaper-wallpaper-cca-82825",
+ "handle": "natalia-peach-curly-scroll-wallpaper-wallpaper-cca-82825",
+ "title": "Natalia Peach Curly Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ee60a39cd8eeebc693d3ffeaa03a143c.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gold",
+ "Gray",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-peach-curly-scroll-wallpaper-wallpaper-cca-82825"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72075",
+ "handle": "la-roche-durable-vinyl-dur-72075",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72075-sample-clean.jpg?v=1774484295",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Dusty Rose",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Pink",
+ "Rustic",
+ "Serene",
+ "Silk",
+ "Silk Texture",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72075"
+ },
+ {
+ "sku": "eden-commercial-wallcovering-eden-edn-010",
+ "handle": "eden-commercial-wallcovering-eden-edn-010",
+ "title": "Eden Commercial Wallcovering",
+ "vendor": "Newmor Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/NEWMOR_1ea8b405-2dba-44d4-9e56-183f64ba4cb9.jpg?v=1573940025",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Newmor",
+ "Newmor Wallcoverings",
+ "Smoke",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wallpapers",
+ "Walls",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eden-commercial-wallcovering-eden-edn-010"
+ },
+ {
+ "sku": "under-water-waves-xuw-44158",
+ "handle": "under-water-waves-xuw-44158",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44158-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735602",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Grey",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44158"
+ },
+ {
+ "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48387",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48387",
+ "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XPY-48387-sample-clean.jpg?v=1774480440",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48387"
+ },
+ {
+ "sku": "geode-by-innovations-usa-dwc-geode-7",
+ "handle": "geode-by-innovations-usa-dwc-geode-7",
+ "title": "Geode | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Geode-7.jpg?v=1736199486",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geode",
+ "Geode-7",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Non-woven",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/geode-by-innovations-usa-dwc-geode-7"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72105",
+ "handle": "gironde-durable-vinyl-dur-72105",
+ "title": "Gironde Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72105-sample-clean.jpg?v=1774484407",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72105"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53111",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53111",
+ "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53111-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716039",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53111"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58100",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58100",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58100-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715180",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Burlap",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Minimalist",
+ "Neutral",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58100"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47893",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47893",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47893-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722440",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Sand",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47893"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53204",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53204",
+ "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53204-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710068",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53204"
+ },
+ {
+ "sku": "biscay-bay-faux-pine-crosshatch-wbs-39608",
+ "handle": "biscay-bay-faux-pine-crosshatch-wbs-39608",
+ "title": "Biscay Bay Faux Pine Crosshatch | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39608-sample-biscay-bay-faux-pine-crosshatch-hollywood-wallcoverings.jpg?v=1775705349",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Farmhouse",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Woven"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-faux-pine-crosshatch-wbs-39608"
+ },
+ {
+ "sku": "andrew-sky-ships-wallpaper-cca-82933",
+ "handle": "andrew-sky-ships-wallpaper-cca-82933",
+ "title": "Andrew Sky Ships Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0c86f3079a6bcc954c01ff133fe8d350.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Nautical",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Scenic",
+ "Series: Brewster",
+ "Ships",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/andrew-sky-ships-wallpaper-cca-82933"
+ },
+ {
+ "sku": "hollywood-crystal-xhw-2010109",
+ "handle": "hollywood-crystal-xhw-2010109",
+ "title": "Hollywood Crystal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-hearth.jpg?v=1777480963",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Crystal",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Serene",
+ "Smoke",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010109"
+ },
+ {
+ "sku": "dwss-72447",
+ "handle": "dwss-72447",
+ "title": "Hella green Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/418-18_image1.jpg?v=1646104297",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hella",
+ "Hella green Sample",
+ "Light Green",
+ "P418-18",
+ "Paper",
+ "Sandberg",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72447"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_vrl001-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vrl001-jpg",
+ "title": "VRL001 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_VR008.jpg?v=1733872018",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vrl001-jpg"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72077",
+ "handle": "la-roche-durable-vinyl-dur-72077",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72077-sample-clean.jpg?v=1774484305",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72077"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9489",
+ "handle": "chinese-fret-walls-cfw-9489",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9489-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708062",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9489"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76626",
+ "handle": "rustic-glam-vinyl-gpr-76626",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76626-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731734",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "USFCID#vp885-049",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76626"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53485",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53485",
+ "title": "Santa Rosa Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53485-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732854",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Paper",
+ "Santa Rosa Contemporary Durable",
+ "Silver",
+ "Sophisticated",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53485"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2517",
+ "handle": "faux-leaf-squares-fls-2517",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2517-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711912",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2517"
+ },
+ {
+ "sku": "eur-80367-ncw4353-designer-wallcoverings-los-angeles",
+ "handle": "eur-80367-ncw4353-designer-wallcoverings-los-angeles",
+ "title": "Colbert 03 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505562675.jpg?v=1775523639",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Colbert",
+ "Commercial",
+ "Dark Brown",
+ "Gold",
+ "Hallway",
+ "Leaf",
+ "LES INDIENNES",
+ "Living Room",
+ "Mid-century",
+ "Mid-century Modern",
+ "Multi",
+ "NCW4353",
+ "NCW4353-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Taupe",
+ "Teal",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80367-ncw4353-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2874",
+ "handle": "peter-s-plastered-walls-ppw-2874",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2874-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729061",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2874"
+ },
+ {
+ "sku": "faux-wild-rice-fwr-9368",
+ "handle": "faux-wild-rice-fwr-9368",
+ "title": "Faux Wild Rice | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fwr-9368-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712081",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 31.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9368"
+ },
+ {
+ "sku": "leena-green-loopy-hoops-wallpaper-cca-83015",
+ "handle": "leena-green-loopy-hoops-wallpaper-cca-83015",
+ "title": "Leena Green Loopy Hoops Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/69a9095f1701028f34043dab7c490ada.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Lattice",
+ "Modern",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leena-green-loopy-hoops-wallpaper-cca-83015"
+ },
+ {
+ "sku": "dwss-71417",
+ "handle": "dwss-71417",
+ "title": "Emil - Blush Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/835-24_image2.jpg?v=1646103691",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blush",
+ "Class A Fire Rated",
+ "Commercial",
+ "Emil",
+ "Emil blush",
+ "Floral",
+ "Gray",
+ "Light Gray",
+ "Non-Woven",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sandberg",
+ "Sandberg Emil",
+ "Scandinavian",
+ "Swedish Design",
+ "Timeless",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 146.1,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-71417"
+ },
+ {
+ "sku": "chandbali-wide-alpine-romo",
+ "handle": "chandbali-wide-alpine-romo",
+ "title": "Chandbali Wide Alpine | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W595-06-chandbali-wide-wallcovering-alpine_02.jpg?v=1776398570",
+ "tags": [
+ "Architectural",
+ "Artesia Wallcoverings",
+ "Background Color single dominant color",
+ "Chandbali Wide",
+ "Commercial",
+ "Contemporary",
+ "Healthcare",
+ "Hospitality",
+ "Minimalist",
+ "Non-Woven",
+ "Office",
+ "Romo",
+ "Scandinavian",
+ "Seafoam Green",
+ "Small",
+ "Soft White",
+ "Stripe",
+ "Teal",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "W595/06",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chandbali-wide-alpine-romo"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52099",
+ "handle": "canal-texture-durable-walls-xwd-52099",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-sandalwood.jpg?v=1777480406",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52099"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10290r-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10290r-jpg",
+ "title": "EM10290R | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10289r.jpg?v=1733873270",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM10290R",
+ "Paper",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10290r-jpg"
+ },
+ {
+ "sku": "conrad-black-map-wallpaper-cca-82943",
+ "handle": "conrad-black-map-wallpaper-cca-82943",
+ "title": "Conrad Black Map Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ca2e656226cc19e6e55137caeabf848c.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Novelty",
+ "Paper",
+ "Prepasted",
+ "Scenic",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/conrad-black-map-wallpaper-cca-82943"
+ },
+ {
+ "sku": "limoges-durable-vinyl-dur-72022",
+ "handle": "limoges-durable-vinyl-dur-72022",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72022-sample-clean.jpg?v=1774484018",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Limoges Durable Vinyl",
+ "Living Room",
+ "Non-woven",
+ "Oatmeal",
+ "Rustic",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72022"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad9507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad9507-jpg",
+ "title": "Ambient Design - AD9507 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9506.jpg?v=1733874152",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Seagreen",
+ "Paper",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9507-jpg"
+ },
+ {
+ "sku": "groveland-vertical-durable-walls-xwt-53422",
+ "handle": "groveland-vertical-durable-walls-xwt-53422",
+ "title": "Groveland Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53422-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715078",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Dot",
+ "Geometric",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53422"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52374",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52374",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/perplex-windswept.jpg?v=1777480544",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Taupe",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52374"
+ },
+ {
+ "sku": "ncw4304-03",
+ "handle": "ncw4304-03",
+ "title": "Les Rêves Marguerite Pink/Grey - Coral Blush Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262313523.jpg?v=1775520296",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "Gray",
+ "NCW4304-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4304-03"
+ },
+ {
+ "sku": "eur-80384-ncw4356-designer-wallcoverings-los-angeles",
+ "handle": "eur-80384-ncw4356-designer-wallcoverings-los-angeles",
+ "title": "Fortoiseau 05 - Onyx Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506152499.jpg?v=1775523743",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Bedroom",
+ "bird",
+ "Birds",
+ "Black",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "Fauna",
+ "Fortoiseau",
+ "Gray",
+ "LES INDIENNES",
+ "Living Room",
+ "NCW4356",
+ "NCW4356-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Silver",
+ "Sophisticated",
+ "Tile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80384-ncw4356-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwss-72724",
+ "handle": "dwss-72724",
+ "title": "Lillie indigo blue sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/829-46_image1_026f2188-3596-42a8-9b74-8bdabd942754.jpg?v=1646105205",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Commercial",
+ "Damask",
+ "Granite",
+ "Gray",
+ "INDIGO BLUE",
+ "Lillie",
+ "Lillie indigo blue sample",
+ "Ogee",
+ "P829-46",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72724"
+ },
+ {
+ "sku": "dwkk-127828",
+ "handle": "dwkk-127828",
+ "title": "Wild Strawberry Wp - Ivory Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0135_03_CAC_0160f6e4-2507-46e2-9360-b01bb2b615a8.jpg?v=1753321572",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blush Pink",
+ "Botanical",
+ "Canary Yellow",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Flowers",
+ "Grandmillennial",
+ "Green",
+ "Leaves",
+ "Non Woven - 100%",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Playful",
+ "Powder Room",
+ "Print",
+ "Sage Green",
+ "Strawberries",
+ "Strawberry Red",
+ "Traditional",
+ "United Kingdom",
+ "W0135/03.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "Wild Strawberry Wp",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127828"
+ },
+ {
+ "sku": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "handle": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "title": "Dylan Beige Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/17cb5ce99e864c47c875e18e6b43763a.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dylan-beige-candy-stripe-wallpaper-cca-82977"
+ },
+ {
+ "sku": "hollywood-crystal-xhw-2010105",
+ "handle": "hollywood-crystal-xhw-2010105",
+ "title": "Hollywood Crystal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/crystalline-stone_run.jpg?v=1777480956",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Crystal",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-crystal-xhw-2010105"
+ },
+ {
+ "sku": "dwtt-71788-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71788-designer-wallcoverings-los-angeles",
+ "title": "Wallcoverings White | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35106_d89067a2-1fd0-495f-8362-ca78e63e79b1.jpg?v=1733893401",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Calm",
+ "Commercial",
+ "Contemporary",
+ "Entryway",
+ "Living Room",
+ "Medium Scale",
+ "Paper",
+ "Pattern",
+ "REVIEW",
+ "Serene",
+ "T35106",
+ "Thibaut",
+ "Thibaut Wallcoverings",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71788-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9500-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9500-jpg",
+ "title": "SM9500 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9400.jpg?v=1733872532",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9500-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2509",
+ "handle": "faux-leaf-squares-fls-2509",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2509-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711885",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2509"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5106-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5106-jpg",
+ "title": "Kami - Nickel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5106.jpg?v=1762298536",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "Geometric",
+ "Gray",
+ "Kami",
+ "Nickel",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5106-jpg"
+ },
+ {
+ "sku": "route-66-car-wallpaper-scr-7924",
+ "handle": "route-66-car-wallpaper-scr-7924",
+ "title": "Route 66 Car Wallcovering",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/27d45a4274defe7dc914a6fca2ac5134.jpg?v=1572309084",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Berry",
+ "Brick",
+ "Burgundy",
+ "Carmine",
+ "Claret",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Contemporary",
+ "Cordovan",
+ "Designer Wallcoverings",
+ "Garnet",
+ "Linen",
+ "Merlot",
+ "Oxblood",
+ "Paper",
+ "Pink",
+ "Pinks White",
+ "Raisin",
+ "Red",
+ "Route 66 Car Wallcovering",
+ "Screen Print",
+ "Shell",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/route-66-car-wallpaper-scr-7924"
+ },
+ {
+ "sku": "hollywood-antique-damask-xhw-2010220",
+ "handle": "hollywood-antique-damask-xhw-2010220",
+ "title": "Hollywood Antique Damask | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/luca-gouache_4275cc1c-032f-466f-b6cf-3838fe63a734.jpg?v=1777481503",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Antique",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Damask",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Hollywood Antique Damask",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Sky Blue",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-antique-damask-xhw-2010220"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9514-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9514-jpg",
+ "title": "SM9514 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9513.jpg?v=1733872502",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Single Dominant Background Color Word",
+ "Solid",
+ "Terracotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9514-jpg"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48459",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48459",
+ "title": "Sudbury Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqe-48459-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735105",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burlywood",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Rustic",
+ "Saddlebrown",
+ "Sudbury Type 2 Vinyl",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48459"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar9400-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar9400-jpg",
+ "title": "Armor Paint - AR9400 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_am11390.jpg?v=1733873914",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Khaki",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9400-jpg"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47089",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47089",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47089-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699374",
+ "tags": [
+ "Architectural",
+ "Ashbourne Type 2 Vinyl Wallcovering",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47089"
+ },
+ {
+ "sku": "delilah-wheat-tulip-damask-wallpaper-cca-83238",
+ "handle": "delilah-wheat-tulip-damask-wallpaper-cca-83238",
+ "title": "Delilah Wheat Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/349eb190727830a8295723f1b7f4151d.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-wheat-tulip-damask-wallpaper-cca-83238"
+ },
+ {
+ "sku": "eur-80292-ncw4277-designer-wallcoverings-los-angeles",
+ "handle": "eur-80292-ncw4277-designer-wallcoverings-los-angeles",
+ "title": "Meredith 02 - Neutral Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502482483.jpg?v=1775523199",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "COROMANDEL",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Grey",
+ "Light Grey",
+ "Living Room",
+ "Luxe",
+ "Meredith",
+ "NCW4277",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Beige",
+ "Paper",
+ "Scroll",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80292-ncw4277-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53199",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53199",
+ "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53199-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710045",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Sage",
+ "Living Room",
+ "Pale Green",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53199"
+ },
+ {
+ "sku": "dwss-72606",
+ "handle": "dwss-72606",
+ "title": "Sandra misty blue CS Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/651-26_2-2.jpg?v=1646269184",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Floral",
+ "MISTY BLUE",
+ "P651-26CS",
+ "Paper",
+ "Sandberg",
+ "Sandra",
+ "Sandra misty blue CS",
+ "Steel",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72606"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010175",
+ "handle": "hollywood-tailored-xhw-2010175",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-poet_house.jpg?v=1777480967",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Lattice",
+ "Light Grey",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010175"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10207-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10207-jpg",
+ "title": "SP10207 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10206.jpg?v=1733872390",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10207-jpg"
+ },
+ {
+ "sku": "seine-marne-durable-vinyl-dur-72135",
+ "handle": "seine-marne-durable-vinyl-dur-72135",
+ "title": "Raked Faux Suede - Light Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72135-sample-clean.jpg?v=1774484520",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Charcoal",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72135"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201075",
+ "handle": "hollywood-skyline-xhw-201075",
+ "title": "Hollywood Skyline | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bentley-rocker.jpg?v=1777480936",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Taupe",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 62.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201075"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52376",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52376",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52376-sample-pearl-bay-vertical-faux-durable-hollywood-wallcoverings.jpg?v=1775729023",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue",
+ "Light Periwinkle",
+ "Living Room",
+ "Modern",
+ "Periwinkle",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52376"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47738",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47738",
+ "title": "Harrison Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlg-47738-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716475",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47738"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwk-52589",
+ "handle": "vanderbilt-durable-walls-xwk-52589",
+ "title": "Vanderbilt Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulum-saltwater.jpg?v=1777480631",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sand",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwk-52589"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52094",
+ "handle": "canal-texture-durable-walls-xwa-52094",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-spice.jpg?v=1777480398",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Golden Brown",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52094"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2753",
+ "handle": "faux-leaf-squares-fls-2753",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2753-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775712008",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Gray",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2753"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2895_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2895_8-jpg",
+ "title": "Grove - Cafe | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2895_8.jpg?v=1762296344",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Cafe",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Grove",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2895_8-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2754",
+ "handle": "faux-leaf-squares-fls-2754",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2754-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775712011",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2754"
+ },
+ {
+ "sku": "asha-pearl-lotus-texture-wallpaper-cca-83274",
+ "handle": "asha-pearl-lotus-texture-wallpaper-cca-83274",
+ "title": "Asha Pearl Lotus Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/05be3c8ff17cd44c99b5c5482a6410a9.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Non-Woven",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pearl-lotus-texture-wallpaper-cca-83274"
+ },
+ {
+ "sku": "indian-shores-faux-effect-durable-walls-xwo-53647",
+ "handle": "indian-shores-faux-effect-durable-walls-xwo-53647",
+ "title": "Indian Shores Faux Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53647-sample-indian-shores-faux-effect-durable-hollywood-wallcoverings.jpg?v=1775719556",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Luxe",
+ "Sophisticated",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/indian-shores-faux-effect-durable-walls-xwo-53647"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2885_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2885_8-jpg",
+ "title": "Grove - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2885_8.jpg?v=1762295987",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Grove",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2885_8-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73031",
+ "handle": "benedict-canyon-sisal-hlw-73031",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73031-sample-clean.jpg?v=1774483123",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73031"
+ },
+ {
+ "sku": "eur-80169-ncw4156-designer-wallcoverings-los-angeles",
+ "handle": "eur-80169-ncw4156-designer-wallcoverings-los-angeles",
+ "title": "Montrose 04 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498222643.jpg?v=1775522542",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Living Room",
+ "Montrose",
+ "NCW4156",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Regencycore",
+ "ROSSLYN",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80169-ncw4156-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4390-04",
+ "handle": "ncw4390-04",
+ "title": "Nina Campbell Wallcoverings - Golden Yellow Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265360947.jpg?v=1775520696",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Gold",
+ "NCW4390-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Stripe",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4390-04"
+ },
+ {
+ "sku": "biscay-bay-black-walnut-wood-grain-wbs-39618",
+ "handle": "biscay-bay-black-walnut-wood-grain-wbs-39618",
+ "title": "Biscay Bay Black Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39618-sample-biscay-bay-black-wood-grain-hollywood-wallcoverings.jpg?v=1775705222",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Hollywood Wallcoverings",
+ "Latte",
+ "Living Room",
+ "Minimalist",
+ "Mink",
+ "Mushroom",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-black-walnut-wood-grain-wbs-39618"
+ },
+ {
+ "sku": "versace-golden-floral-wallcovering-versace",
+ "handle": "versace-golden-floral-wallcovering-versace",
+ "title": "Versace Golden Floral Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/4f93e2069725e2240d20aba952f5b9a5.jpg?v=1773706406",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Gold",
+ "Golden Yellow",
+ "Goldenrod",
+ "Grandmillennial",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Mustard",
+ "Mustard Yellow",
+ "Paper",
+ "Paste the wall",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Golden Floral",
+ "Versace Golden Floral Wallcovering",
+ "Versace Home",
+ "Versace VI",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-golden-floral-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_alc-4820-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_alc-4820-jpg",
+ "title": "Alchemy - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/alc-4820.jpg?v=1762284406",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Alchemy",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_alc-4820-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2523",
+ "handle": "faux-leaf-squares-fls-2523",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2523-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711931",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Light Brown",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2523"
+ },
+ {
+ "sku": "dwwm-14366-william-morris-designer-wallcoverings-los-angeles",
+ "handle": "dwwm-14366-william-morris-designer-wallcoverings-los-angeles",
+ "title": "| William Morris",
+ "vendor": "William Morris",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fruit-morris-and-co--wallpaper-216819-image01_d48138bc-9e35-4dee-bc44-d6784a6e34d7.jpg?v=1741111392",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Edwardian",
+ "English Country",
+ "Hallway",
+ "Living Room",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "William Morris"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwwm-14366-william-morris-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127705",
+ "handle": "dwkk-127705",
+ "title": "Sandstone - Bronze By Clarke And Clarke | Clarke & Clarke Reflections |Geometric Texture Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0061_02_CAC_7caf371b-ea90-450d-8a12-07bad91d6a8c.jpg?v=1726037804",
+ "tags": [
+ "20.875In",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick",
+ "Brown",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Taupe",
+ "display_variant",
+ "Geometric",
+ "Hallway",
+ "Light Beige",
+ "Living Room",
+ "Non-Woven",
+ "Print",
+ "Rustic",
+ "Sandstone",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tile",
+ "Traditional",
+ "Transitional",
+ "United Kingdom",
+ "Vinyl",
+ "W0061/02.Cac.0",
+ "Wallcovering",
+ "Warm",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 182.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127705"
+ },
+ {
+ "sku": "dwkk-139787",
+ "handle": "dwkk-139787",
+ "title": "Antlers Paper - Teal Teal By Lee Jofa | Lodge Ii Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2017102_13_b88be058-e025-4e41-8d1f-1800dd9d929b.jpg?v=1753291297",
+ "tags": [
+ "27In",
+ "Animal/Insects",
+ "Antlers",
+ "Antlers Paper",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blue",
+ "Commercial",
+ "Cream",
+ "Deer",
+ "display_variant",
+ "Fauna",
+ "Lee Jofa",
+ "Lodge Ii Wallcovering",
+ "Luxury",
+ "P2017102.13.0",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Teal",
+ "United States",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139787"
+ },
+ {
+ "sku": "dwkk-129945",
+ "handle": "dwkk-129945",
+ "title": "W3964-9 Red | Kravet Design | Benson-Cobb Signature Wallcovering |Modern Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3964_9_8f77d2b2-ef09-467b-8dae-38bee624746a.jpg?v=1753321937",
+ "tags": [
+ "27In",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Benson-Cobb Signature Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Dusty Rose",
+ "Geometric",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Modern",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Red",
+ "Sophisticated",
+ "United States",
+ "W3964",
+ "W3964-9",
+ "W3964.9.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129945"
+ },
+ {
+ "sku": "word-walls-scr-8128",
+ "handle": "word-walls-scr-8128",
+ "title": "Word Walls",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a561dc29892a6b981c8ffb0b7927f65f.jpg?v=1572309108",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Gray",
+ "Light Blue",
+ "Luxury Screen Printed Wallpapers",
+ "Paper",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 263.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/word-walls-scr-8128"
+ },
+ {
+ "sku": "boothbay-harbor-sky-waterside-stripe-wallpaper-cca-83192",
+ "handle": "boothbay-harbor-sky-waterside-stripe-wallpaper-cca-83192",
+ "title": "Boothbay Harbor Sky Waterside Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5c5749ceaa3e98f63b6763fb21b3ba6.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boothbay-harbor-sky-waterside-stripe-wallpaper-cca-83192"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWY-53160-sample-clean.jpg?v=1774481847",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Umber",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53160"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66532",
+ "handle": "tigressa-bargea-wallpaper-xb3-66532",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5e59ebcf3da21804155556cfefc6ad15.jpg?v=1775129740",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Neutral",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66532"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsg9-5395-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsg9-5395-jpg",
+ "title": "Glasgow - Brandy | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5395.jpg?v=1762297027",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Black",
+ "Brandy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Glasgow",
+ "Gray",
+ "Red",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5395-jpg"
+ },
+ {
+ "sku": "dwss-72538",
+ "handle": "dwss-72538",
+ "title": "Gaston blue Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/549-76_image1_911a0db4-191c-4f2d-a772-6b6c3b101725.jpg?v=1646104587",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gaston",
+ "Gaston blue Sample",
+ "Geometric",
+ "Gray",
+ "Midnightblue",
+ "P549-76",
+ "Paper",
+ "Quatrefoil",
+ "Sandberg",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72538"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5045-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5045-jpg",
+ "title": "Dasma - Bronze | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5045.jpg?v=1762291910",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Gold",
+ "Grasscloth",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5045-jpg"
+ },
+ {
+ "sku": "dwss-72512",
+ "handle": "dwss-72512",
+ "title": "Gabriel green Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/491-08_image1_4d6a9c61-da13-4f64-a17e-caf914a7fec4.jpg?v=1646104505",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gabriel",
+ "Gabriel green Sample",
+ "Geometric",
+ "Lattice",
+ "Light Green",
+ "P491-08",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72512"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2741",
+ "handle": "faux-leaf-squares-fls-2741",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2741-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711972",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2741"
+ },
+ {
+ "sku": "yves-goriga-durable-vinyl-dur-72457",
+ "handle": "yves-goriga-durable-vinyl-dur-72457",
+ "title": "Yves Goriga Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72457-sample-clean.jpg?v=1774485645",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Living Room",
+ "Off-white",
+ "Ogee",
+ "Organic Modern",
+ "Quatrefoil",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yves-goriga-durable-vinyl-dur-72457"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9487",
+ "handle": "chinese-fret-walls-cfw-9487",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9487-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708056",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Tan",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9487"
+ },
+ {
+ "sku": "laurel-hills-panels-hlw-73142",
+ "handle": "laurel-hills-panels-hlw-73142",
+ "title": "Laurel Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73142-sample-clean.jpg?v=1774483704",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Grey",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Japonisme",
+ "Laurel Hills",
+ "Light Grey",
+ "Living Room",
+ "Mural",
+ "Natural",
+ "Naturally Glamorous",
+ "Non-woven",
+ "Off-white",
+ "Paper",
+ "Scenic",
+ "Serene",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 130.83,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/laurel-hills-panels-hlw-73142"
+ },
+ {
+ "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52656",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52656",
+ "title": "Cottondale Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52656-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709287",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Geometric",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52656"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72168",
+ "handle": "st-silken-durable-vinyl-dur-72168",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72168-sample-clean.jpg?v=1774484641",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72168"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72047",
+ "handle": "saint-helene-durable-vinyl-dur-72047",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72047-sample-clean.jpg?v=1774484125",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72047"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar9503-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar9503-jpg",
+ "title": "Armor Paint - AR9503 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar9502.jpg?v=1733873905",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Blue",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9503-jpg"
+ },
+ {
+ "sku": "dwss-72670",
+ "handle": "dwss-72670",
+ "title": "Bianca indigo blue sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/802-56_image1_7cf612f5-33f4-49c7-8561-2bc2968b9dbb.jpg?v=1646105017",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bianca",
+ "Bianca indigo blue sample",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "INDIGO BLUE",
+ "P802-56",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Scandinavian",
+ "Steelblue",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72670"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73012",
+ "handle": "benedict-canyon-sisal-hlw-73012",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73012-sample-clean.jpg?v=1774483022",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73012"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66592",
+ "handle": "patoa-librato-wallpaper-xb7-66592",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a7fe3e6b05bc0315636083c8099c3093.jpg?v=1775130702",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "cellulose",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Ribbed",
+ "Solid/Textural",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66592"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar9506-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar9506-jpg",
+ "title": "Armor Paint - AR9506 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar9505.jpg?v=1733873899",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9506-jpg"
+ },
+ {
+ "sku": "conrad-beige-map-wallpaper-cca-82942",
+ "handle": "conrad-beige-map-wallpaper-cca-82942",
+ "title": "Conrad Beige Map Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/28f7e70326130465d57d47220067ca6b.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Novelty",
+ "Paper",
+ "Prepasted",
+ "Scenic",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/conrad-beige-map-wallpaper-cca-82942"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47544",
+ "handle": "corsham-acoustical-wallcovering-xku-47544",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0fc17a2523d2521629d770647eec5d75.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Polyester",
+ "Serene",
+ "Silver Gray",
+ "Solid",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47544"
+ },
+ {
+ "sku": "susie-pink-chevron-wallpaper-cca-83036",
+ "handle": "susie-pink-chevron-wallpaper-cca-83036",
+ "title": "Susie Pink Chevron Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/863936ee67c10001ceab04198d5994b6.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Chevron",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Kids",
+ "LA Walls",
+ "Light Green",
+ "Modern",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susie-pink-chevron-wallpaper-cca-83036"
+ },
+ {
+ "sku": "vanessa-black-henna-brocade-wallpaper-wallpaper-cca-82834",
+ "handle": "vanessa-black-henna-brocade-wallpaper-wallpaper-cca-82834",
+ "title": "Vanessa Black Henna Brocade Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/498264629730573e1f01c2fb5642e3a4.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gray",
+ "Kids",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanessa-black-henna-brocade-wallpaper-wallpaper-cca-82834"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5051-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5051-jpg",
+ "title": "Dasma - Sapphire | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5051.jpg?v=1762292130",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Gray",
+ "Light Blue",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5051-jpg"
+ },
+ {
+ "sku": "whisper-blackberry-scroll-texture-wallpaper-wallpaper-cca-82891",
+ "handle": "whisper-blackberry-scroll-texture-wallpaper-wallpaper-cca-82891",
+ "title": "Whisper Blackberry Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f114b9621f5a99862ac8589a6ababf1e.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Rose",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-blackberry-scroll-texture-wallpaper-wallpaper-cca-82891"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53532",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53532",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-cherry.jpg?v=1777480857",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burlywood",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Wood Grain",
+ "Farmhouse",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Russet",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53532"
+ },
+ {
+ "sku": "eur-80366-ncw4353-designer-wallcoverings-los-angeles",
+ "handle": "eur-80366-ncw4353-designer-wallcoverings-los-angeles",
+ "title": "Colbert 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505529907.jpg?v=1775523633",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Colbert",
+ "Commercial",
+ "Contemporary",
+ "Dusty Rose",
+ "Leaf",
+ "LES INDIENNES",
+ "Light Blue",
+ "Living Room",
+ "NCW4353",
+ "NCW4353-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off White",
+ "Organic Modern",
+ "Pale Blue",
+ "Paper",
+ "Pink",
+ "Scandinavian",
+ "Serene",
+ "Taupe",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80366-ncw4353-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10366-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10366-jpg",
+ "title": "Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10366.jpg?v=1762285784",
+ "tags": [
+ "Architectural",
+ "Armor",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10366-jpg"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2622",
+ "handle": "pleated-perfect-paradise-ppp-2622",
+ "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2622-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729166",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2622"
+ },
+ {
+ "sku": "seine-marne-durable-vinyl-dur-72133",
+ "handle": "seine-marne-durable-vinyl-dur-72133",
+ "title": "Raked Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72133-sample-clean.jpg?v=1774484510",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72133"
+ },
+ {
+ "sku": "shin-moss-golden-scroll-texture-wallpaper-cca-83266",
+ "handle": "shin-moss-golden-scroll-texture-wallpaper-cca-83266",
+ "title": "Shin Moss Golden Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7bff8e81ca009191e5910dcd922ef6cd.jpg?v=1572309982",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Green",
+ "LA Walls",
+ "Light Beige",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Shin Moss Golden Scroll Texture Wallcovering",
+ "Strippable",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shin-moss-golden-scroll-texture-wallpaper-cca-83266"
+ },
+ {
+ "sku": "sannohe-budget-vinyl-xcf-34327",
+ "handle": "sannohe-budget-vinyl-xcf-34327",
+ "title": "Sannohe Budget Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fa7ae485c5a9fa3a8b6d3299b925ecb7_5961805e-5d13-4029-8946-9bbaa1da6c8e.jpg?v=1572310416",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Light Brown",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "Type I Durable Commercial and Residential - Cleanable - Affordable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sannohe-budget-vinyl-xcf-34327"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58135",
+ "handle": "jutely-vinyl-dwx-58135",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58135-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720432",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58135"
+ },
+ {
+ "sku": "lafayette-modern-embossed-durable-walls-xwf-52258",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52258",
+ "title": "Lafayette Modern Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52258-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721105",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Pale Grey",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52258"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93013",
+ "handle": "lucy-large-crocodile-croca-93013",
+ "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93013-sample-lucy-large-crocodile-hollywood-wallcoverings.jpg?v=1775723175",
+ "tags": [
+ "Animal Print",
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Brick",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Dining Room",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Leather",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Luxe",
+ "Moss",
+ "Paper Backed Vinyl",
+ "Silver",
+ "Sophisticated",
+ "Taupe Grey",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 32.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93013"
+ },
+ {
+ "sku": "eden-commercial-wallcovering-eden-edn-006",
+ "handle": "eden-commercial-wallcovering-eden-edn-006",
+ "title": "Eden Commercial Wallcovering",
+ "vendor": "Newmor Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/NEWMOR_09c83e51-151d-430e-97f7-161fadf37942.jpg?v=1573940019",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Newmor",
+ "Newmor Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wallpapers",
+ "Walls",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eden-commercial-wallcovering-eden-edn-006"
+ },
+ {
+ "sku": "eur-80171-ncw4156-designer-wallcoverings-los-angeles",
+ "handle": "eur-80171-ncw4156-designer-wallcoverings-los-angeles",
+ "title": "Montrose 06 - Antique Gold Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498288179.jpg?v=1775522555",
+ "tags": [
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "Gold",
+ "Gray",
+ "Living Room",
+ "Luxurious",
+ "Montrose",
+ "NCW4156",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Regencycore",
+ "ROSSLYN",
+ "Scroll",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80171-ncw4156-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwc-1001601",
+ "handle": "dwc-1001601",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693307555891.jpg?v=1775521039",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "Green",
+ "NCW4304-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001601"
+ },
+ {
+ "sku": "shin-bronze-golden-scroll-texture-wallpaper-cca-83268",
+ "handle": "shin-bronze-golden-scroll-texture-wallpaper-cca-83268",
+ "title": "Shin Bronze Golden Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f872ab377df1530894b0ec27bde1053b.jpg?v=1572309982",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Shin Bronze Golden Scroll Texture Wallcovering",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shin-bronze-golden-scroll-texture-wallpaper-cca-83268"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66835",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66835",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d4a1c1104271f8d48a0a59e578dc7bed.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Light Beige",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66835"
+ },
+ {
+ "sku": "dwss-72628",
+ "handle": "dwss-72628",
+ "title": "Kristina white Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/700-01_image1_749be621-1ad5-43fa-a8d6-67fdb7c0985b.jpg?v=1646104878",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Kristina",
+ "Kristina white Sample",
+ "Non-Woven",
+ "Off-White",
+ "P700-01",
+ "Pattern",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72628"
+ },
+ {
+ "sku": "monterey-coast-durable-walls-xwp-52644",
+ "handle": "monterey-coast-durable-walls-xwp-52644",
+ "title": "Monterey Coast Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52644-sample-monterey-coast-durable-hollywood-wallcoverings.jpg?v=1775726348",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/monterey-coast-durable-walls-xwp-52644"
+ },
+ {
+ "sku": "kenley-orange-polka-dots-wallpaper-wallpaper-cca-82874",
+ "handle": "kenley-orange-polka-dots-wallpaper-wallpaper-cca-82874",
+ "title": "Kenley Orange Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab2bdd929d8b0e6e6a2c70d27070dc58.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Orange",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-orange-polka-dots-wallpaper-wallpaper-cca-82874"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72262",
+ "handle": "essone-durable-vinyl-dur-72262",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72262-sample-clean.jpg?v=1774484915",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72262"
+ },
+ {
+ "sku": "aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248",
+ "handle": "aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248",
+ "title": "Aubrey Milk Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3d59d8eeae52c723c75a813813803f8f.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Medallion",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44040",
+ "handle": "carved-squares-wallcovering-xcs-44040",
+ "title": "Carved Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44040-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707200",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pale Gray",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44040"
+ },
+ {
+ "sku": "casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109",
+ "handle": "casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109",
+ "title": "Casco Bay Brown Ombre Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7d6dfb605161113e366c36293147740c.jpg?v=1572309969",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Casco Bay Brown Ombre Pinstripe Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Brown",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66829",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66829",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1d5adc7017f7a0b5711d14629e9765c5.jpg?v=1572309567",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Industrial",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66829"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47094",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47094",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47094-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699515",
+ "tags": [
+ "Architectural",
+ "Ashbourne Type 2 Vinyl Wallcovering",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Estimated Type: Non-woven",
+ "Forest Green",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Regencycore",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47094"
+ },
+ {
+ "sku": "asha-pearl-lotus-damask-wallpaper-cca-83232",
+ "handle": "asha-pearl-lotus-damask-wallpaper-cca-83232",
+ "title": "Asha Pearl Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5b185b350d35f7062ccda68d532c62c8.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pearl-lotus-damask-wallpaper-cca-83232"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53415",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53415",
+ "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-temple.jpg?v=1777480836",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Sophisticated",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53415"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52316",
+ "handle": "marketfield-faux-durable-walls-xwh-52316",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-portobello.jpg?v=1777480455",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52316"
+ },
+ {
+ "sku": "ncw4391-01",
+ "handle": "ncw4391-01",
+ "title": "Ashdown Cloisters Ochre/Tobacco - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265492019.jpg?v=1775520710",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gold",
+ "NCW4391-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4391-01"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72295",
+ "handle": "la-voltere-durable-vinyl-dur-72295",
+ "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72295-sample-clean.jpg?v=1774485081",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Forest Green",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Hunter Green",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72295"
+ },
+ {
+ "sku": "capri-aqua-floral-scroll-wallpaper-cca-83047",
+ "handle": "capri-aqua-floral-scroll-wallpaper-cca-83047",
+ "title": "Capri Aqua Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8e8e88310c32e2c9e0b6969b214e0df1.jpg?v=1572309967",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-aqua-floral-scroll-wallpaper-cca-83047"
+ },
+ {
+ "sku": "medusa-circle-silver-gold-pink-wallcovering-versace",
+ "handle": "medusa-circle-silver-gold-pink-wallcovering-versace",
+ "title": "Medusa Circle Silver, Gold, Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/593e809cff01210ceeddec366f315919.jpg?v=1773706334",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Antique Gold",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Italian",
+ "Light Pink",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medallion",
+ "Medusa Circle",
+ "Medusa Circle Silver",
+ "Paper",
+ "Paste the wall",
+ "Pink",
+ "Pink Wallcovering",
+ "Silver",
+ "Silver Grey",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-circle-silver-gold-pink-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5039-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5039-jpg",
+ "title": "Dasma - Ivory | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5039.jpg?v=1762291680",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Light Beige",
+ "Off-white",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5039-jpg"
+ },
+ {
+ "sku": "zoe-ice-coco-damask-wallpaper-cca-83260",
+ "handle": "zoe-ice-coco-damask-wallpaper-cca-83260",
+ "title": "Zoe Ice Coco Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4e81534860a2b19d82fd455a76ab09dd.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Embossed",
+ "Faux",
+ "Faux Suede",
+ "LA Walls",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Suede",
+ "Traditional",
+ "Vinyl",
+ "VINYL/FAUX LEATHER",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-ice-coco-damask-wallpaper-cca-83260"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47658",
+ "handle": "fairford-vinyl-wallcovering-xlb-47658",
+ "title": "Fairford Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47658-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711628",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47658"
+ },
+ {
+ "sku": "dwss-72686",
+ "handle": "dwss-72686",
+ "title": "Fredrik cream Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/808-11_image1_a4a14d59-9ca7-4f7f-80b4-dc5ed2591f81.jpg?v=1646105066",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fredrik",
+ "Fredrik cream Sample",
+ "Geometric",
+ "Lattice",
+ "Off-white",
+ "P808-11",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72686"
+ },
+ {
+ "sku": "surry-celery-soft-stripe-wallpaper-cca-83214",
+ "handle": "surry-celery-soft-stripe-wallpaper-cca-83214",
+ "title": "Surry Celery Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16c950dd659a91663bbe45335181e826.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/surry-celery-soft-stripe-wallpaper-cca-83214"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10251-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10251-jpg",
+ "title": "SM10251 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10250.jpg?v=1733872459",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Smoke",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10251-jpg"
+ },
+ {
+ "sku": "oakland-beige-grasscloth-stripe-wallpaper-cca-83161",
+ "handle": "oakland-beige-grasscloth-stripe-wallpaper-cca-83161",
+ "title": "Oakland Beige Grasscloth Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d468dff860e2fd715a6485f49b3061e9.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "LA Walls",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Oakland Beige Grasscloth Stripe Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oakland-beige-grasscloth-stripe-wallpaper-cca-83161"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72420",
+ "handle": "rivo-dulce-durable-vinyl-dur-72420",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72420-sample-clean.jpg?v=1774485475",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Rivo Dulce Durable Vinyl",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72420"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wvf-100-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wvf-100-jpg",
+ "title": "Wood Veneer - Paduak Qtd | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wvf-100f.jpg?v=1762312019",
+ "tags": [
+ "100% Wood Veneer",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Natural",
+ "Paduak Qtd",
+ "Red",
+ "Stripe",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wood",
+ "Wood Veneer"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wvf-100-jpg"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72174",
+ "handle": "st-silken-durable-vinyl-dur-72174",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72174-sample-clean.jpg?v=1774484670",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72174"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58161",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58161",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58161-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725591",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58161"
+ },
+ {
+ "sku": "zoe-mountain-coco-texture-wallpaper-cca-83294",
+ "handle": "zoe-mountain-coco-texture-wallpaper-cca-83294",
+ "title": "Zoe Mountain Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/997a2b24a3015b0c8d30bac3b84ad073.jpg?v=1572309984",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Light Brown",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-mountain-coco-texture-wallpaper-cca-83294"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47155",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47155",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47155-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775701152",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47155"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2745",
+ "handle": "faux-leaf-squares-fls-2745",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2745-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711985",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2745"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73168",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73168",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73168-sample-clean.jpg?v=1774483852",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Natural",
+ "Naturally Glamorous",
+ "Paper",
+ "Scandinavian",
+ "Serene",
+ "Slate Blue",
+ "stripe",
+ "Teal",
+ "textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73168"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10373-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10373-jpg",
+ "title": "Armor Paint - AR10373 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10372.jpg?v=1733873849",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10373-jpg"
+ },
+ {
+ "sku": "asha-sand-lotus-damask-wallpaper-cca-83231",
+ "handle": "asha-sand-lotus-damask-wallpaper-cca-83231",
+ "title": "Asha Sand Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1fb5ebf4bec272e516bc741e4480d25b.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-sand-lotus-damask-wallpaper-cca-83231"
+ },
+ {
+ "sku": "kylie-aqua-cabin-stripe-wallpaper-cca-83040",
+ "handle": "kylie-aqua-cabin-stripe-wallpaper-cca-83040",
+ "title": "Kylie Aqua Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3d3ab6dfc50297b502fa1b4520903da1.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kylie-aqua-cabin-stripe-wallpaper-cca-83040"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9485-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9485-jpg",
+ "title": "Lune - Saffron | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9485.jpg?v=1762299121",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Lattice",
+ "Lune",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9485-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_doxm-550-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_doxm-550-jpg",
+ "title": "Onyx Mexicano - Rose Quartz | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/doxm-550.jpg?v=1762291264",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Light Pink",
+ "Onyx Mexicano",
+ "Paper",
+ "Rose Quartz",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_doxm-550-jpg"
+ },
+ {
+ "sku": "haute-sena-durable-vinyl-dur-72320",
+ "handle": "haute-sena-durable-vinyl-dur-72320",
+ "title": "Haute Sena Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72320-sample-clean.jpg?v=1774485170",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Non-woven",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haute-sena-durable-vinyl-dur-72320"
+ },
+ {
+ "sku": "avea-henna-tile-wallpaper-trf-56812",
+ "handle": "avea-henna-tile-wallpaper-trf-56812",
+ "title": "Avea Henna Tile | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/21aa296753a02a31ff7ade10a3094989.jpg?v=1750789774",
+ "tags": [
+ "Architectural",
+ "Avea Henna Tile",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "diagonal",
+ "diamond",
+ "Discontinued",
+ "Jeffrey Stevens",
+ "Lace",
+ "lacey",
+ "Medallion",
+ "medium scale",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "print",
+ "Series: York",
+ "silhouette",
+ "Soft White",
+ "Textured",
+ "tile",
+ "Traditional",
+ "Transitional",
+ "USA",
+ "Wallcovering",
+ "Warm Taupe",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/avea-henna-tile-wallpaper-trf-56812"
+ },
+ {
+ "sku": "ncw4306-04",
+ "handle": "ncw4306-04",
+ "title": "Les Rêves Belle Île Aqua/Beige - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262837811.jpg?v=1775520374",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Light Blue",
+ "NCW4306-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4306-04"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9408-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9408-jpg",
+ "title": "ST9408 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9407.jpg?v=1733872273",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9408-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3368_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3368_8-jpg",
+ "title": "Lyra - Smoke | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3368_8.jpg?v=1762299544",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Smoke",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3368_8-jpg"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53768",
+ "handle": "juno-faux-silk-durable-walls-xje-53768",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53768-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720159",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53768"
+ },
+ {
+ "sku": "dwss-72522",
+ "handle": "dwss-72522",
+ "title": "Magnus yellow Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/516-02_image1_b63bc77c-4a29-418b-ac1f-25ccfc0543c6.jpg?v=1646104543",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Magnus",
+ "Magnus yellow Sample",
+ "P516-02",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Stripe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72522"
+ },
+ {
+ "sku": "dwkk-121661",
+ "handle": "dwkk-121661",
+ "title": "Miguel - Verde Green By Gaston Y Daniela | Lorenzo Castillo Hispania Wp |Modern Geometric Wallcovering Print",
+ "vendor": "Gaston Y Daniela",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GDW5253_001_a829555f-6643-4566-a5a5-bcdc48dbe9ac.jpg?v=1753293808",
+ "tags": [
+ "20.8In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Gaston Y Daniela",
+ "Gdw5253.001.0",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Lattice",
+ "Living Room",
+ "Lorenzo Castillo Hispania Wp",
+ "Miguel",
+ "Modern",
+ "Off-white",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Sage Green",
+ "Serene",
+ "Spain",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "Verde",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-121661"
+ },
+ {
+ "sku": "khloe-orange-girly-floral-scroll-wallpaper-wallpaper-cca-82830",
+ "handle": "khloe-orange-girly-floral-scroll-wallpaper-wallpaper-cca-82830",
+ "title": "Khloe Orange Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/541d7dbba653f0e525b93b1e54daff6f.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/khloe-orange-girly-floral-scroll-wallpaper-wallpaper-cca-82830"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72038",
+ "handle": "saint-helene-durable-vinyl-dur-72038",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72038-sample-clean.jpg?v=1774484073",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Green",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72038"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52781",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52781",
+ "title": "Steuben Embossed Vertical Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52781-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734807",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver Grey",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52781"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-401",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-401",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/11fd1b78c5d44d6cb08b7c15c2791c4f_674c2d43-94ac-4bfc-ba17-33130488b97c.jpg?v=1745458354",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-401"
+ },
+ {
+ "sku": "oakland-sand-grasscloth-stripe-wallpaper-cca-83163",
+ "handle": "oakland-sand-grasscloth-stripe-wallpaper-cca-83163",
+ "title": "Oakland Sand Grasscloth Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/72978459b7f1fc7aef90d9ec381b1030.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "LA Walls",
+ "Light Brown",
+ "Natural",
+ "Natural Wallcovering",
+ "Oakland Sand Grasscloth Stripe Wallcovering",
+ "Prepasted",
+ "Sand",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oakland-sand-grasscloth-stripe-wallpaper-cca-83163"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9439-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9439-jpg",
+ "title": "Maya - Fatigue | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9439.jpg?v=1762302118",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Fatigue",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9439-jpg"
+ },
+ {
+ "sku": "ncw4308-02",
+ "handle": "ncw4308-02",
+ "title": "Les Rêves Portavo Grey/Ivory - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263132723.jpg?v=1775520419",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gray",
+ "Metallic",
+ "NCW4308-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4308-02"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52920",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52920",
+ "title": "St Joseph Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52920-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734495",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Navy",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52920"
+ },
+ {
+ "sku": "floating-fibers-dwx-58188",
+ "handle": "floating-fibers-dwx-58188",
+ "title": "Floating Fibers | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58188-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714172",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Embossed Texture",
+ "Estimated Type: Non-woven",
+ "Fiber",
+ "Gold",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Brown",
+ "Living Room",
+ "Luxe",
+ "Minimalist",
+ "Natural Look",
+ "Neoclassical",
+ "Neutral",
+ "Organic",
+ "Residential",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Subtle",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58188"
+ },
+ {
+ "sku": "gabriella-yellow-ogge-busy-toss-wallpaper-wallpaper-cca-82867",
+ "handle": "gabriella-yellow-ogge-busy-toss-wallpaper-wallpaper-cca-82867",
+ "title": "Gabriella Yellow Ogge Busy Toss Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8f0039b5e45f884fb113853ca8229087.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Embossed",
+ "LA Walls",
+ "Lace",
+ "Leopard",
+ "Ogee",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gabriella-yellow-ogge-busy-toss-wallpaper-wallpaper-cca-82867"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58051",
+ "handle": "sunset-stone-vinyl-dwx-58051",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58051-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735149",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Ecru",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Living Room",
+ "Natural Look",
+ "Rustic",
+ "Sand",
+ "Stone",
+ "Stucco",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58051"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47095",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47095",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47095-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699543",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Estimated Type: Textured",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47095"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48238",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48238",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48238-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731290",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rochester Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48238"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53474",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53474",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWT-53474-sample-clean.jpg?v=1774482107",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53474"
+ },
+ {
+ "sku": "jonesport-pink-cabin-stripe-wallpaper-cca-83184",
+ "handle": "jonesport-pink-cabin-stripe-wallpaper-cca-83184",
+ "title": "Jonesport Pink Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8270cc5a5f79cdff211fccac035db35e.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Lightblue",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-pink-cabin-stripe-wallpaper-cca-83184"
+ },
+ {
+ "sku": "beckett-taupe-scroll-texture-wallpaper-cca-82959",
+ "handle": "beckett-taupe-scroll-texture-wallpaper-cca-82959",
+ "title": "Beckett Taupe Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e90d532412876e78bd84efaed3840a96.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/beckett-taupe-scroll-texture-wallpaper-cca-82959"
+ },
+ {
+ "sku": "wells-lavender-candy-stripe-wallpaper-cca-83220",
+ "handle": "wells-lavender-candy-stripe-wallpaper-cca-83220",
+ "title": "Wells Lavender Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70aa47e73f89a3ce227462a124e5eee6.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Lavender",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-lavender-candy-stripe-wallpaper-cca-83220"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5038-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5038-jpg",
+ "title": "Dasma - Buff | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5038.jpg?v=1762291641",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Cream",
+ "Dasma",
+ "Grasscloth",
+ "Light Brown",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5038-jpg"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73082",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73082",
+ "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73082-sample-clean.jpg?v=1774483394",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Estimated Type: Wood Grain",
+ "Faux Wood",
+ "Floral",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Lodge",
+ "Natural",
+ "Naturally Glamorous",
+ "Non-Woven",
+ "Red",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73082"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48454",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48454",
+ "title": "Sudbury Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqe-48454-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735083",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Slate Gray",
+ "Sophisticated",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48454"
+ },
+ {
+ "sku": "dwkk-129708",
+ "handle": "dwkk-129708",
+ "title": "W3915-5 Blue | Kravet Design | Ronald Redding Traveler | Botanical & Floral Animal/Insects Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3915_5_778f4c25-553e-4d87-8e04-c43cf7e410af.jpg?v=1753322433",
+ "tags": [
+ "27In",
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Brown",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Denim Blue",
+ "Dining Room",
+ "display_variant",
+ "Fauna",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Leaf",
+ "Leopard",
+ "Living Room",
+ "Monkey",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Olive Green",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Ronald Redding Traveler",
+ "Sage Green",
+ "Snake",
+ "Tan",
+ "Traditional",
+ "Tropical",
+ "Tropical Leaf",
+ "United States",
+ "W3915-5",
+ "W3915.5.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129708"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9510-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9510-jpg",
+ "title": "SM9510 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9509.jpg?v=1733872509",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9510-jpg"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73160",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73160",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73160-sample-clean.jpg?v=1774483806",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Whittier Way"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73160"
+ },
+ {
+ "sku": "casco-bay-plum-ombre-pinstripe-wallpaper-cca-83106",
+ "handle": "casco-bay-plum-ombre-pinstripe-wallpaper-cca-83106",
+ "title": "Casco Bay Plum Ombre Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2cbb5266c5310227eca4528d10ad6c51.jpg?v=1572309969",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Casco Bay Plum Ombre Pinstripe Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Plum",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/casco-bay-plum-ombre-pinstripe-wallpaper-cca-83106"
+ },
+ {
+ "sku": "provence-durable-vinyl-dur-72036",
+ "handle": "provence-durable-vinyl-dur-72036",
+ "title": "Provence Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72036-sample-clean.jpg?v=1774484060",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Moody",
+ "Office",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/provence-durable-vinyl-dur-72036"
+ },
+ {
+ "sku": "dwss-72603",
+ "handle": "dwss-72603",
+ "title": "Sandra powder white Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/651-11_image1_c8ed4526-d6df-4dd0-85a9-3cf1fe033123.jpg?v=1646104794",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Gray-blue",
+ "Off-white",
+ "P651-11",
+ "Pale Pink",
+ "Paper",
+ "Pattern",
+ "POWDER WHITE",
+ "Sandberg",
+ "Sandra",
+ "Sandra powder white Sample",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72603"
+ },
+ {
+ "sku": "eloise-ivory-damask-wallpaper-cca-82997",
+ "handle": "eloise-ivory-damask-wallpaper-cca-82997",
+ "title": "Eloise Ivory Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e37cd31df4b1972029fb0743c9f84f16.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Ivory",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "String",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eloise-ivory-damask-wallpaper-cca-82997"
+ },
+ {
+ "sku": "cape-elizabeth-beige-lookout-stripe-wallpaper-cca-83194",
+ "handle": "cape-elizabeth-beige-lookout-stripe-wallpaper-cca-83194",
+ "title": "Cape Elizabeth Beige Lookout Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab5accd077b72c4822e381eee0118029.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cape-elizabeth-beige-lookout-stripe-wallpaper-cca-83194"
+ },
+ {
+ "sku": "dwkk-115503",
+ "handle": "dwkk-115503",
+ "title": "Timber - White | Kravet Couture | Andrew Martin Engineer | Animal/Insects Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10014_116_8547f8c4-6d38-4e7b-ae49-4a4827e55689.jpg?v=1753123183",
+ "tags": [
+ "26.5In",
+ "AI-Analyzed-v2",
+ "Amw10014.116.0",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal Farmhouse",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Farmhouse",
+ "Gray",
+ "Hallway",
+ "India",
+ "Kravet",
+ "Kravet Couture",
+ "Light Taupe",
+ "Minimalist",
+ "Oatmeal",
+ "Organic",
+ "Paper - 100%",
+ "Print",
+ "Rustic",
+ "Scandinavian",
+ "Silver Gray",
+ "Texture",
+ "Textured",
+ "Timber",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-115503"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52086",
+ "handle": "canal-damask-durable-vinyl-xwa-52086",
+ "title": "Canal Damask Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-52086-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707079",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Blue",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Damask",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Blue",
+ "Living Room",
+ "Luxe",
+ "Medium Blue",
+ "Navy",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52086"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52326",
+ "handle": "marketfield-faux-durable-walls-xwh-52326",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-hawthorn.jpg?v=1777480469",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52326"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53058",
+ "handle": "boca-faux-finish-durable-walls-xww-53058",
+ "title": "Boca Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hanami-rattan_a3734e54-d04e-436f-ac4b-ef23d270f559.jpg?v=1777480912",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Lemon",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Slate Blue",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53058"
+ },
+ {
+ "sku": "asha-gold-lotus-texture-wallpaper-cca-83276",
+ "handle": "asha-gold-lotus-texture-wallpaper-cca-83276",
+ "title": "Asha Gold Lotus Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/368062560b374babb2cd938e32189cfd.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Glitter",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-gold-lotus-texture-wallpaper-cca-83276"
+ },
+ {
+ "sku": "eur-80348-ncw4350-designer-wallcoverings-los-angeles",
+ "handle": "eur-80348-ncw4350-designer-wallcoverings-los-angeles",
+ "title": "Les Indiennes Paisley Damask 05 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505038387.jpg?v=1775523537",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Fabric",
+ "Grandmillennial",
+ "LES INDIENNES",
+ "Les Indiennes Paisley Damask",
+ "Light Blue",
+ "Living Room",
+ "Navy",
+ "NCW4350",
+ "NCW4350-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Paper",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80348-ncw4350-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-215_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-215_8-jpg",
+ "title": "WonderWood® - Dark American Walnut Fc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-215f.jpg?v=1762312575",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark American Walnut Fc",
+ "Mid-Century Modern",
+ "Natural",
+ "Reconstituted",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-215_8-jpg"
+ },
+ {
+ "sku": "dwkk-128422",
+ "handle": "dwkk-128422",
+ "title": "W3515-1 White | Kravet Design |Modern Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3515_1_09f0f59f-8558-4e3a-a99f-58eb2361aade.jpg?v=1753292758",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Cellulose - 50%;Other - 30%;Polyester - 20%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Living Room",
+ "Modern",
+ "Non-Woven",
+ "Off-white",
+ "Ogee",
+ "Print",
+ "Serene",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "United Kingdom",
+ "Vinyl",
+ "W3515-1",
+ "W3515.1.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128422"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52107",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52107",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52107-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707093",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Linear",
+ "Living Room",
+ "Pale Beige",
+ "Pattern",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52107"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52096",
+ "handle": "canal-texture-durable-walls-xwd-52096",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-beige.jpg?v=1777480402",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52096"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66714",
+ "handle": "zebilini-wallpaper-xd6-66714",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d80f08c635cbeb17c313f572413127aa.jpg?v=1775134661",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gold",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66714"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47655",
+ "handle": "fairford-vinyl-wallcovering-xlb-47655",
+ "title": "Fairford Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47655-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711552",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47655"
+ },
+ {
+ "sku": "surry-grey-soft-stripe-wallpaper-cca-83216",
+ "handle": "surry-grey-soft-stripe-wallpaper-cca-83216",
+ "title": "Surry Grey Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6bb6af09fc9bfc028fde64fe1d105356.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/surry-grey-soft-stripe-wallpaper-cca-83216"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48235",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48235",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48235-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731208",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Brushstroke",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Rochester Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48235"
+ },
+ {
+ "sku": "amity-olive-bleeding-heart-texture-wallpaper-cca-83288",
+ "handle": "amity-olive-bleeding-heart-texture-wallpaper-cca-83288",
+ "title": "Amity Olive Bleeding Heart Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d03ef16a0a8102ecf8a9e74af2d334a8.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Lightgray",
+ "Pale Green",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-olive-bleeding-heart-texture-wallpaper-cca-83288"
+ },
+ {
+ "sku": "dwc-1001621",
+ "handle": "dwc-1001621",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693308964915.jpg?v=1775521172",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fretwork",
+ "Gray",
+ "NCW4308-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001621"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52355",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52355",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-glade.jpg?v=1777480520",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Brown",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52355"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53489",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53489",
+ "title": "Santa Rosa Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53489-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732868",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53489"
+ },
+ {
+ "sku": "versace-plain-metallic-pink-wallcovering-versace",
+ "handle": "versace-plain-metallic-pink-wallcovering-versace",
+ "title": "Versace Plain Metallic Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/47413ebeaa8c17791fd641dc54701b52.jpg?v=1773706481",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Light Beige",
+ "Light Pink",
+ "Living Room",
+ "Luxury",
+ "Pale Pink",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Metallic",
+ "Versace Plain Metallic Pink Wallcovering",
+ "Versace VI",
+ "Wallcovering",
+ "Walnut Brown"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-metallic-pink-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-574-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-574-jpg",
+ "title": "Metamorphosis - Cream | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-574.jpg?v=1762301022",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Cream",
+ "geometric",
+ "Metamorphosis",
+ "Olefin",
+ "Textile",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-574-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5072-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5072-jpg",
+ "title": "Ashlar - Henna | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5072.jpg?v=1762286650",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Henna",
+ "RAMPART®",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5072-jpg"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53290",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53290",
+ "title": "Daytona Faux Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53290-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710233",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53290"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_tgm-5983-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_tgm-5983-jpg",
+ "title": "Tangram - Ocean | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tgm-5983.jpg?v=1762311221",
+ "tags": [
+ "31% Polyester",
+ "69% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Ocean",
+ "Tangram",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_tgm-5983-jpg"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72039",
+ "handle": "saint-helene-durable-vinyl-dur-72039",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72039-sample-clean.jpg?v=1774484078",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72039"
+ },
+ {
+ "sku": "harpswell-celery-herringbone-awning-stripe-wallpaper-cca-83155",
+ "handle": "harpswell-celery-herringbone-awning-stripe-wallpaper-cca-83155",
+ "title": "Harpswell Celery Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3e23f57ba913a2a09d1a32719597cb06_b97df9f8-be34-4448-bc96-92a8b2ab2437.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Celery",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Herringbone",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-celery-herringbone-awning-stripe-wallpaper-cca-83155"
+ },
+ {
+ "sku": "tony-s-thick-embossed-vinyl-xtt-44472",
+ "handle": "tony-s-thick-embossed-vinyl-xtt-44472",
+ "title": "Tony's Thick Embossed Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xtt-44472-sample-tony-s-thick-embossed-vinyl-hollywood-wallcoverings.jpg?v=1775735340",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Tony's Thick Embossed Vinyl",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tony-s-thick-embossed-vinyl-xtt-44472"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52329",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52329",
+ "title": "Nassau Contemporary Emboosed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nest-white_egg.jpg?v=1777480475",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52329"
+ },
+ {
+ "sku": "calais-red-grain-stripe-wallpaper-cca-83190",
+ "handle": "calais-red-grain-stripe-wallpaper-cca-83190",
+ "title": "Calais Red Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3499948a7533a0b6d63733b39f272f51.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Farmhouse",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-red-grain-stripe-wallpaper-cca-83190"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47951",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47951",
+ "title": "Maidstone - Mist Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-mercury_c2e37df8-0dec-4cbd-bc93-88e86552a1a4.jpg?v=1777481365",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Stone Look",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47951"
+ },
+ {
+ "sku": "eur-80257-ncw4207-designer-wallcoverings-los-angeles",
+ "handle": "eur-80257-ncw4207-designer-wallcoverings-los-angeles",
+ "title": "Fontibre 04 - Soft Beige Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501302835.jpg?v=1775523003",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dark Brown",
+ "Dining Room",
+ "Fontibre",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Light Green",
+ "Living Room",
+ "NCW4207",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Olive Green",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80257-ncw4207-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "shin-pewter-golden-scroll-texture-wallpaper-cca-83270",
+ "handle": "shin-pewter-golden-scroll-texture-wallpaper-cca-83270",
+ "title": "Shin Pewter Golden Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2a72d3a43591660941b664c97043c410.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shin-pewter-golden-scroll-texture-wallpaper-cca-83270"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53412",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53412",
+ "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53412-sample-freeport-metallic-contemporary-durable-hollywood-wallcoverings.jpg?v=1775714301",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53412"
+ },
+ {
+ "sku": "monterey-coast-durable-walls-xwp-52645",
+ "handle": "monterey-coast-durable-walls-xwp-52645",
+ "title": "Monterey Coast Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52645-sample-monterey-coast-durable-hollywood-wallcoverings.jpg?v=1775726352",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Non-woven",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/monterey-coast-durable-walls-xwp-52645"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66515",
+ "handle": "cody-couture-wallpaper-xb2-66515",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/83211010141ece507343d15855fb2743.jpg?v=1775128355",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66515"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar9504-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar9504-jpg",
+ "title": "Armor Paint - AR9504 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar9503.jpg?v=1733873903",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar9504-jpg"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2884",
+ "handle": "peter-s-plastered-walls-ppw-2884",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2884-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729095",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Mediterranean",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2884"
+ },
+ {
+ "sku": "captiva-lavender-floral-toss-wallpaper-cca-83044",
+ "handle": "captiva-lavender-floral-toss-wallpaper-cca-83044",
+ "title": "Captiva Lavender Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5756d82e53931dcb55a13933ddc90026.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-lavender-floral-toss-wallpaper-cca-83044"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2750",
+ "handle": "faux-leaf-squares-fls-2750",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2750-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711998",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Rosy Brown",
+ "Rosy Brown",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2750"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66476",
+ "handle": "mr-diorio-wallpaper-xa8-66476",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d1f9fc6698570f62050ddd6fa6425f41.jpg?v=1775125754",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hotel Lobby",
+ "Light Brown",
+ "Living Room",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66476"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72418",
+ "handle": "rivo-dulce-durable-vinyl-dur-72418",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72418-sample-clean.jpg?v=1774485465",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Rivo Dulce Durable Vinyl",
+ "Serene",
+ "Silver Gray",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72418"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47134",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47134",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47134-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700599",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47134"
+ },
+ {
+ "sku": "eur-80229-ncw4202-designer-wallcoverings-los-angeles",
+ "handle": "eur-80229-ncw4202-designer-wallcoverings-los-angeles",
+ "title": "Estella 06 - Dusty Rose Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500450867.jpg?v=1775522858",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Estella",
+ "Floral",
+ "FONTIBRE",
+ "Hallway",
+ "Living Room",
+ "NCW4202",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Pale Pink",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Taupe",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80229-ncw4202-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80378-ncw4355-designer-wallcoverings-los-angeles",
+ "handle": "eur-80378-ncw4355-designer-wallcoverings-los-angeles",
+ "title": "Arles 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505955891.jpg?v=1775523704",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Arles",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Grey",
+ "LES INDIENNES",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "NCW4355",
+ "NCW4355-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80378-ncw4355-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80130-ncw4126-designer-wallcoverings-los-angeles",
+ "handle": "eur-80130-ncw4126-designer-wallcoverings-los-angeles",
+ "title": "Huntly 01 - Pale Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496780851.jpg?v=1775522297",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Huntly",
+ "Lattice",
+ "Living Room",
+ "NCW4126",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Grey",
+ "Paper",
+ "Regencycore",
+ "Serene",
+ "Silver Grey",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80130-ncw4126-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47309",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47309",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47309-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704322",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47309"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3370_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3370_8-jpg",
+ "title": "Lyra - Ecru | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3370_8.jpg?v=1762299616",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Light Brown",
+ "Lyra",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3370_8-jpg"
+ },
+ {
+ "sku": "ncw4391-04",
+ "handle": "ncw4391-04",
+ "title": "Ashdown Cloisters Indigo/Blue - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265623091.jpg?v=1775520730",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "NCW4391-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4391-04"
+ },
+ {
+ "sku": "versace-metallic-stripe-cream-grey-wallcovering-versace",
+ "handle": "versace-metallic-stripe-cream-grey-wallcovering-versace",
+ "title": "Versace Metallic Stripe Cream, Grey Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9652f61a0ded456208a3f8dd4d527555.jpg?v=1773706443",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Paste the wall",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Metallic Stripe",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-metallic-stripe-cream-grey-wallcovering-versace"
+ },
+ {
+ "sku": "eden-commercial-wallcovering-eden-edn-004",
+ "handle": "eden-commercial-wallcovering-eden-edn-004",
+ "title": "Eden Commercial Wallcovering",
+ "vendor": "Newmor Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/NEWMOR_90114ec8-29cd-4b0c-a872-2cbca8cdfd96.jpg?v=1573940016",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Newmor",
+ "Newmor Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wallpapers",
+ "Walls",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eden-commercial-wallcovering-eden-edn-004"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73076",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73076",
+ "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73076-sample-clean.jpg?v=1774483358",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Wood",
+ "Floral",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73076"
+ },
+ {
+ "sku": "dwkk-129710",
+ "handle": "dwkk-129710",
+ "title": "Kravet Design - W3916-16 Beige Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3916_16_e7893dfe-86dd-458b-8a72-bcb83ecf2aba.jpg?v=1753322429",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Paper",
+ "Pattern",
+ "Plaid",
+ "Plaid / Check",
+ "Print",
+ "Ronald Redding Traveler",
+ "Rustic Charm",
+ "Serene",
+ "Tartan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "United States",
+ "Vinyl",
+ "W3916-16",
+ "W3916.16.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129710"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48588",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48588",
+ "title": "Verwood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vanadis-sif.jpg?v=1777480231",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Rustic",
+ "Sand",
+ "Stucco",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Width: 41\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48588"
+ },
+ {
+ "sku": "vomera-porcelain-faux-tile-wbs-39645",
+ "handle": "vomera-porcelain-faux-tile-wbs-39645",
+ "title": "Vomera Porcelain Faux Tile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39645-sample-vomera-porcelain-faux-tile-hollywood-wallcoverings.jpg?v=1775736100",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Brick",
+ "Bricks and Stones",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cool",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Powder Room",
+ "Rich Woods",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-porcelain-faux-tile-wbs-39645"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_fdn-5414-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_fdn-5414-jpg",
+ "title": "Foundation - Slate | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5414.jpg?v=1762294642",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Gray",
+ "Foundation",
+ "Gray",
+ "Industrial",
+ "RAMPART®",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fdn-5414-jpg"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72300",
+ "handle": "la-voltere-durable-vinyl-dur-72300",
+ "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72300-sample-clean.jpg?v=1774485101",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72300"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2519",
+ "handle": "faux-leaf-squares-fls-2519",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2519-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711918",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Off-white",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2519"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br10303-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br10303-jpg",
+ "title": "Burnished Metallic | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/br10303.jpg?v=1762289352",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Burnished Metallic",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Industrial",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br10303-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73003",
+ "handle": "benedict-canyon-sisal-hlw-73003",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73003-sample-clean.jpg?v=1774482988",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal Farmhouse",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73003"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58113",
+ "handle": "floating-bubbles-vinyl-dwx-58113",
+ "title": "Floating Bubbles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58113-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713413",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Gold",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gold",
+ "Modern",
+ "Organic",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58113"
+ },
+ {
+ "sku": "hollywood-modern-wood-xhw-2010204",
+ "handle": "hollywood-modern-wood-xhw-2010204",
+ "title": "Hollywood Modern Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/intarsia-crosscut_bea1a5ca-da0c-4b99-939e-9af571a5a043.jpg?v=1777481257",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Grain",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 50.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-wood-xhw-2010204"
+ },
+ {
+ "sku": "dwkk-g5c51fc4a",
+ "handle": "dwkk-g5c51fc4a",
+ "title": "W3723-4 Gold | Kravet Design | Ronald Redding |Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3723_4_b0a8d57b-5e2b-4e81-826b-7e386c8a0fd6.jpg?v=1753292060",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "display_variant",
+ "Geometric",
+ "Gold",
+ "Kravet",
+ "Kravet Design",
+ "Metallic",
+ "Paper - 100%",
+ "Print",
+ "Ronald Redding",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3723-4",
+ "W3723.4.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g5c51fc4a"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mass-5779-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mass-5779-jpg",
+ "title": "Mass - Lake | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mass-5779.jpg?v=1762300233",
+ "tags": [
+ "23% Nylon",
+ "36% Wool",
+ "37% Cotton",
+ "4% Polyester",
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cotton",
+ "Lake",
+ "Mass",
+ "Metallic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mass-5779-jpg"
+ },
+ {
+ "sku": "toyoura-durable-vinyl-xlp-34549",
+ "handle": "toyoura-durable-vinyl-xlp-34549",
+ "title": "Toyoura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4aac08ad81e9b993ab3fe4f44f681cc3_2c3004ff-d9f8-4bf4-81e1-7d05a4db0c30.jpg?v=1572310424",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Commercial and Residential - Cleanable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/toyoura-durable-vinyl-xlp-34549"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-443",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-443",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91fa005dd85d87226d97c791f98ede3d_8ef48979-d4e2-44be-992f-9c69f8363e31.jpg?v=1745458238",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-443"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73151",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73151",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73151-sample-clean.jpg?v=1774483748",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Brown",
+ "Champagne",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Light Green",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Paper",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Wallcovering",
+ "Whittier Way",
+ "Yellow"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73151"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47640",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47640",
+ "title": "Edgware Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47640-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711022",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Red",
+ "Terra Cotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47640"
+ },
+ {
+ "sku": "splice-by-innovations-usa-dwc-splice-6",
+ "handle": "splice-by-innovations-usa-dwc-splice-6",
+ "title": "Splice | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Splice-6.jpg?v=1736198829",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Almond",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Innovations USA",
+ "Lemon",
+ "Light Gray",
+ "Non-woven",
+ "Splice",
+ "Splice-6",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/splice-by-innovations-usa-dwc-splice-6"
+ },
+ {
+ "sku": "jonesport-ivory-cabin-stripe-wallpaper-cca-83174",
+ "handle": "jonesport-ivory-cabin-stripe-wallpaper-cca-83174",
+ "title": "Jonesport Ivory Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c856284a315519dfae2dc111d22ad64c.jpg?v=1572309971",
+ "tags": [
+ "Americana",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-ivory-cabin-stripe-wallpaper-cca-83174"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52692",
+ "handle": "vernon-durable-walls-xwp-52692",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52692-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735766",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Linen Texture",
+ "Living Room",
+ "Olive",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52692"
+ },
+ {
+ "sku": "hollywood-tower-deco-xhw-201051",
+ "handle": "hollywood-tower-deco-xhw-201051",
+ "title": "Hollywood Tower Deco | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/avant-radiance.jpg?v=1777480923",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Art Deco",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Estimated Type: Paper",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tower-deco-xhw-201051"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dgbj-530-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dgbj-530-jpg",
+ "title": "Green Bog Jasper - Sapphire | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dgbj-530.jpg?v=1762291061",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Gray",
+ "Green Bog Jasper",
+ "Light Gray",
+ "Paper",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dgbj-530-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10348-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10348-jpg",
+ "title": "Ambient Design - AD10348 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10347.jpg?v=1733874090",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10348-jpg"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47741",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47741",
+ "title": "Grimsby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlh-47741-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775714873",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47741"
+ },
+ {
+ "sku": "emerson-blue-paisley-stripe-wallpaper-cca-82907",
+ "handle": "emerson-blue-paisley-stripe-wallpaper-cca-82907",
+ "title": "Emerson Blue Paisley Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ced4683d4d1c2fac7ed622213074aa28.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Global",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Paisley",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emerson-blue-paisley-stripe-wallpaper-cca-82907"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47742",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47742",
+ "title": "Grimsby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlh-47742-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775714901",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47742"
+ },
+ {
+ "sku": "crushed-costoluto-vinyl-dwx-58007",
+ "handle": "crushed-costoluto-vinyl-dwx-58007",
+ "title": "Crushed Costoluto Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58007-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709689",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crushed",
+ "Gold",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Sophisticated",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58007"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-107-silvery-black-fgb-107",
+ "handle": "faux-glass-bead-wallpaper-107-silvery-black-fgb-107",
+ "title": "Faux Glass Bead Wallcovering - 107 Silvery Black",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-107-sample-faux-glass-bead-wallcovering.jpg?v=1775711816",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Bling",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Finish",
+ "Faux Glass Bead Wallcovering",
+ "Glass Bead",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Silver",
+ "Textured",
+ "Tomato",
+ "vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-107-silvery-black-fgb-107"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2503",
+ "handle": "faux-leaf-squares-fls-2503",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2503-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711865",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2503"
+ },
+ {
+ "sku": "tahiti-scenic-wallpaper-trf-56820",
+ "handle": "tahiti-scenic-wallpaper-trf-56820",
+ "title": "Tahiti Scenic | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce37f2d0e88b9c7d5b0748c883bc8c30.jpg?v=1750789762",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Asian",
+ "Beige",
+ "Birds",
+ "Blue",
+ "Bridge",
+ "bright",
+ "cabana",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Jeffrey Stevens",
+ "medium blue",
+ "medium scale",
+ "Modern",
+ "Modern Tropics",
+ "Navy Blue",
+ "Non-Woven",
+ "novelty",
+ "Olive Green",
+ "overall",
+ "pagoda",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Red",
+ "red/orange",
+ "scenic",
+ "Series: York",
+ "Tan",
+ "Toile",
+ "Tomato Red",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahiti-scenic-wallpaper-trf-56820"
+ },
+ {
+ "sku": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+ "handle": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+ "title": "Kent Sky Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/09bbfba5dcb27d4e36cf2740877057cf.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Light Gray",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-sky-faux-grasscloth-wallpaper-cca-82927"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53771",
+ "handle": "juno-faux-silk-durable-walls-xje-53771",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XJE-53771-sample-clean.jpg?v=1774482305",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Copper",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Orange",
+ "Russet",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53771"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53533",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53533",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-copper.jpg?v=1777480861",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53533"
+ },
+ {
+ "sku": "rangeley-aqua-new-avalon-stripe-wallpaper-cca-83129",
+ "handle": "rangeley-aqua-new-avalon-stripe-wallpaper-cca-83129",
+ "title": "Rangeley Aqua New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52be891af14fd3172d4154a9b8216996.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Light Green",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-aqua-new-avalon-stripe-wallpaper-cca-83129"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72244",
+ "handle": "saint-brittany-durable-vinyl-dur-72244",
+ "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72244-sample-clean.jpg?v=1774484890",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72244"
+ },
+ {
+ "sku": "biscay-bay-bourbon-wood-grain-wbs-39614",
+ "handle": "biscay-bay-bourbon-wood-grain-wbs-39614",
+ "title": "Biscay Bay Bourbon Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39614-sample-biscay-bay-bourbon-wood-grain-hollywood-wallcoverings.jpg?v=1775705249",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brick",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Green",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Glamorous",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Regencycore",
+ "Rich Woods",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 54.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-bourbon-wood-grain-wbs-39614"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_qnt-5544-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_qnt-5544-jpg",
+ "title": "Quinault - Golden Light | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/qnt-5544.jpg?v=1762303434",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Golden Light",
+ "Quinault",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_qnt-5544-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm8003-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm8003-jpg",
+ "title": "SOLID METAL | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sm8003.jpg?v=1762358695",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "SOLID METAL",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8003-jpg"
+ },
+ {
+ "sku": "st-dennis-durable-vinyl-dur-72280",
+ "handle": "st-dennis-durable-vinyl-dur-72280",
+ "title": "St Dennis Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72280-sample-clean.jpg?v=1774485006",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Brushstroke",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Estimated Type: Non-woven",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-dennis-durable-vinyl-dur-72280"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9517-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9517-jpg",
+ "title": "SM9517 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9515.jpg?v=1733872498",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9517-jpg"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52108",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52108",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52108-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707096",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Linear",
+ "Living Room",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52108"
+ },
+ {
+ "sku": "lilli-orange-happy-dots-wallpaper-cca-82991",
+ "handle": "lilli-orange-happy-dots-wallpaper-cca-82991",
+ "title": "Lilli Orange Happy Dots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76dbf276e09d5ce714b9412d50bf5ebb.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Orange",
+ "Paper",
+ "Polka Dot",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lilli-orange-happy-dots-wallpaper-cca-82991"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010297",
+ "handle": "hollywood-getty-texture-xhw-2010297",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-specter_f2917f64-4503-43ac-b9c9-080aa5aa8d19.jpg?v=1777481195",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010297"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwk-52504",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwk-52504",
+ "title": "Shubert Faux Rice Paper Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwk-52504-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733229",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue",
+ "Living Room",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwk-52504"
+ },
+ {
+ "sku": "eur-80341-ncw4308-designer-wallcoverings-los-angeles",
+ "handle": "eur-80341-ncw4308-designer-wallcoverings-los-angeles",
+ "title": "Portavo Damask 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504809011.jpg?v=1775523491",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "Metallic Foil",
+ "NCW4308",
+ "NCW4308-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Portavo Damask",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80341-ncw4308-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4352-03",
+ "handle": "ncw4352-03",
+ "title": "Les Indiennes Bonnelles Aqua - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264312371.jpg?v=1775520523",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Leaf",
+ "Light Blue",
+ "NCW4352-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4352-03"
+ },
+ {
+ "sku": "presque-isle-taupe-regal-stripe-wallpaper-cca-83121",
+ "handle": "presque-isle-taupe-regal-stripe-wallpaper-cca-83121",
+ "title": "Presque Isle Taupe Regal Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8caf7a9acfa5a4245db8923fc510cfcf.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/presque-isle-taupe-regal-stripe-wallpaper-cca-83121"
+ },
+ {
+ "sku": "kiligano-libra-wallpaper-xg4-66911",
+ "handle": "kiligano-libra-wallpaper-xg4-66911",
+ "title": "Kiligano Libra Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4feb348e40457a8aeb9fb0d0583d00e6.jpg?v=1572309570",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Kiligano Libra Wallcovering",
+ "Light Gray",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kiligano-libra-wallpaper-xg4-66911"
+ },
+ {
+ "sku": "dwkk-127700",
+ "handle": "dwkk-127700",
+ "title": "Rafi - Pewter By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0060_08_CAC_eb847c15-91bd-4924-a37d-f235db121a2e.jpg?v=1726037792",
+ "tags": [
+ "20.875In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Print",
+ "Rafi",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "Vinyl",
+ "W0060/08.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 176.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127700"
+ },
+ {
+ "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47681",
+ "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47681",
+ "title": "Ferndown Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47681-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712099",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47681"
+ },
+ {
+ "sku": "dwc-1001600",
+ "handle": "dwc-1001600",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693307490355.jpg?v=1775521033",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Lattice",
+ "Light Beige",
+ "Light Pink",
+ "NCW4303-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001600"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10261-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10261-jpg",
+ "title": "SM10261 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10260.jpg?v=1733872442",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10261-jpg"
+ },
+ {
+ "sku": "eur-80397-ncw4392-designer-wallcoverings-los-angeles",
+ "handle": "eur-80397-ncw4392-designer-wallcoverings-los-angeles",
+ "title": "Chelwood Floral Damask 03 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506611251.jpg?v=1775523823",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Botanical",
+ "Chelwood Floral Damask",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "NCW4392",
+ "NCW4392-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Olive Green",
+ "Organic",
+ "Paper",
+ "Sage Green",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80397-ncw4392-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52691",
+ "handle": "vernon-durable-walls-xwp-52691",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52691-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735763",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52691"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49316",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49316",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-black_sand_28cad555-1c71-4d20-9b5a-46a052587310.jpg?v=1777480341",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49316"
+ },
+ {
+ "sku": "jonesport-cream-cabin-stripe-wallpaper-cca-83175",
+ "handle": "jonesport-cream-cabin-stripe-wallpaper-cca-83175",
+ "title": "Jonesport Cream Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8af5af0a7c4631387aeeb157c845ba05.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-cream-cabin-stripe-wallpaper-cca-83175"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_isn-8-3432-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_isn-8-3432-jpg",
+ "title": "Islington Station - Horizon | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/isn-8-3432.jpg?v=1762297825",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Chronicle/London Chic",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Horizon",
+ "Islington Station",
+ "Khaki",
+ "Non-woven",
+ "Steelblue",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_isn-8-3432-jpg"
+ },
+ {
+ "sku": "origami-by-innovations-usa-dwc-origami-6",
+ "handle": "origami-by-innovations-usa-dwc-origami-6",
+ "title": "Origami | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-6.jpg?v=1736198890",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Innovations USA",
+ "Light Beige",
+ "Light Brown",
+ "Origami",
+ "Origami-6",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-6"
+ },
+ {
+ "sku": "dwc-1001622",
+ "handle": "dwc-1001622",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309063219.jpg?v=1775521178",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "NCW4308-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001622"
+ },
+ {
+ "sku": "ncw4304-04",
+ "handle": "ncw4304-04",
+ "title": "Les Rêves Marguerite Chocolate/Orange - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262346291.jpg?v=1775520302",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "Multi",
+ "NCW4304-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Orange",
+ "Paper",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4304-04"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47887",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47887",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47887-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722274",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Luxe",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47887"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58139",
+ "handle": "jutely-vinyl-dwx-58139",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58139-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720538",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Gray",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58139"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47311",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47311",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47311-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704383",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Glamorous",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Paper",
+ "Regencycore",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47311"
+ },
+ {
+ "sku": "millinocket-fog-illusion-stripe-wallpaper-cca-83113",
+ "handle": "millinocket-fog-illusion-stripe-wallpaper-cca-83113",
+ "title": "Millinocket Fog Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f11d43a9aef56024d0ba8f9f66fa2d3d.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-fog-illusion-stripe-wallpaper-cca-83113"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_vax-8-3496-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vax-8-3496-jpg",
+ "title": "Vauxhall - Neutron | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vax-8-3496.jpg?v=1762311672",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "chevron",
+ "Chronicle/London Chic",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "geometric",
+ "Navy",
+ "Neutron",
+ "smooth",
+ "Teal",
+ "Vauxhall",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vax-8-3496-jpg"
+ },
+ {
+ "sku": "gramercy-emerald",
+ "handle": "gramercy-emerald",
+ "title": "GRAMERCY Emerald",
+ "vendor": "Mind the Gap",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/MTG_403303_1_GRAMERCY_Emerald.jpg?v=1607114848",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dark Green",
+ "Emerald Green",
+ "Geometric",
+ "Gold",
+ "GRAMERCY Emerald",
+ "Maximalist",
+ "Mind the Gap",
+ "Non-woven",
+ "Pattern",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gramercy-emerald"
+ },
+ {
+ "sku": "randolph-natural-wine-crates-wallpaper-cca-82935",
+ "handle": "randolph-natural-wine-crates-wallpaper-cca-82935",
+ "title": "Randolph Natural Wine Crates Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1f3a17e3451c7e06d4c9f366907ad187.jpg?v=1572309962",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "European",
+ "Farmhouse",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/randolph-natural-wine-crates-wallpaper-cca-82935"
+ },
+ {
+ "sku": "dwkk-129209",
+ "handle": "dwkk-129209",
+ "title": "W3775-3 Green | Kravet Design | Botanical & Floral Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3775_3_bf772d35-c581-4945-8245-d77e54ad081d.jpg?v=1753121437",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Botanical",
+ "Botanical & Floral",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "United States",
+ "W3775-3",
+ "W3775.3.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129209"
+ },
+ {
+ "sku": "ncw4394-04",
+ "handle": "ncw4394-04",
+ "title": "Ashdown Posingford Dove/Taupe - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497266540595.jpg?v=1775520831",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Leaf",
+ "NCW4394-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4394-04"
+ },
+ {
+ "sku": "jonesport-navy-cabin-stripe-wallpaper-cca-83178",
+ "handle": "jonesport-navy-cabin-stripe-wallpaper-cca-83178",
+ "title": "Jonesport Navy Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab5f33da7b0703511165d46f616d2cca.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Navy",
+ "Paper",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-navy-cabin-stripe-wallpaper-cca-83178"
+ },
+ {
+ "sku": "aubrey-beige-crystal-medallion-texture-wallpaper-cca-83247",
+ "handle": "aubrey-beige-crystal-medallion-texture-wallpaper-cca-83247",
+ "title": "Aubrey Beige Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/440199629252b4c6f40ee76536a84087.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Medallion",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-beige-crystal-medallion-texture-wallpaper-cca-83247"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3286_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3286_8-jpg",
+ "title": "Marlu - Alabaster | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3286_8.jpg?v=1762301244",
+ "tags": [
+ "100% Vinyl",
+ "Alabaster",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Marlu",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3286_8-jpg"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52678",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52678",
+ "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52678-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726384",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52678"
+ },
+ {
+ "sku": "whisper-orange-scroll-texture-wallpaper-wallpaper-cca-82895",
+ "handle": "whisper-orange-scroll-texture-wallpaper-wallpaper-cca-82895",
+ "title": "Whisper Orange Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/01e378d0de2b2ad817186669a9f088be.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Light Green",
+ "Peach",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-orange-scroll-texture-wallpaper-wallpaper-cca-82895"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53202",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53202",
+ "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53202-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710061",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53202"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53531",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53531",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-port.jpg?v=1777480857",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Mushroom",
+ "Organic",
+ "Organic Modern",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53531"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2867",
+ "handle": "peter-s-plastered-walls-ppw-2867",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2867-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729039",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Olive",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2867"
+ },
+ {
+ "sku": "austin-charcoal-plaid-wallpaper-cca-82961",
+ "handle": "austin-charcoal-plaid-wallpaper-cca-82961",
+ "title": "Austin Charcoal Plaid Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f588b6a9bb760c4a1ab87b2ea6182784.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Plaid",
+ "Plaids",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/austin-charcoal-plaid-wallpaper-cca-82961"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5507-jpg",
+ "title": "Resham - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5507.jpg?v=1762304040",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5507-jpg"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72061",
+ "handle": "saint-helene-durable-vinyl-dur-72061",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72061-sample-clean.jpg?v=1774484213",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72061"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010372",
+ "handle": "hollywood-contemporary-coast-xhw-2010372",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010372-sample-clean.jpg?v=1774482616",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Baby Blue",
+ "Background Color Blue",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Sky Blue",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010372"
+ },
+ {
+ "sku": "versace-plain-texture-black-wallcovering-versace",
+ "handle": "versace-plain-texture-black-wallcovering-versace",
+ "title": "Versace Plain Texture Black Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a30450970e203ee7f86f0ecf92635301.jpg?v=1773706463",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Estimated Type: Paper",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Moody",
+ "Office",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Texture",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-texture-black-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10372-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10372-jpg",
+ "title": "Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10372.jpg?v=1762285935",
+ "tags": [
+ "Architectural",
+ "Armor",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Scuffmaster",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10372-jpg"
+ },
+ {
+ "sku": "jumping-large-mural-by-retro-walls-rtr-37250",
+ "handle": "jumping-large-mural-by-retro-walls-rtr-37250",
+ "title": "Jumping Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/55f7601e24390d7fd14e12c87e22dcf4.jpg?v=1572309703",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Cat",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Deer",
+ "Fauna",
+ "Frog",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Horse",
+ "Lion",
+ "Mouse",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Rabbit",
+ "Snake",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jumping-large-mural-by-retro-walls-rtr-37250"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3373_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3373_8-jpg",
+ "title": "Lyra - Sable | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3373_8.jpg?v=1762299723",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Sable",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3373_8-jpg"
+ },
+ {
+ "sku": "dwkk-140158",
+ "handle": "dwkk-140158",
+ "title": "Abingdon Wp - Sand Beige By Lee Jofa | Blithfield |Global Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3530_16_18aae927-316b-4749-a77c-03e8c77ef8ef.jpg?v=1753291847",
+ "tags": [
+ "27.5In",
+ "Abingdon Wp",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Bohemian",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Commercial",
+ "display_variant",
+ "Geometric",
+ "Global",
+ "Lee Jofa",
+ "Luxury",
+ "Paper",
+ "Pbfc-3530.16.0",
+ "Print",
+ "Stripe",
+ "Textured",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140158"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48578",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48578",
+ "title": "Verwood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqr-48578-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735794",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Concrete",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Width: 41\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48578"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2766",
+ "handle": "faux-leaf-squares-fls-2766",
+ "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2766-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712048",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Ivory",
+ "Light Beige",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wide Serviceable Texture - Cleanable",
+ "Yellow"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2766"
+ },
+ {
+ "sku": "crosby-acoustical-wallcovering-xkl-47473",
+ "handle": "crosby-acoustical-wallcovering-xkl-47473",
+ "title": "Crosby Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/666267ad87a1294f0f7287a74c170ee8.jpg?v=1572310054",
+ "tags": [
+ "100% Recycled Polyester",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crosby Acoustical Wallcovering",
+ "Dark Blue",
+ "Fabric",
+ "Gray",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Moody",
+ "Navy",
+ "Polyester",
+ "Slate Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crosby-acoustical-wallcovering-xkl-47473"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53684",
+ "handle": "westville-contemporary-durable-walls-xje-53684",
+ "title": "Westville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53684-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736456",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juniper",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Olive Green",
+ "Serene",
+ "Steel",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53684"
+ },
+ {
+ "sku": "ncw4354-04",
+ "handle": "ncw4354-04",
+ "title": "Nina Campbell Wallcoverings - Chartreuse Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264869427.jpg?v=1775520607",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Geometric",
+ "Green",
+ "Limegreen",
+ "Mid-Century Modern",
+ "NCW4354-04",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4354-04"
+ },
+ {
+ "sku": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+ "handle": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+ "title": "Camila Moss Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f732d6dcd610b98c6c3fc5ab2da0a651.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gold",
+ "Gray",
+ "LA Walls",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-moss-modern-damask-wallpaper-wallpaper-cca-82844"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010378",
+ "handle": "hollywood-contemporary-coast-xhw-2010378",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-el_dorado_30b2926f-2cf8-4c70-8ca5-34407aca0a34.jpg?v=1777481083",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Tan",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010378"
+ },
+ {
+ "sku": "dwss-72534",
+ "handle": "dwss-72534",
+ "title": "William light blue Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/526-16_image1_b86c8e90-c1e1-402e-bff8-f65eb4254ba8.jpg?v=1646104576",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "LIGHT BLUE",
+ "Light Steelblue",
+ "P526-16",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Seashell",
+ "Stripe",
+ "Wallcovering",
+ "William",
+ "William light blue Sample"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72534"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76627",
+ "handle": "rustic-glam-vinyl-gpr-76627",
+ "title": "Rustic Glam Vinyl",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76627-sample-rustic-glam-vinyl.jpg?v=1775731621",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bling",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Glass Bead",
+ "Hallway",
+ "Hand Crafted",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Mural",
+ "Pale Beige",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76627"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10418m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10418m-jpg",
+ "title": "ST10418M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10416.jpg?v=1733872155",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10418m-jpg"
+ },
+ {
+ "sku": "ncw4305-05",
+ "handle": "ncw4305-05",
+ "title": "Les Rêves Pampelonne Indigo - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262673971.jpg?v=1775520348",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Light Blue",
+ "NCW4305-05",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4305-05"
+ },
+ {
+ "sku": "kiligano-libra-wallpaper-xg4-66920",
+ "handle": "kiligano-libra-wallpaper-xg4-66920",
+ "title": "Kiligano Libra Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9b235a0e4276645b184a047d9db07c84.jpg?v=1572309571",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Khaki",
+ "Kiligano Libra Wallcovering",
+ "Light Goldenrodyellow",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kiligano-libra-wallpaper-xg4-66920"
+ },
+ {
+ "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52162",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52162",
+ "title": "Forsyth Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fractal-white_sugar_2c7d144c-6561-47b7-af59-bcfaafbf1dfa.jpg?v=1777481443",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-White",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52162"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10210-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10210-jpg",
+ "title": "SP10210 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10209.jpg?v=1733872382",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10210-jpg"
+ },
+ {
+ "sku": "hereford-type-ii-vinyl-wallcovering-xuy-49258",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49258",
+ "title": "Hereford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/malachite-agate.jpg?v=1777480311",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Pewter",
+ "Serene",
+ "Stone",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49258"
+ },
+ {
+ "sku": "camila-yellow-modern-damask-wallpaper-wallpaper-cca-82846",
+ "handle": "camila-yellow-modern-damask-wallpaper-wallpaper-cca-82846",
+ "title": "Camila Yellow Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4165c756fdb0da14f063a646f8e0be21.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Modern",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-yellow-modern-damask-wallpaper-wallpaper-cca-82846"
+ },
+ {
+ "sku": "zoe-quartz-coco-texture-wallpaper-cca-83286",
+ "handle": "zoe-quartz-coco-texture-wallpaper-cca-83286",
+ "title": "Zoe Quartz Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/69c2dee5b3ad8849deaef84609f2cd93_6a50d6f6-f871-4a14-a576-76e256bd8c11.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Light Green",
+ "Light Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-quartz-coco-texture-wallpaper-cca-83286"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3327_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3327_8-jpg",
+ "title": "Hugo - Pebble | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3327_8.jpg?v=1762297753",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Paper",
+ "Pebble",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3327_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10205-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10205-jpg",
+ "title": "SP10205 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10204.jpg?v=1733872394",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10205-jpg"
+ },
+ {
+ "sku": "minetta-contemporary-durable-vinyl-xwj-52462",
+ "handle": "minetta-contemporary-durable-vinyl-xwj-52462",
+ "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ruche-puckered.jpg?v=1777480627",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Mid-century",
+ "Mid-century Modern",
+ "Office",
+ "Pale Yellow",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52462"
+ },
+ {
+ "sku": "grass-galore-specialty-grasscloth-wallpaper-grs-98614",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98614",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b296ce8734c98e09806160b25e22b324.jpg?v=1775081911",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Off-White",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Solid/Textural",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 39.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98614"
+ },
+ {
+ "sku": "rhone-durable-vinyl-dur-72097",
+ "handle": "rhone-durable-vinyl-dur-72097",
+ "title": "Rhone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72097-sample-clean.jpg?v=1774484388",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burnt Orange",
+ "Charcoal",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Non-woven",
+ "Orange",
+ "Organic Modern",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rhone-durable-vinyl-dur-72097"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53242",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53242",
+ "title": "Daytona Faux Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53242-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710150",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Olive Green",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53242"
+ },
+ {
+ "sku": "nice-reima-wallpaper-xq8-68175",
+ "handle": "nice-reima-wallpaper-xq8-68175",
+ "title": "Nice Reima | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/60494bd3b6fbc1689b87cc20055cf466.jpg?v=1733882569",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Chartreuse",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nice-reima-wallpaper-xq8-68175"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72272",
+ "handle": "essone-durable-vinyl-dur-72272",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72272-sample-clean.jpg?v=1774484966",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72272"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53078",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53078",
+ "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53078-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703594",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53078"
+ },
+ {
+ "sku": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82855",
+ "handle": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82855",
+ "title": "Gibby Purple Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6562720df07306014a8da6cfea33c130.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Leaf",
+ "Prepasted",
+ "Purple",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82855"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad9503-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad9503-jpg",
+ "title": "Ambient Design - AD9503 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9501.jpg?v=1733874161",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Olive Green",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9503-jpg"
+ },
+ {
+ "sku": "dwc-1001624",
+ "handle": "dwc-1001624",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309128755.jpg?v=1775521191",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Fretwork",
+ "Geometric",
+ "NCW4308-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Silver",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001624"
+ },
+ {
+ "sku": "kenley-taupe-polka-dots-wallpaper-wallpaper-cca-82875",
+ "handle": "kenley-taupe-polka-dots-wallpaper-wallpaper-cca-82875",
+ "title": "Kenley Taupe Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/13e55af7272e8e4a3c06f1931df00179.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Paper",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-taupe-polka-dots-wallpaper-wallpaper-cca-82875"
+ },
+ {
+ "sku": "yucatan-sisal-wallpaper-trf-56863",
+ "handle": "yucatan-sisal-wallpaper-trf-56863",
+ "title": "Yucatan Sisal | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c995a0c96a97fab6795cf41cb6301b32.jpg?v=1750789726",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "deep blue",
+ "Denim Blue",
+ "Discontinued",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "Light Beige",
+ "Light Blue",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "organic",
+ "Scandinavian",
+ "Series: York",
+ "Sisal",
+ "Smoke",
+ "Steel",
+ "textural",
+ "Textured",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 153.28,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yucatan-sisal-wallpaper-trf-56863"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47940",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47940",
+ "title": "Maidstone - Oyster Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-diamond_ad034a20-61e7-43da-99f1-a50cd75bd4c8.jpg?v=1777481198",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stone Look",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47940"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-201-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-201-jpg",
+ "title": "Ambient Design - | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_wwdf-200.jpg?v=1733871990",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "P2",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-201-jpg"
+ },
+ {
+ "sku": "ncw4356-05",
+ "handle": "ncw4356-05",
+ "title": "Nina Campbell Wallcoverings - Onyx Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265197107.jpg?v=1775520669",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fauna",
+ "Gray",
+ "NCW4356-05",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4356-05"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br021-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br021-jpg",
+ "title": "BR021 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br020.jpg?v=1733873673",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "BR021",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Green",
+ "Light Gray",
+ "Paper",
+ "Textured",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br021-jpg"
+ },
+ {
+ "sku": "kennebunk-denim-textured-pinstripe-wallpaper-cca-83097",
+ "handle": "kennebunk-denim-textured-pinstripe-wallpaper-cca-83097",
+ "title": "Kennebunk Denim Textured Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2a2224b0f0bf7fa4402a5198d0344116.jpg?v=1572309968",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Denim",
+ "Discontinued",
+ "Easy Walls",
+ "Kennebunk Denim Textured Pinstripe Wallcovering",
+ "LA Walls",
+ "Light Blue",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kennebunk-denim-textured-pinstripe-wallpaper-cca-83097"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10259-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10259-jpg",
+ "title": "SM10259 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10258.jpg?v=1733872446",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10259-jpg"
+ },
+ {
+ "sku": "eur-80394-ncw4391-designer-wallcoverings-los-angeles",
+ "handle": "eur-80394-ncw4391-designer-wallcoverings-los-angeles",
+ "title": "Cloisters 04 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506480179.jpg?v=1775523801",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Blue",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Cloisters",
+ "Commercial",
+ "Contemporary",
+ "Cornflower Blue",
+ "Geometric",
+ "Global",
+ "Hallway",
+ "Living Room",
+ "NCW4391",
+ "NCW4391-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Rustic",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80394-ncw4391-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52336",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52336",
+ "title": "Nassau Contemporary Emboosed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nest-forage.jpg?v=1777480485",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52336"
+ },
+ {
+ "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48397",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48397",
+ "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpy-48397-sample-skelton-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775734092",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Skelton Type 2 Vinyl Wallcovering",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48397"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9805-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9805-jpg",
+ "title": "ST9805 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9802.jpg?v=1733872224",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Khaki",
+ "Minimalist",
+ "Paper",
+ "Solid",
+ "ST9805",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9805-jpg"
+ },
+ {
+ "sku": "aubrey-celery-crystal-texture-wallpaper-cca-83279",
+ "handle": "aubrey-celery-crystal-texture-wallpaper-cca-83279",
+ "title": "Aubrey Celery Crystal Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/14e3c4a4eab87746e3c1429de0b5db3d.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Gray",
+ "Industrial",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-celery-crystal-texture-wallpaper-cca-83279"
+ },
+ {
+ "sku": "dwc-1001651",
+ "handle": "dwc-1001651",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310570547.jpg?v=1775521364",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Gray",
+ "Light Gray",
+ "Medallion",
+ "NCW4354-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001651"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73113",
+ "handle": "puna-drive-natural-grassweave-hlw-73113",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73113-sample-clean.jpg?v=1774483521",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Slate Gray",
+ "Deep Navy",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Navy",
+ "Office",
+ "Organic Modern",
+ "Puna Drive",
+ "Serene",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73113"
+ },
+ {
+ "sku": "crowns-roses-gold-white-cream-wallcovering-versace",
+ "handle": "crowns-roses-gold-white-cream-wallcovering-versace",
+ "title": "Crowns & Roses Gold White Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/b66ecea0d89c1915eab9f4d9b829be5c.jpg?v=1773710747",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Antique Gold",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Crowns & Roses",
+ "Crowns & Roses Gold White Cream Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Estimated Type: Non-woven",
+ "Floral",
+ "Gold",
+ "Gold White Cream",
+ "Haute Couture",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Medallion",
+ "Neoclassical",
+ "Paper",
+ "Paste the wall",
+ "Renaissance",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crowns-roses-gold-white-cream-wallcovering-versace"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47652",
+ "handle": "fairford-vinyl-wallcovering-xlb-47652",
+ "title": "Fairford Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47652-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711465",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47652"
+ },
+ {
+ "sku": "dwss-72583",
+ "handle": "dwss-72583",
+ "title": "Lene pink sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/639-04FS_image1_762b1925-d5ab-4985-aad1-c4fd0fa8f50a.jpg?v=1646104733",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Lene",
+ "Lene pink sample",
+ "Light Blue",
+ "Light Yellow",
+ "P639-04FS",
+ "Pale Pink",
+ "Paper",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72583"
+ },
+ {
+ "sku": "dwkk-140160",
+ "handle": "dwkk-140160",
+ "title": "Abingdon Wp - Blue Blue By Lee Jofa | Blithfield |Global Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3530_5_2dfd6469-5f51-4af7-8adc-abf3ecd75877.jpg?v=1753291843",
+ "tags": [
+ "27.5In",
+ "Abingdon Wp",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blithfield",
+ "Blue",
+ "Cadet",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Coastal",
+ "Commercial",
+ "display_variant",
+ "Geometric",
+ "Global",
+ "Lee Jofa",
+ "Light Blue",
+ "Luxury",
+ "Mist",
+ "Paper",
+ "Pattern",
+ "Pbfc-3530.5.0",
+ "Print",
+ "Smoke",
+ "Steel",
+ "Stripe",
+ "Textured",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140160"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58118",
+ "handle": "floating-bubbles-vinyl-dwx-58118",
+ "title": "Floating Bubbles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58118-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713550",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Neutral",
+ "Organic",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58118"
+ },
+ {
+ "sku": "khloe-pink-girly-floral-scroll-wallpaper-wallpaper-cca-82832",
+ "handle": "khloe-pink-girly-floral-scroll-wallpaper-wallpaper-cca-82832",
+ "title": "Khloe Pink Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9c8ba200bdbb22ae547266902e140b98.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vine",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/khloe-pink-girly-floral-scroll-wallpaper-wallpaper-cca-82832"
+ },
+ {
+ "sku": "dwkk-129274",
+ "handle": "dwkk-129274",
+ "title": "W3797-5 Blue | Kravet Design | Candice Olson Collection |Modern Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3797_5_48f07304-21a2-427e-82c1-dffe7cbe25a8.jpg?v=1753291880",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Art Deco",
+ "Blue",
+ "Candice Olson Collection",
+ "Cellulose - 51%;Polyester - 19%;Binder - 17%;Mineral Fillers - 13%",
+ "Class A Fire Rated",
+ "Commercial",
+ "display_variant",
+ "Kravet",
+ "Kravet Design",
+ "Light Blue",
+ "Modern",
+ "Non-Woven",
+ "Pattern",
+ "Print",
+ "United States",
+ "W3797-5",
+ "W3797.5.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129274"
+ },
+ {
+ "sku": "mason-chocolate-stripe-texture-wallpaper-cca-82922",
+ "handle": "mason-chocolate-stripe-texture-wallpaper-cca-82922",
+ "title": "Mason Chocolate Stripe Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d865ad1f35ad1c2ee987f34b27035b4a.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mason-chocolate-stripe-texture-wallpaper-cca-82922"
+ },
+ {
+ "sku": "sumatra-by-innovations-usa-dwc-sumatra-7",
+ "handle": "sumatra-by-innovations-usa-dwc-sumatra-7",
+ "title": "Sumatra | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-7.jpg?v=1736198817",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Innovations USA",
+ "Light Beige",
+ "Paper",
+ "Sumatra",
+ "Sumatra-7",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-7"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48560",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48560",
+ "title": "Ventnor Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqq-48560-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735700",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Rustic",
+ "Stucco",
+ "Textured",
+ "Traditional",
+ "Ventnor Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48560"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53377",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53377",
+ "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-earthy_eaea08f7-b0c2-42cb-8dea-7ee55c66a535.jpg?v=1777481419",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53377"
+ },
+ {
+ "sku": "robertocavalliwallpaper_dwrc18006-jpg",
+ "handle": "robertocavalliwallpaper_dwrc18006-jpg",
+ "title": "Roberto Cavalli Wallcovering",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/RobertoCavalliWallpaper_dwrc18006.jpg?v=1587153844",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "European",
+ "Gray",
+ "Imported",
+ "Italian",
+ "Leopard",
+ "Maximalist",
+ "Paper",
+ "Pattern",
+ "Roberto Cavalli Wallcovering",
+ "Tropical",
+ "Volume 7",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/robertocavalliwallpaper_dwrc18006-jpg"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48134",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48134",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48134-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728225",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Dark Green",
+ "Estimated Type: Textured",
+ "Gold",
+ "Grandmillennial",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Red",
+ "Regencycore",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48134"
+ },
+ {
+ "sku": "biscay-bay-wide-mahogany-wood-grain-wbs-39625",
+ "handle": "biscay-bay-wide-mahogany-wood-grain-wbs-39625",
+ "title": "Biscay Bay Wide Mahogany Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39625-sample-biscay-bay-wide-mahogany-wood-grain-hollywood-wallcoverings.jpg?v=1775705755",
+ "tags": [
+ "Alabaster",
+ "Architectural",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Mahogany",
+ "Off-white",
+ "Olive Green",
+ "Paper",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Regencycore",
+ "Rich Woods",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 54.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-wide-mahogany-wood-grain-wbs-39625"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48227",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48227",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48227-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731028",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48227"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5108-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5108-jpg",
+ "title": "Grain - Spruce | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5108.jpg?v=1762295804",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain",
+ "Gray",
+ "RAMPART®",
+ "Spruce",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5108-jpg"
+ },
+ {
+ "sku": "vomera-grey-faux-granite-wbs-39652",
+ "handle": "vomera-grey-faux-granite-wbs-39652",
+ "title": "Vomera Grey Faux Granite | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39652-sample-vomera-grey-faux-granite-hollywood-wallcoverings.jpg?v=1775735986",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Concrete",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Organic",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-grey-faux-granite-wbs-39652"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73167",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73167",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73167-sample-clean.jpg?v=1774483844",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Sage",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73167"
+ },
+ {
+ "sku": "eur-80296-ncw4277-designer-wallcoverings-los-angeles",
+ "handle": "eur-80296-ncw4277-designer-wallcoverings-los-angeles",
+ "title": "Meredith 06 - Aqua Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502646323.jpg?v=1775523224",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "COROMANDEL",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Meredith",
+ "NCW4277",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Turquoise",
+ "Paper",
+ "Serene",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80296-ncw4277-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br10299-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br10299-jpg",
+ "title": "BR10299 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_BR10298.jpg?v=1733873640",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "BR10299",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br10299-jpg"
+ },
+ {
+ "sku": "eur-80463-ncw4498-designer-wallcoverings-los-angeles",
+ "handle": "eur-80463-ncw4498-designer-wallcoverings-los-angeles",
+ "title": "Poiteau Bamboo Ferns 04 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508937779.jpg?v=1775524253",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Gray",
+ "Japonisme",
+ "Leaf",
+ "Living Room",
+ "NCW4498",
+ "NCW4498-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-woven",
+ "Off-white",
+ "Orange",
+ "Organic Modern",
+ "Pale Peach",
+ "Paper",
+ "Poiteau Bamboo Ferns",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Slate Blue",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80463-ncw4498-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwc-1001687",
+ "handle": "dwc-1001687",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693312438323.jpg?v=1775521602",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Floral",
+ "NCW4395-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Teal",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001687"
+ },
+ {
+ "sku": "dwc-1001609",
+ "handle": "dwc-1001609",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693308276787.jpg?v=1775521096",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Light Gray",
+ "NCW4305-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Non-woven",
+ "Stripe",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001609"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53112",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53112",
+ "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53112-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716043",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53112"
+ },
+ {
+ "sku": "eur-80448-ncw4495-designer-wallcoverings-los-angeles",
+ "handle": "eur-80448-ncw4495-designer-wallcoverings-los-angeles",
+ "title": "Arber Lattice Trellis 02 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508380723.jpg?v=1775524153",
+ "tags": [
+ "Arber Lattice Trellis",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "English Country",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Lavender",
+ "Lavender Gray",
+ "Living Room",
+ "NCW4495",
+ "NCW4495-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Purple",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Traditional",
+ "Trellis",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80448-ncw4495-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80426-ncw4491-designer-wallcoverings-los-angeles",
+ "handle": "eur-80426-ncw4491-designer-wallcoverings-los-angeles",
+ "title": "Almora 01 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507627059.jpg?v=1775524017",
+ "tags": [
+ "Almora",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "Dusty Rose",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Linen",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4491",
+ "NCW4491-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Rose Pink",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80426-ncw4491-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58137",
+ "handle": "jutely-vinyl-dwx-58137",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58137-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720483",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Sage Green",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58137"
+ },
+ {
+ "sku": "whisper-moss-scroll-texture-wallpaper-wallpaper-cca-82889",
+ "handle": "whisper-moss-scroll-texture-wallpaper-wallpaper-cca-82889",
+ "title": "Whisper Moss Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f24edb1175f4aca848a1421eaa54bc38.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-moss-scroll-texture-wallpaper-wallpaper-cca-82889"
+ },
+ {
+ "sku": "minetta-contemporary-durable-vinyl-xwj-52458",
+ "handle": "minetta-contemporary-durable-vinyl-xwj-52458",
+ "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ruche-pleat.jpg?v=1777480620",
+ "tags": [
+ "1970s Retro",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Mid-century Modern",
+ "Off-white",
+ "Retro",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52458"
+ },
+ {
+ "sku": "gesso-spacedust-romo",
+ "handle": "gesso-spacedust-romo",
+ "title": "Gesso Spacedust | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ZW106-04-gesso-wallcovering-spacedust_01.jpg?v=1776485298",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color gray",
+ "Commercial",
+ "Contemporary",
+ "Contemporary Wallcovering",
+ "Gesso",
+ "Glamorama Wallcovering",
+ "gray",
+ "Healthcare",
+ "light gray",
+ "Medium",
+ "Minimalist",
+ "Office",
+ "Retail",
+ "Romo",
+ "Silver Gray",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "ZW106/04"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gesso-spacedust-romo"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5036-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5036-jpg",
+ "title": "Sparta - Mineral | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5036.jpg?v=1762308622",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Mineral",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5036-jpg"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010369",
+ "handle": "hollywood-contemporary-coast-xhw-2010369",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010369-sample-clean.jpg?v=1774482605",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Modern",
+ "Mustard Yellow",
+ "Organic Modern",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010369"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010304",
+ "handle": "hollywood-getty-texture-xhw-2010304",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-troy.jpg?v=1777481041",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Getty Texture",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010304"
+ },
+ {
+ "sku": "camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847",
+ "handle": "camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847",
+ "title": "Camila Light Blue Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6c08383b1e77c931a2bcfe945ac409bb.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Light Blue",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-light-blue-modern-damask-wallpaper-wallpaper-cca-82847"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9497",
+ "handle": "chinese-fret-walls-cfw-9497",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9497-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708091",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Dark Brown",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9497"
+ },
+ {
+ "sku": "dwkk-gdfab45af",
+ "handle": "dwkk-gdfab45af",
+ "title": "Ikat Stripe Wp - Pale Blue Light Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_1115_8ecb25bf-81b5-4568-83e5-b24b24b83525.jpg?v=1753291841",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blithfield",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Light Blue",
+ "Luxury",
+ "Off-White",
+ "Pale Blue",
+ "Pattern",
+ "Pbfc-3531.1115.0",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-gdfab45af"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2505",
+ "handle": "faux-leaf-squares-fls-2505",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2505-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711872",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2505"
+ },
+ {
+ "sku": "noah-s-sky-clouds-wallpaper-cca-82983",
+ "handle": "noah-s-sky-clouds-wallpaper-cca-82983",
+ "title": "Noah'S Sky Clouds Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b7a37df7221d0525918eab694fd0279b.jpg?v=1572309964",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Animals",
+ "Architectural",
+ "bird",
+ "Birds",
+ "Clouds",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Fauna",
+ "Kids",
+ "LA Walls",
+ "Light Blue",
+ "Orange",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/noah-s-sky-clouds-wallpaper-cca-82983"
+ },
+ {
+ "sku": "ncw4392-01",
+ "handle": "ncw4392-01",
+ "title": "Ashdown Chelwood Aqua - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265688627.jpg?v=1775520737",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Light Green",
+ "NCW4392-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Single Dominant Background Color Word",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4392-01"
+ },
+ {
+ "sku": "glyph-by-innovations-usa-dwc-glyph-3",
+ "handle": "glyph-by-innovations-usa-dwc-glyph-3",
+ "title": "Glyph | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Glyph-3.jpg?v=1736199459",
+ "tags": [
+ "Architectural",
+ "ASTM E84",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glyph-3",
+ "Gray",
+ "Innovations USA",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 3.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glyph-by-innovations-usa-dwc-glyph-3"
+ },
+ {
+ "sku": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+ "handle": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+ "title": "Delilah Cream Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e9aad6c07fa0483b2b58f6b77ece20ee.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-cream-tulip-damask-wallpaper-cca-83240"
+ },
+ {
+ "sku": "floating-fibers-dwx-58178",
+ "handle": "floating-fibers-dwx-58178",
+ "title": "Floating Fibers | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58178-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775713922",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Elegant",
+ "Fiber",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Natural Look",
+ "Neutral",
+ "Sophisticated",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58178"
+ },
+ {
+ "sku": "castine-blue-tuscan-stripe-wallpaper-cca-83212",
+ "handle": "castine-blue-tuscan-stripe-wallpaper-cca-83212",
+ "title": "Castine Blue Tuscan Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/673a2be4549fccc187a7e0b5ae98cf22.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Marble",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/castine-blue-tuscan-stripe-wallpaper-cca-83212"
+ },
+ {
+ "sku": "meander-stripe-white-gold-wallcovering-versace",
+ "handle": "meander-stripe-white-gold-wallcovering-versace",
+ "title": "Meander Stripe White, Gold Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/96d443f0ef6432c9eaffe2c73f239c49.jpg?v=1773706322",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Geometric",
+ "Gold",
+ "Gold Wallcovering",
+ "Greek Key",
+ "Hallway",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Meander Stripe",
+ "Meander Stripe White",
+ "Paper",
+ "Paste the wall",
+ "Serene",
+ "Stripe",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/meander-stripe-white-gold-wallcovering-versace"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47145",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47145",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47145-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700894",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Khaki",
+ "Living Room",
+ "Minimalist",
+ "Pale Yellow",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47145"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47127",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47127",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47127-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700406",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47127"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58141",
+ "handle": "artisma-croco-vinyl-dwx-58141",
+ "title": "Artisma Croco Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58141-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775698947",
+ "tags": [
+ "54\" Width",
+ "Animal Skin",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crocodile",
+ "Faux Leather",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58141"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47941",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47941",
+ "title": "Maidstone - Linen Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-frosted_e29e5bfc-bb6f-4e5a-b4b8-aba621c700f9.jpg?v=1777481372",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Paper",
+ "Serene",
+ "Stone Look",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47941"
+ },
+ {
+ "sku": "butterflies-flowers-metallic-pink-wallcovering-versace",
+ "handle": "butterflies-flowers-metallic-pink-wallcovering-versace",
+ "title": "Butterflies & Flowers Metallic, Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0f23d24281d3015c2c8e13f3038cdc8d.jpg?v=1773706292",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Blush",
+ "Butterflies & Flowers",
+ "Butterflies & Flowers Metallic",
+ "Butterfly",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Italian",
+ "Ladybug",
+ "Light Pink",
+ "Living Room",
+ "Luxury",
+ "Maximalist",
+ "Multi",
+ "Olive Green",
+ "Orchid",
+ "Paper",
+ "Paste the wall",
+ "Pink",
+ "Pink Wallcovering",
+ "Playful",
+ "Purple",
+ "Red",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vine",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/butterflies-flowers-metallic-pink-wallcovering-versace"
+ },
+ {
+ "sku": "dwss-72722",
+ "handle": "dwss-72722",
+ "title": "Lillie blush sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/829-24_image1_f63c2b11-0910-41b9-ae9a-caf0f430a15d.jpg?v=1646105199",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Lillie",
+ "Lillie blush sample",
+ "Ogee",
+ "P829-24",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72722"
+ },
+ {
+ "sku": "asha-gold-lotus-damask-wallpaper-cca-83234",
+ "handle": "asha-gold-lotus-damask-wallpaper-cca-83234",
+ "title": "Asha Gold Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5d4a363f07f49d7ada8dda4ca37bee3d.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-gold-lotus-damask-wallpaper-cca-83234"
+ },
+ {
+ "sku": "varick-durable-walls-xwp-52607",
+ "handle": "varick-durable-walls-xwp-52607",
+ "title": "Varick Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52607-sample-varick-durable-hollywood-wallcoverings.jpg?v=1775735683",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/varick-durable-walls-xwp-52607"
+ },
+ {
+ "sku": "espana-cork-wallcovering-cork-801",
+ "handle": "espana-cork-wallcovering-cork-801",
+ "title": "Espana Cork | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cork-801-sample-espana-cork-hollywood-wallcoverings.jpg?v=1775711300",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork",
+ "Espana Cork",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Corn Honey",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Pink",
+ "Portugal Cork",
+ "Rose Gold",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 404.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/espana-cork-wallcovering-cork-801"
+ },
+ {
+ "sku": "anahi-light-pink-forest-fauna-wallpaper-cca-82985",
+ "handle": "anahi-light-pink-forest-fauna-wallpaper-cca-82985",
+ "title": "Anahi Light Pink Forest Fauna Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a4bc515949001796aa5e3fdc6fe8a04.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bird",
+ "Botanical",
+ "Commercial",
+ "Deer",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Flowers",
+ "LA Walls",
+ "Light Pink",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Rabbit",
+ "Series: Brewster",
+ "Strippable",
+ "Trees",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anahi-light-pink-forest-fauna-wallpaper-cca-82985"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73116",
+ "handle": "puna-drive-natural-grassweave-hlw-73116",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73116-sample-clean.jpg?v=1774483536",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dark Navy",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Puna Drive",
+ "Rustic",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73116"
+ },
+ {
+ "sku": "franko-faux-metallic-patina-ffm-44440",
+ "handle": "franko-faux-metallic-patina-ffm-44440",
+ "title": "Franko Faux Metallic Patina | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FFM-44440-sample-clean_5e9b389d-a9f9-437a-9e2c-e87067d287ad.jpg?v=1774479128",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Moody",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44440"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10269b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10269b-jpg",
+ "title": "EM10269B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10268r.jpg?v=1733873315",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM10269B",
+ "Gray",
+ "Light Gray",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10269b-jpg"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34138",
+ "handle": "fukaura-durable-vinyl-xrm-34138",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f91a3a6a9fd0d6f936e0f13df580affa_f02c4d3f-ff0e-4ac8-bb1a-baabb6d0c4cf.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fukaura-durable-vinyl-xrm-34138"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47093",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47093",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47093-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699486",
+ "tags": [
+ "Architectural",
+ "Ashbourne Type 2 Vinyl Wallcovering",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47093"
+ },
+ {
+ "sku": "palazzo-no-12-grey-taupe-wallcovering-versace-1",
+ "handle": "palazzo-no-12-grey-taupe-wallcovering-versace-1",
+ "title": "Palazzo No 12 Grey Taupe Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/98579495fdc808f6d4a1765f0d2bc514.jpg?v=1773710585",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Geometric",
+ "Gray",
+ "Grey Taupe",
+ "Hallway",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxury",
+ "Needs-Image",
+ "Off-white",
+ "Palazzo No 12",
+ "Palazzo No 12 Grey Taupe Wallcovering",
+ "Paste the wall",
+ "Serene",
+ "Sky Blue",
+ "Textured",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 352.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/palazzo-no-12-grey-taupe-wallcovering-versace-1"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72001",
+ "handle": "marseilles-durable-vinyl-dur-72001",
+ "title": "Marseilles Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72001-sample-clean.jpg?v=1774483903",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72001"
+ },
+ {
+ "sku": "tate-light-grey-animal-alphabet-wallpaper-cca-82981",
+ "handle": "tate-light-grey-animal-alphabet-wallpaper-cca-82981",
+ "title": "Tate Light Grey Animal Alphabet Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/13b3a311f9e0ee6371c51d2c690c1b4c.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Brown",
+ "Calf",
+ "Children",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dalmatian",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Frog",
+ "Green",
+ "Grey",
+ "Hamster",
+ "Kids",
+ "Koala",
+ "LA Walls",
+ "Light Grey",
+ "Multi",
+ "Owl",
+ "Panda",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Toucan",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tate-light-grey-animal-alphabet-wallpaper-cca-82981"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st11378m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st11378m-jpg",
+ "title": "ST11378M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11350m.jpg?v=1733872129",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st11378m-jpg"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53685",
+ "handle": "westville-contemporary-durable-walls-xje-53685",
+ "title": "Westville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53685-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736460",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53685"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73013",
+ "handle": "benedict-canyon-sisal-hlw-73013",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73013-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703741",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Tan",
+ "Teal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73013"
+ },
+ {
+ "sku": "dwjs-16520",
+ "handle": "dwjs-16520",
+ "title": "Robert Moses Charcoal Wallcovering | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SS2589.jpg?v=1740772738",
+ "tags": [
+ "Abstract",
+ "Animal Print",
+ "Animal/Insects",
+ "Animals/Insects",
+ "Architectural",
+ "Asian Inspired",
+ "Bird",
+ "Birds",
+ "Black",
+ "Botanical",
+ "Branches",
+ "Charcoal",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Floral",
+ "Flowers",
+ "Grasscloth",
+ "Imperial Blossoms Branch",
+ "Jeffrey Stevens",
+ "Light",
+ "Light Duty",
+ "Light Traffic",
+ "Non-Woven",
+ "Paper",
+ "Pattern",
+ "Prepasted",
+ "SS2589",
+ "Strippable",
+ "Traditional",
+ "United States",
+ "vintage",
+ "Wallcovering",
+ "Warm",
+ "Washable",
+ "White",
+ "Whites & Off-Whites"
+ ],
+ "max_price": 93.14,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwjs-16520"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dss112-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dss112-jpg",
+ "title": "Soft Spots - Spring | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dss112.jpg?v=1762292325",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Geometric",
+ "Light Gray",
+ "Light Yellow",
+ "Paper",
+ "Soft Spots",
+ "Spring",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellowgreen"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dss112-jpg"
+ },
+ {
+ "sku": "croydon-type-ii-vinyl-wallcovering-xkm-47482",
+ "handle": "croydon-type-ii-vinyl-wallcovering-xkm-47482",
+ "title": "Croydon Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkm-47482-sample-croydon-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775709561",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Croydon Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Rustic",
+ "Stucco",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/croydon-type-ii-vinyl-wallcovering-xkm-47482"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73069",
+ "handle": "reeds-drive-wild-grass-hlw-73069",
+ "title": "Reeds Drive - Wild Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73069-sample-clean.jpg?v=1774483325",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Teal",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73069"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5033-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5033-jpg",
+ "title": "Sparta - Antique White | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5033.jpg?v=1762308511",
+ "tags": [
+ "100% Vinyl",
+ "Antique White",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5033-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2507",
+ "handle": "faux-leaf-squares-fls-2507",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2507-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711878",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2507"
+ },
+ {
+ "sku": "colby-pink-love-spots-wallpaper-cca-83001",
+ "handle": "colby-pink-love-spots-wallpaper-cca-83001",
+ "title": "Colby Pink Love Spots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aafaf3e0e93f56dfbfe5ae941cad3790.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/colby-pink-love-spots-wallpaper-cca-83001"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52381",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52381",
+ "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/prelude-nocturne.jpg?v=1777480547",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52381"
+ },
+ {
+ "sku": "ncw4301-05",
+ "handle": "ncw4301-05",
+ "title": "Nina Campbell s - Chartreuse. Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261789235.jpg?v=1775520210",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Mid-Century Modern",
+ "NCW4301-05",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4301-05"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52377",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52377",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWH-52377-sample-clean.jpg?v=1774481264",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52377"
+ },
+ {
+ "sku": "dwc-1001658",
+ "handle": "dwc-1001658",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310832691.jpg?v=1775521409",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "NCW4356-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001658"
+ },
+ {
+ "sku": "macey-pink-wiggle-stripe-wallpaper-cca-83009",
+ "handle": "macey-pink-wiggle-stripe-wallpaper-cca-83009",
+ "title": "Macey Pink Wiggle Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/718f174ec8c12ce91bb6f6ad95e2593c.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/macey-pink-wiggle-stripe-wallpaper-cca-83009"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2516",
+ "handle": "faux-leaf-squares-fls-2516",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2516-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711909",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "disco",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2516"
+ },
+ {
+ "sku": "aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244",
+ "handle": "aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244",
+ "title": "Aubrey Celery Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5dca5883a73a0ac7f6c85ac177dca2c.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Medallion",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3294_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3294_8-jpg",
+ "title": "Marlu - Zinc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3294_8.jpg?v=1762301545",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Zinc"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3294_8-jpg"
+ },
+ {
+ "sku": "danby-bronze-faux-marble-wallpaper-wallpaper-cca-82903",
+ "handle": "danby-bronze-faux-marble-wallpaper-wallpaper-cca-82903",
+ "title": "Danby Bronze Faux Marble Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c4a732446d69f0b80f20d1aadbadb797.jpg?v=1572309961",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Danby Bronze Faux Marble Wallcovering Wallcovering",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Suede",
+ "Gold",
+ "LA Walls",
+ "Light Brown",
+ "Marble",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Suede",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "VINYL/FAUX LEATHER",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/danby-bronze-faux-marble-wallpaper-wallpaper-cca-82903"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58103",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58103",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58103-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715263",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Easy-clean",
+ "Embossed Texture",
+ "Emerald Green",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Green",
+ "High-traffic",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Brown",
+ "Luxe",
+ "Luxurious",
+ "Modern",
+ "Navy Blue",
+ "Neutral",
+ "Off-white",
+ "Restaurant",
+ "Tan",
+ "Taupe",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58103"
+ },
+ {
+ "sku": "dwkk-g54fcd96c",
+ "handle": "dwkk-g54fcd96c",
+ "title": "Ikat Stripe Wp - Azure Blue By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_155_62710527-d0d5-416b-b3b9-fa1550553877.jpg?v=1753291839",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Blue",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Light Blue",
+ "Luxury",
+ "Pattern",
+ "Pbfc-3531.155.0",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g54fcd96c"
+ },
+ {
+ "sku": "elaris-amazonia-romo",
+ "handle": "elaris-amazonia-romo",
+ "title": "Elaris Amazonia | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W970-03-elaris-wallcovering-amazonia_01.jpg?v=1776484903",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color beige",
+ "blue",
+ "brown",
+ "Commercial",
+ "Contemporary",
+ "Dusty Rose",
+ "Eclectic",
+ "Elaris",
+ "Embossed Wallcovering",
+ "green",
+ "Healthcare",
+ "Kabu Wallcoverings",
+ "Lobby",
+ "Medium",
+ "Non-woven",
+ "Office",
+ "Romo",
+ "Sage Green",
+ "Soft White",
+ "Stripe",
+ "Teal",
+ "Texture",
+ "Textured",
+ "W970/03",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/elaris-amazonia-romo"
+ },
+ {
+ "sku": "i-love-baroque-medusa-stripe-mauve-wallcovering-versace-2",
+ "handle": "i-love-baroque-medusa-stripe-mauve-wallcovering-versace-2",
+ "title": "I Love Baroque Medusa Stripe Mauve Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2329a841d3f94e6c2323aed9612df77f.webp?v=1773710682",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Glamorous",
+ "Gray",
+ "I Love Baroque Medusa Stripe",
+ "I Love Baroque Medusa Stripe Mauve Wallcovering",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Needs-Image",
+ "Paper",
+ "Paste the wall",
+ "Regencycore",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 434.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/i-love-baroque-medusa-stripe-mauve-wallcovering-versace-2"
+ },
+ {
+ "sku": "ncw4301-06",
+ "handle": "ncw4301-06",
+ "title": "Les Rêves Beau Rivage Blue/Indigo - Azure Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261822003.jpg?v=1775520217",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Cadet",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Geometric",
+ "Ink",
+ "Light Blue",
+ "NCW4301-06",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Periwinkle",
+ "Powder",
+ "Smoke",
+ "Steel",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4301-06"
+ },
+ {
+ "sku": "faux-wild-rice-fwr-9369",
+ "handle": "faux-wild-rice-fwr-9369",
+ "title": "Faux Wild Rice | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fwr-9369-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712084",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Faux Finish",
+ "Faux Wild Rice",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 31.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9369"
+ },
+ {
+ "sku": "kittery-aqua-affinity-stria-wallpaper-cca-83136",
+ "handle": "kittery-aqua-affinity-stria-wallpaper-cca-83136",
+ "title": "Kittery Aqua Affinity Stria Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d0c37898f0be42ade9f268bd3d141594_8ca5d095-b23b-406a-b8b1-0b086b3775cf.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kittery-aqua-affinity-stria-wallpaper-cca-83136"
+ },
+ {
+ "sku": "palm-beach-woodgrain-circles-wallcovering-phillipe-romano",
+ "handle": "palm-beach-woodgrain-circles-wallcovering-phillipe-romano",
+ "title": "Palm Beach - Woodgrain Circles Wallcovering | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Commercial Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/uVIBSKiYA0s3NLtMyG0GXyLxVHsqdoTRaoo5kmMw.jpg?v=1776190083",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fire Rated",
+ "Full Roll",
+ "Gray",
+ "Hollywood Vinyls Vol. 1",
+ "mfr:DWHV-100908",
+ "Minimalist",
+ "Off-white",
+ "Palm Beach",
+ "Phillipe Romano",
+ "Textured",
+ "Vinyl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/palm-beach-woodgrain-circles-wallcovering-phillipe-romano"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72449",
+ "handle": "via-del-marnie-durable-vinyl-dur-72449",
+ "title": "Via del Marnie Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72449-sample-clean.jpg?v=1774485620",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Pale Blue",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72449"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2888",
+ "handle": "peter-s-plastered-walls-ppw-2888",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2888-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729108",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2888"
+ },
+ {
+ "sku": "limoges-durable-vinyl-dur-72018",
+ "handle": "limoges-durable-vinyl-dur-72018",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72018-sample-clean.jpg?v=1774483995",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Limoges Durable Vinyl",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72018"
+ },
+ {
+ "sku": "ethan-sky-star-wallpaper-cca-83034",
+ "handle": "ethan-sky-star-wallpaper-cca-83034",
+ "title": "Ethan Sky Star Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c47fa5829c3b343f7b56c3e4556343d2.jpg?v=1572309966",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stars",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ethan-sky-star-wallpaper-cca-83034"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br014-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br014-jpg",
+ "title": "BR014 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br013.jpg?v=1733873684",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Bronze",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Brown",
+ "Industrial",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br014-jpg"
+ },
+ {
+ "sku": "vernon-durable-walls-xwr-52696",
+ "handle": "vernon-durable-walls-xwr-52696",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52696-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735778",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vernon Durable",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52696"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52389",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52389",
+ "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/prelude-largo.jpg?v=1777480561",
+ "tags": [
+ "74%-100% post-consumer (Eco-fi polyester)",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burlywood",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Polyester",
+ "remaining fiber is pre-consumer (polyester)",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52389"
+ },
+ {
+ "sku": "under-water-waves-xuw-44150",
+ "handle": "under-water-waves-xuw-44150",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44150-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735576",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44150"
+ },
+ {
+ "sku": "dwss-72668",
+ "handle": "dwss-72668",
+ "title": "Bianca cream sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/802-19_image1_a0002c87-7742-45d1-bad8-b62cdaef5fa5.jpg?v=1646105012",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bianca",
+ "Bianca cream sample",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "P802-19",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Scandinavian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72668"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2511",
+ "handle": "faux-leaf-squares-fls-2511",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2511-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711892",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Off-white",
+ "Rosy Brown",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2511"
+ },
+ {
+ "sku": "eur-80133-ncw4126-designer-wallcoverings-los-angeles",
+ "handle": "eur-80133-ncw4126-designer-wallcoverings-los-angeles",
+ "title": "Huntly 04 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/huntly_main_474ba95d-c2a8-4167-8d7a-78e3613e4e7a.webp?v=1738949867",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Geometric",
+ "Grandmillennial",
+ "Hallway",
+ "Huntly",
+ "Lattice",
+ "Living Room",
+ "NCW4126",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Gold",
+ "Paper",
+ "Pink",
+ "Rose Quartz",
+ "Sophisticated",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80133-ncw4126-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52101",
+ "handle": "canal-texture-durable-walls-xwd-52101",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-gray.jpg?v=1777480410",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver Grey",
+ "Slate Grey",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52101"
+ },
+ {
+ "sku": "narcisse-noir-wallpaper-xa7-66455",
+ "handle": "narcisse-noir-wallpaper-xa7-66455",
+ "title": "Narcisse Noir Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/50339da2b9117c69f9f9a5c29fcb9165.jpg?v=1775123183",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "calcium carbonate/pulp",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Narcisse Noir Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 49.3,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/narcisse-noir-wallpaper-xa7-66455"
+ },
+ {
+ "sku": "logan-brown-croc-texture-wallpaper-cca-82971",
+ "handle": "logan-brown-croc-texture-wallpaper-cca-82971",
+ "title": "Logan Brown Croc Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ff75b8e562a0596523ed9ac80f68edf.jpg?v=1572309963",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Crocodile",
+ "Discontinued",
+ "Embossed",
+ "Expanded Vinyl",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Masculine",
+ "Peelable",
+ "Prepasted",
+ "Series: Brewster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/logan-brown-croc-texture-wallpaper-cca-82971"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72274",
+ "handle": "essone-durable-vinyl-dur-72274",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72274-sample-clean.jpg?v=1774484976",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72274"
+ },
+ {
+ "sku": "puget-s-pineapple-scr-7917",
+ "handle": "puget-s-pineapple-scr-7917",
+ "title": "Puget's Pineapple",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/413a4fa45ba0ea2b5ce7ff2d7d0479a3.jpg?v=1572309084",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Gold",
+ "Midnightblue",
+ "Paper",
+ "Puget's Pineapple",
+ "Screen Print",
+ "Topaz Black",
+ "Tropical",
+ "vinyl",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "Yellow"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puget-s-pineapple-scr-7917"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9435-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9435-jpg",
+ "title": "Maya - Canvas | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9435.jpg?v=1762301976",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Canvas",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9435-jpg"
+ },
+ {
+ "sku": "kennebunk-lavender-textured-pinstripe-wallpaper-cca-83099",
+ "handle": "kennebunk-lavender-textured-pinstripe-wallpaper-cca-83099",
+ "title": "Kennebunk Lavender Textured Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ef173076d27e89824fdbe2e21fbef4f7.jpg?v=1572309968",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Kennebunk Lavender Textured Pinstripe Wallcovering",
+ "LA Walls",
+ "Lavender",
+ "Light Gray",
+ "Paper",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kennebunk-lavender-textured-pinstripe-wallpaper-cca-83099"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52313",
+ "handle": "marketfield-faux-durable-walls-xwh-52313",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-white_willow.jpg?v=1777480450",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Oatmeal",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52313"
+ },
+ {
+ "sku": "ornament-border-black-white-metallic-wallcovering-versace",
+ "handle": "ornament-border-black-white-metallic-wallcovering-versace",
+ "title": "Ornament Border Black White Metallic Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/802549e6a4359c3d4efa81dc1571182b.jpg?v=1773706362",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Arabesque",
+ "Architectural",
+ "Bedroom",
+ "Black White Metallic",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Dark Brown",
+ "Dark Gray",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Ornament Border",
+ "Ornament Border Black White Metallic Wallcovering",
+ "Paper",
+ "Paste the wall",
+ "Sophisticated",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ornament-border-black-white-metallic-wallcovering-versace"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72448",
+ "handle": "via-del-marnie-durable-vinyl-dur-72448",
+ "title": "Via del Marnie Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72448-sample-clean.jpg?v=1774485615",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72448"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5515-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5515-jpg",
+ "title": "Resham - Classic Blue | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5515.jpg?v=1762304318",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Classic Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Navy",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5515-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10208-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10208-jpg",
+ "title": "SP10208 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10207.jpg?v=1733872387",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10208-jpg"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2880",
+ "handle": "peter-s-plastered-walls-ppw-2880",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2880-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729082",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Mediterranean",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2880"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53059",
+ "handle": "boca-faux-finish-durable-walls-xww-53059",
+ "title": "Boca Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53059-sample-boca-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775705837",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Brushstroke",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Orchid",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53059"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-429",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-429",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/93bc5f27a0ec617a8312f573ec4ca106_a6df4578-7a11-4ef6-8031-abcd62a3a28a.jpg?v=1745458274",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-429"
+ },
+ {
+ "sku": "dwc-1001678",
+ "handle": "dwc-1001678",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693311914035.jpg?v=1775521541",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Green",
+ "Light Blue",
+ "Light Green",
+ "NCW4393-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001678"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5305-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5305-jpg",
+ "title": "Sparta - Sky | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5305.jpg?v=1762309242",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Gray",
+ "lattice",
+ "RAMPART®",
+ "Sparta",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5305-jpg"
+ },
+ {
+ "sku": "camila-pink-modern-damask-wallpaper-wallpaper-cca-82842",
+ "handle": "camila-pink-modern-damask-wallpaper-wallpaper-cca-82842",
+ "title": "Camila Pink Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/462ed819931121e9a07283a412e2be36.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Modern",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-pink-modern-damask-wallpaper-wallpaper-cca-82842"
+ },
+ {
+ "sku": "ncw4393-01",
+ "handle": "ncw4393-01",
+ "title": "Ashdown Benmore Emerald/Green/Ebony - Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265885235.jpg?v=1775520769",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Green",
+ "Leaf",
+ "NCW4393-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Tropical",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4393-01"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp9502-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp9502-jpg",
+ "title": "SP9502 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9501.jpg?v=1733872425",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp9502-jpg"
+ },
+ {
+ "sku": "delilah-ocean-tulip-damask-wallpaper-cca-83239",
+ "handle": "delilah-ocean-tulip-damask-wallpaper-cca-83239",
+ "title": "Delilah Ocean Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/299fabd7a2dc488741c49de85a852c5d.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-ocean-tulip-damask-wallpaper-cca-83239"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10209-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10209-jpg",
+ "title": "SP10209 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10208.jpg?v=1733872384",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10209-jpg"
+ },
+ {
+ "sku": "crushed-costoluto-vinyl-dwx-58008",
+ "handle": "crushed-costoluto-vinyl-dwx-58008",
+ "title": "Crushed Costoluto Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58008-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709692",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crushed",
+ "Gold",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58008"
+ },
+ {
+ "sku": "andrew-wheat-ships-wallpaper-cca-82931",
+ "handle": "andrew-wheat-ships-wallpaper-cca-82931",
+ "title": "Andrew Wheat Ships Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6fc1199deb7bb39c95bf2bfe824b302b.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Nautical",
+ "Paper",
+ "Prepasted",
+ "Sailboats",
+ "Scenic",
+ "Series: Brewster",
+ "Ships",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "Wheat",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/andrew-wheat-ships-wallpaper-cca-82931"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76625",
+ "handle": "rustic-glam-vinyl-gpr-76625",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76625-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731708",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "USFCID#vp885-039",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76625"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58160-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725567",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Metallic",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Neoclassical",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58160"
+ },
+ {
+ "sku": "dwkk-129769",
+ "handle": "dwkk-129769",
+ "title": "W3928 - 817 Black | Kravet Design | Ronald Redding Arts & Crafts | Botanical & Floral Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3928_817_fb3e22ce-ef33-4765-a717-2a47d6c3c7de.jpg?v=1753322313",
+ "tags": [
+ "27In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Botanical",
+ "Botanical & Floral",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Ronald Redding Arts & Crafts",
+ "Rose",
+ "Sage Green",
+ "Traditional",
+ "United States",
+ "W3928",
+ "W3928.817.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129769"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72414",
+ "handle": "rivo-dulce-durable-vinyl-dur-72414",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72414-sample-clean.jpg?v=1774485445",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Oatmeal",
+ "Rivo Dulce Durable Vinyl",
+ "Sand",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72414"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52446",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52446",
+ "title": "Rivington Rice Paper Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52446-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730759",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52446"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dprh-502-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dprh-502-jpg",
+ "title": "Perch - Smokey | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dprh-502.jpg?v=1762291563",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Geometric",
+ "Mylar",
+ "Perch",
+ "Smokey",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dprh-502-jpg"
+ },
+ {
+ "sku": "mason-light-grey-stripe-texture-wallpaper-cca-82923",
+ "handle": "mason-light-grey-stripe-texture-wallpaper-cca-82923",
+ "title": "Mason Light Grey Stripe Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/14602e03a16ebb6042459dce858d7b05.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Grey",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mason-light-grey-stripe-texture-wallpaper-cca-82923"
+ },
+ {
+ "sku": "ludlow-blue-paisley-wallpaper-cca-82915",
+ "handle": "ludlow-blue-paisley-wallpaper-cca-82915",
+ "title": "Ludlow Blue Paisley Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4ba15b366076591cb8059c1a8082d095.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Paisley",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ludlow-blue-paisley-wallpaper-cca-82915"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dpaw-461-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dpaw-461-jpg",
+ "title": "Pawpaw - Onyx | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DPAW-461_2021-02-18-235141.jpg?v=1762291413",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Geometric",
+ "Gray",
+ "Industrial",
+ "Pawpaw",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wood"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dpaw-461-jpg"
+ },
+ {
+ "sku": "eur-80201-ncw4185-designer-wallcoverings-los-angeles",
+ "handle": "eur-80201-ncw4185-designer-wallcoverings-los-angeles",
+ "title": "Mahayana 04 - Seafoam Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499533363.jpg?v=1775522726",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Lattice",
+ "Mahayana",
+ "Minimalist",
+ "NCW4185",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Pale Green",
+ "Paper",
+ "Seafoam Green",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80201-ncw4185-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rocheforte-wallpaper-xq6-68157",
+ "handle": "rocheforte-wallpaper-xq6-68157",
+ "title": "Rocheforte | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xq6-68157-sample-rocheforte-hollywood-wallcoverings.jpg?v=1775730807",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "Glamorous",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Medallion",
+ "non-woven",
+ "Off-white",
+ "Phillip Romano Commercial",
+ "Regencycore",
+ "Rocheforte",
+ "Scroll",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 218.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rocheforte-wallpaper-xq6-68157"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52674",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52674",
+ "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52674-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726364",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Leed Walls",
+ "Metallic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52674"
+ },
+ {
+ "sku": "norman-cream-medallion-wallpaper-cca-82953",
+ "handle": "norman-cream-medallion-wallpaper-cca-82953",
+ "title": "Norman Cream Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/42875a78b84399ba22c97b09537d6421.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Takumi",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-cream-medallion-wallpaper-cca-82953"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5077-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5077-jpg",
+ "title": "Ashlar - Archway | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5077.jpg?v=1762286827",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Archway",
+ "Ashlar",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5077-jpg"
+ },
+ {
+ "sku": "whisper-light-blue-scroll-texture-wallpaper-wallpaper-cca-82897",
+ "handle": "whisper-light-blue-scroll-texture-wallpaper-wallpaper-cca-82897",
+ "title": "Whisper Light Blue Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c7d18a6a42f3a2e1d101d8e0f41d8610.jpg?v=1572309961",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-light-blue-scroll-texture-wallpaper-wallpaper-cca-82897"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201085",
+ "handle": "hollywood-skyline-xhw-201085",
+ "title": "Hollywood Skyline | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bentley-bespoke.jpg?v=1777480950",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Brown",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 62.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201085"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+ "title": "Maidstone - Sand Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-grey_star.jpg?v=1777480137",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Silver",
+ "Stone Look",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47942"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53614",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53614",
+ "title": "Lovela Faux Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-painted_desert.jpg?v=1777480902",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Rustic",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53614"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73083",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73083",
+ "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73083-sample-clean.jpg?v=1774483399",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark",
+ "Dark Brown",
+ "Dining Room",
+ "Faux Wood",
+ "Floral",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Modern",
+ "Moody",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Umber",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73083"
+ },
+ {
+ "sku": "rob-s-folk-art-animals-scr-8167",
+ "handle": "rob-s-folk-art-animals-scr-8167",
+ "title": "Rob's Folk Art Animals",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4186a2155ae652943b7135fc03c48c93_6e6048d2-5b17-4243-bb61-920ade9f3cd2.jpg?v=1572309109",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bird",
+ "Botanical",
+ "Cat",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Dog",
+ "Green on White",
+ "Laurel",
+ "Lichen",
+ "Light Green",
+ "Moss",
+ "Paper",
+ "Pear",
+ "Rob's Folk Art Animals",
+ "Screen Print",
+ "Thyme",
+ "Traditional",
+ "vinyl",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White",
+ "Willow"
+ ],
+ "max_price": 193.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rob-s-folk-art-animals-scr-8167"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10215-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10215-jpg",
+ "title": "SP10215 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10214.jpg?v=1733872374",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10215-jpg"
+ },
+ {
+ "sku": "animal-alphabet-large-mural-by-retro-walls-rtr-37200",
+ "handle": "animal-alphabet-large-mural-by-retro-walls-rtr-37200",
+ "title": "Animal Alphabet Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/516f3b6711d92e1f8127425c9fb7a585.jpg?v=1572309701",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Ant",
+ "Architectural",
+ "Bear",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cow",
+ "Deer",
+ "Elephant",
+ "Fauna",
+ "Frog",
+ "Geometric",
+ "Giraffe",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Horse",
+ "Iguana",
+ "Jaguar",
+ "Kangaroo",
+ "Lion",
+ "Monkey",
+ "Mural",
+ "Numbat",
+ "Ostrich",
+ "Paper",
+ "Pig",
+ "Quail",
+ "Rabbit",
+ "Sheep",
+ "Traditional Whimsy",
+ "Turtle",
+ "Unicorn",
+ "Vulture",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Wolf"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/animal-alphabet-large-mural-by-retro-walls-rtr-37200"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5078-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5078-jpg",
+ "title": "Acute - Tungsten | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5078.jpg?v=1762283588",
+ "tags": [
+ "100% Vinyl",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Geometric",
+ "Paper",
+ "Tungsten",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5078-jpg"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53479",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53479",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53479-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715928",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Oatmeal",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53479"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47739",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47739",
+ "title": "Harrison Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlg-47739-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716501",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47739"
+ },
+ {
+ "sku": "ettie-lavender-circus-damask-wallpaper-cca-83006",
+ "handle": "ettie-lavender-circus-damask-wallpaper-cca-83006",
+ "title": "Ettie Lavender Circus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f072d0e01c69a6601a3e7335cd073857.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ettie-lavender-circus-damask-wallpaper-cca-83006"
+ },
+ {
+ "sku": "dwc-1001587",
+ "handle": "dwc-1001587",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693306671155.jpg?v=1775520962",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "NCW4301-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Peach",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001587"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5046-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5046-jpg",
+ "title": "Sparta - Blue Seas | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5046.jpg?v=1762308986",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Blue Seas",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "RAMPART®",
+ "Sparta",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5046-jpg"
+ },
+ {
+ "sku": "brooker-contemporary-durable-walls-xww-53003",
+ "handle": "brooker-contemporary-durable-walls-xww-53003",
+ "title": "Brooker Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gramercy-club_room.jpg?v=1777480757",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brooker-contemporary-durable-walls-xww-53003"
+ },
+ {
+ "sku": "spencer-paintable-supaglypta-wallpaper-gga-82652",
+ "handle": "spencer-paintable-supaglypta-wallpaper-gga-82652",
+ "title": "Spencer Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7f5da467c7415dd1cf9614c61e0de49b.jpg?v=1750790456",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Embossed",
+ "Floral",
+ "Flowers",
+ "Geometric",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Neutral",
+ "Off-white",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Renovation",
+ "Residential",
+ "Series: Brewster",
+ "Spencer Paintable Supaglypta",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/spencer-paintable-supaglypta-wallpaper-gga-82652"
+ },
+ {
+ "sku": "gabriella-purple-ogge-busy-toss-wallpaper-wallpaper-cca-82865",
+ "handle": "gabriella-purple-ogge-busy-toss-wallpaper-wallpaper-cca-82865",
+ "title": "Gabriella Purple Ogge Busy Toss Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8635df56ece2d5742d4ee1247b5cb1a7.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leopard",
+ "Modern",
+ "Ogee",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gabriella-purple-ogge-busy-toss-wallpaper-wallpaper-cca-82865"
+ },
+ {
+ "sku": "kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873",
+ "handle": "kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873",
+ "title": "Kenley Peach Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16aba4aa128b036e99224eaf17806ab7.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Peach",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47119",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47119",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47119-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700182",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47119"
+ },
+ {
+ "sku": "dwc-1001659",
+ "handle": "dwc-1001659",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310865459.jpg?v=1775521416",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Light Gray",
+ "NCW4356-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001659"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53279",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53279",
+ "title": "Daytona Faux Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWC-53279-sample-clean.jpg?v=1774481965",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53279"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44053",
+ "handle": "carved-squares-wallcovering-xcs-44053",
+ "title": "Jutely Woven Walls - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44053-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707232",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Fawn",
+ "geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Orange",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44053"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10343-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10343-jpg",
+ "title": "Ambient Design - AD10343 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10342.jpg?v=1733874101",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10343-jpg"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58041",
+ "handle": "sunset-stone-vinyl-dwx-58041",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58041-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735115",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Living Room",
+ "Natural Look",
+ "Sand",
+ "Stone",
+ "Stucco",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58041"
+ },
+ {
+ "sku": "dwc-1001681",
+ "handle": "dwc-1001681",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693312045107.jpg?v=1775521561",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "NCW4393-06",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Peach",
+ "Peachpuff",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001681"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73163",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73163",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73163-sample-clean.jpg?v=1774483821",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Rustic",
+ "Stone Grey",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Whittier Way",
+ "Wood Grain"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73163"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73170",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73170",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73170-sample-clean.jpg?v=1774483865",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Sage Green",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73170"
+ },
+ {
+ "sku": "emerson-aqua-paisley-stripe-wallpaper-cca-82909",
+ "handle": "emerson-aqua-paisley-stripe-wallpaper-cca-82909",
+ "title": "Emerson Aqua Paisley Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/667d04c7067bd2ad9fe25619b8f3c3a3.jpg?v=1572309961",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Global",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Paisley",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emerson-aqua-paisley-stripe-wallpaper-cca-82909"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72080",
+ "handle": "la-roche-durable-vinyl-dur-72080",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72080-sample-clean.jpg?v=1774484320",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72080"
+ },
+ {
+ "sku": "dwc-1001676",
+ "handle": "dwc-1001676",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693311717427.jpg?v=1775521528",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dark Gray",
+ "Dark Green",
+ "Green",
+ "Light Green",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001676"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52079",
+ "handle": "canal-damask-durable-vinyl-xwa-52079",
+ "title": "Canal Damask Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-52079-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707057",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Damask",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Luxe",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52079"
+ },
+ {
+ "sku": "ncw4308-04",
+ "handle": "ncw4308-04",
+ "title": "Les Rêves Portavo Coral/Ivory - Orange Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263198259.jpg?v=1775520432",
+ "tags": [
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Geometric",
+ "Metallic",
+ "NCW4308-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Silver",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4308-04"
+ },
+ {
+ "sku": "wells-denim-candy-stripe-wallpaper-cca-83226",
+ "handle": "wells-denim-candy-stripe-wallpaper-cca-83226",
+ "title": "Wells Denim Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8c01d4dd9df15fb67c0218204b63c00d.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-denim-candy-stripe-wallpaper-cca-83226"
+ },
+ {
+ "sku": "eur-80160-ncw4154-designer-wallcoverings-los-angeles",
+ "handle": "eur-80160-ncw4154-designer-wallcoverings-los-angeles",
+ "title": "Mey Fern 02 - Taupe Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497796659.jpg?v=1775522482",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Leaf",
+ "Living Room",
+ "Mey Fern",
+ "NCW4154",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Palm",
+ "Paper",
+ "ROSSLYN",
+ "Serene",
+ "Taupe",
+ "Tropical",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80160-ncw4154-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127834",
+ "handle": "dwkk-127834",
+ "title": "Waterlily Wp - Dove Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0137_02_CAC_559b8006-da66-45f8-aa65-8a7a6a379a79.jpg?v=1753321562",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Blush Pink",
+ "Botanical",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Crimson",
+ "Dining Room",
+ "display_variant",
+ "Dove",
+ "Eclectic",
+ "Floral",
+ "Gold",
+ "Green",
+ "Leaves",
+ "Light Grey",
+ "Living Room",
+ "Lotus Flowers",
+ "Navy Blue",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Paper",
+ "Pink",
+ "Print",
+ "Red",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Tropical",
+ "United Kingdom",
+ "W0137/02.Cac.0",
+ "Wallcovering",
+ "Waterlily Wp",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127834"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10200-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10200-jpg",
+ "title": "SP10200 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9515.jpg?v=1733872404",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10200-jpg"
+ },
+ {
+ "sku": "eur-70393-designer-wallcoverings-los-angeles",
+ "handle": "eur-70393-designer-wallcoverings-los-angeles",
+ "title": "Crocodilo Crocodile | Osborne & Little Europe",
+ "vendor": "Osborne & Little",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5041_e19433e3-481a-4181-97d7-0f5b660df083.webp?v=1738614525",
+ "tags": [
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Crocodile",
+ "Crocodilo Crocodile",
+ "Embossed",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Luxe",
+ "Luxury",
+ "METROPOLIS VINYLS 2",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Osborne & Little",
+ "Osborne & Little Europe",
+ "Sophisticated",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "W6337",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-70393-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80418-ncw4396-designer-wallcoverings-los-angeles",
+ "handle": "eur-80418-ncw4396-designer-wallcoverings-los-angeles",
+ "title": "Brideshead Scroll Damask 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507332147.jpg?v=1775523962",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Beige",
+ "Brideshead Scroll Damask",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Ivory",
+ "Living Room",
+ "NCW4396",
+ "NCW4396-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Beige",
+ "Paper",
+ "Regencycore",
+ "Scroll",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80418-ncw4396-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48128",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48128",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48128-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728106",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48128"
+ },
+ {
+ "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47701",
+ "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47701",
+ "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47701-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712545",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ferryhill Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47701"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52682",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52682",
+ "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52682-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726398",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52682"
+ },
+ {
+ "sku": "gibby-peach-leafy-scroll-wallpaper-wallpaper-cca-82851",
+ "handle": "gibby-peach-leafy-scroll-wallpaper-wallpaper-cca-82851",
+ "title": "Gibby Peach Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/15d47bbd9ed51ccb48c149dab69627d9.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leaf",
+ "Peach",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gibby-peach-leafy-scroll-wallpaper-wallpaper-cca-82851"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44045",
+ "handle": "carved-squares-wallcovering-xcs-44045",
+ "title": "Carved Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44045-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707210",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Carved Squares",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Estimated Type: Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Non-woven",
+ "Organic Modern",
+ "Pale Champagne",
+ "Serene",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44045"
+ },
+ {
+ "sku": "richard-paintable-supaglypta-wallpaper-gga-82650",
+ "handle": "richard-paintable-supaglypta-wallpaper-gga-82650",
+ "title": "Richard Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/274d2db760adaffe84bf607ff4b4dfd0.jpg?v=1750790458",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Classic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Disguise Imperfections",
+ "Embossed",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Off-white",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Renovation",
+ "Residential",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/richard-paintable-supaglypta-wallpaper-gga-82650"
+ },
+ {
+ "sku": "casco-bay-burgundy-ombre-pinstripe-wallpaper-cca-83111",
+ "handle": "casco-bay-burgundy-ombre-pinstripe-wallpaper-cca-83111",
+ "title": "Casco Bay Burgundy Ombre Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e615819e87e505c1ef194dab950200e6.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/casco-bay-burgundy-ombre-pinstripe-wallpaper-cca-83111"
+ },
+ {
+ "sku": "eur-80265-ncw4271-designer-wallcoverings-los-angeles",
+ "handle": "eur-80265-ncw4271-designer-wallcoverings-los-angeles",
+ "title": "Vignola 01 - Cool Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501630515.jpg?v=1775523053",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Grey",
+ "Living Room",
+ "NCW4271",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Ogee",
+ "Pale Grey",
+ "Paper",
+ "Quatrefoil",
+ "Serene",
+ "Silver Grey",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vignola",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80265-ncw4271-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53390",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53390",
+ "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-provence_c3266350-3e0d-4733-82be-3279a02d8cb4.jpg?v=1777481527",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Tomato",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53390"
+ },
+ {
+ "sku": "saint-brittany-durable-vinyl-dur-72235",
+ "handle": "saint-brittany-durable-vinyl-dur-72235",
+ "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72235-sample-clean.jpg?v=1774484855",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72235"
+ },
+ {
+ "sku": "eur-80189-ncw4183-designer-wallcoverings-los-angeles",
+ "handle": "eur-80189-ncw4183-designer-wallcoverings-los-angeles",
+ "title": "Pamir 03 - Neutral Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498976307.jpg?v=1775522655",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Grey",
+ "Light Grey",
+ "Living Room",
+ "NCW4183",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paisley",
+ "Pale Grey",
+ "Pamir",
+ "Paper",
+ "Serene",
+ "Soft Grey",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80189-ncw4183-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52577",
+ "handle": "le-madison-durable-walls-xwk-52577",
+ "title": "Le Madison Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWK-52577-sample-clean.jpg?v=1774481402",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brick Red",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Red",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52577"
+ },
+ {
+ "sku": "regal-lattice-screen-printed-wallpaper-tre-12906",
+ "handle": "regal-lattice-screen-printed-wallpaper-tre-12906",
+ "title": "Regal Lattice - Screen Printed Wallcovering",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/765a7692adba432658470a08ef9cbcdf.jpg?v=1572309178",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Gray",
+ "Lattice",
+ "Metallic",
+ "Modern",
+ "Paper",
+ "Screen Print",
+ "Silver",
+ "Suede",
+ "Textured",
+ "Trellis",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 99.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/regal-lattice-screen-printed-wallpaper-tre-12906"
+ },
+ {
+ "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47686",
+ "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47686",
+ "title": "Ferndown Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47686-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712253",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive",
+ "Ferndown Type 2 Vinyl Wallcovering",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47686"
+ },
+ {
+ "sku": "contempo-diamond-vinyl-dwx-58015",
+ "handle": "contempo-diamond-vinyl-dwx-58015",
+ "title": "Contempo Diamond Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58015-sample-contempo-diamond-vinyl-hollywood-wallcoverings.jpg?v=1775709045",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Diamond",
+ "Geometric",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Modern",
+ "Neutral",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/contempo-diamond-vinyl-dwx-58015"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73058",
+ "handle": "coldwater-hills-panels-hlw-73058",
+ "title": "Coldwater Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73058-sample-clean.jpg?v=1774483258",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73058"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48181",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48181",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48181-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728712",
+ "tags": [
+ "Architectural",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Dusty Rose",
+ "Grandmillennial",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Ivory",
+ "Living Room",
+ "Luxe",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Pink",
+ "Red",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48181"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010191",
+ "handle": "hollywood-tailored-xhw-2010191",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-esplande.jpg?v=1777480991",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Khaki",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Khaki",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Healthcare",
+ "Hollywood Tailored",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Khaki",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Pale Yellow",
+ "Sage",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010191"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72005",
+ "handle": "marseilles-durable-vinyl-dur-72005",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72005-sample-clean.jpg?v=1774483926",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Green",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Deep Olive Green",
+ "Durable Type 2 Vinyl",
+ "Forest Green",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Organic",
+ "Organic Modern",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72005"
+ },
+ {
+ "sku": "corkytown-real-cork-wallpaper-cork-98610",
+ "handle": "corkytown-real-cork-wallpaper-cork-98610",
+ "title": "Corkytown Real Cork | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a135f5e4456c1f08b6f2b28eef0ea840.jpg?v=1775081465",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Brunette",
+ "Clay",
+ "Coffee",
+ "Commercial",
+ "Copper",
+ "Cork",
+ "Entryway",
+ "Farmhouse",
+ "Industrial",
+ "Living Room",
+ "Natural",
+ "Natural Deep Cork",
+ "Naturals",
+ "Office",
+ "Orange",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Solid/Textural",
+ "Terracotta",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Walnut",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 29.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corkytown-real-cork-wallpaper-cork-98610"
+ },
+ {
+ "sku": "indian-shores-faux-effect-durable-walls-xwo-53642",
+ "handle": "indian-shores-faux-effect-durable-walls-xwo-53642",
+ "title": "Indian Shores Faux Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53642-sample-indian-shores-faux-effect-durable-hollywood-wallcoverings.jpg?v=1775719535",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Pale Grey",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/indian-shores-faux-effect-durable-walls-xwo-53642"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10284r-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10284r-jpg",
+ "title": "EM10284R | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10283r.jpg?v=1733873284",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM10284R",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10284r-jpg"
+ },
+ {
+ "sku": "dwh-67101",
+ "handle": "dwh-67101",
+ "title": "Saint James Growing Damask Rectangular Table Cloth on Lilly Natural Cotton",
+ "vendor": "DW Home",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5151893-william-morris-honeysuckle-medium-by-peacoquettedesigns_4-11_04bf278a-49ba-4f0d-a206-6fe01b324209.jpg?v=1630524932",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Arts & Crafts",
+ "Beige",
+ "Botanical",
+ "Classic",
+ "Commercial",
+ "display_variant",
+ "DW Home",
+ "Fabric",
+ "Floral",
+ "Gray",
+ "Green",
+ "Light Gray",
+ "Original",
+ "Rectangular Table Cloth on Lilly Natural Cotton",
+ "Saint James Growing Damask",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 371.8,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwh-67101"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5038-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5038-jpg",
+ "title": "Sparta Plus - Classic White | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5038.jpg?v=1762308694",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Classic White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "RAMPART®",
+ "Sparta Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5038-jpg"
+ },
+ {
+ "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48382",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48382",
+ "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpy-48382-sample-skelton-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775734073",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Serene",
+ "Skelton Type 2 Vinyl Wallcovering",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48382"
+ },
+ {
+ "sku": "eur-80185-ncw4182-designer-wallcoverings-los-angeles",
+ "handle": "eur-80185-ncw4182-designer-wallcoverings-los-angeles",
+ "title": "Penglai 03 - Pale Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498812467.jpg?v=1775522630",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "bird",
+ "Birds",
+ "Botanical",
+ "Brown",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cornflower Blue",
+ "Cottagecore",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Mustard Yellow",
+ "NCW4182",
+ "NCW4182/03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Pale Sky Blue",
+ "Paper",
+ "Penglai",
+ "Red",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80185-ncw4182-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "versace-jungle-colorful-gold-wallcovering-versace",
+ "handle": "versace-jungle-colorful-gold-wallcovering-versace",
+ "title": "Versace Jungle Colorful Gold Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/847ff1db3ca344df26d91f11e0cb29ab.jpg?v=1773706426",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Colorful Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Glamorous",
+ "Gold",
+ "Golden Yellow",
+ "Green",
+ "Italian",
+ "Leaf",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Multi",
+ "Palm",
+ "Paste the wall",
+ "Pink",
+ "Rococo",
+ "Rose Pink",
+ "Seafoam Green",
+ "Sky Blue",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Turquoise",
+ "Versace",
+ "Versace Home",
+ "Versace Jungle",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-jungle-colorful-gold-wallcovering-versace"
+ },
+ {
+ "sku": "eur-80161-ncw4154-designer-wallcoverings-los-angeles",
+ "handle": "eur-80161-ncw4154-designer-wallcoverings-los-angeles",
+ "title": "Mey Fern 03 - Celadon Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497862195.jpg?v=1775522489",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Green",
+ "Leaf",
+ "Living Room",
+ "Mey Fern",
+ "NCW4154",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Pale Green",
+ "Palm",
+ "Paper",
+ "ROSSLYN",
+ "Sage Green",
+ "Serene",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80161-ncw4154-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4353-02",
+ "handle": "ncw4353-02",
+ "title": "Les Indiennes Colbert French Grey - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264541747.jpg?v=1775520556",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Multi",
+ "NCW4353-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Wallcovering",
+ "Wallcoverings",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4353-02"
+ },
+ {
+ "sku": "versace-plain-shimmer-pink-wallcovering-versace-1",
+ "handle": "versace-plain-shimmer-pink-wallcovering-versace-1",
+ "title": "Plain Shimmer Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cdd3a4f35efd781a1146979cbbcbcf95_6ad50bb0-bc76-4b70-95fc-416f94e485a1.jpg?v=1773706491",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Italian",
+ "Light Coral",
+ "Living Room",
+ "Luxury",
+ "Office",
+ "Paper",
+ "Plain Shimmer Pink Wallcovering",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Shimmer",
+ "Versace VI",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-shimmer-pink-wallcovering-versace-1"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47317",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47317",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47317-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704527",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47317"
+ },
+ {
+ "sku": "eur-80305-ncw4301-designer-wallcoverings-los-angeles",
+ "handle": "eur-80305-ncw4301-designer-wallcoverings-los-angeles",
+ "title": "Beau Rivage 02 - Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513503006771.jpg?v=1775523268",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beau Rivage",
+ "Bedroom",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dusty Rose",
+ "Geometric",
+ "Gray",
+ "Hallway",
+ "LES REVES",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "NCW4301",
+ "NCW4301-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80305-ncw4301-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9507-jpg",
+ "title": "ST9507 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9506.jpg?v=1733872249",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Green",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9507-jpg"
+ },
+ {
+ "sku": "dwc-1001638",
+ "handle": "dwc-1001638",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309947955.jpg?v=1775521280",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "NCW4352-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Non-woven",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001638"
+ },
+ {
+ "sku": "moroccan-grey-horizontal-tight-emboss-wbs-39604",
+ "handle": "moroccan-grey-horizontal-tight-emboss-wbs-39604",
+ "title": "Moroccan Grey Horizontal Tight Emboss | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39604-sample-moroccan-grey-horizontal-tight-emboss-hollywood-wallcoverings.jpg?v=1775726619",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bricks and Stones",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Silver",
+ "Slate Grey",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-grey-horizontal-tight-emboss-wbs-39604"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72270",
+ "handle": "essone-durable-vinyl-dur-72270",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72270-sample-clean.jpg?v=1774484956",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72270"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10238-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10238-jpg",
+ "title": "SM10238 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10237.jpg?v=1733872484",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10238-jpg"
+ },
+ {
+ "sku": "ncw4396-04",
+ "handle": "ncw4396-04",
+ "title": "Nina Campbell Wallcoverings - Ecru Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497267097651.jpg?v=1775520905",
+ "tags": [
+ "Arabesque",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "NCW4396-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4396-04"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_krn-5611_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_krn-5611_8-jpg",
+ "title": "Keren - Maize | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5510.webp?v=1762299016",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Keren",
+ "Light Gray",
+ "Maize",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_krn-5611_8-jpg"
+ },
+ {
+ "sku": "ncw4356-04",
+ "handle": "ncw4356-04",
+ "title": "Nina Campbell Wallcoverings - Natural Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265164339.jpg?v=1775520663",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fauna",
+ "Light Blue",
+ "NCW4356-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4356-04"
+ },
+ {
+ "sku": "vanessa-light-blue-henna-brocade-wallpaper-wallpaper-cca-82838",
+ "handle": "vanessa-light-blue-henna-brocade-wallpaper-wallpaper-cca-82838",
+ "title": "Vanessa Light Blue Henna Brocade Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1f39a4b6ad79ff0d6cf00f874a0691e9.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Light Blue",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanessa-light-blue-henna-brocade-wallpaper-wallpaper-cca-82838"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47104",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47104",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47104-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699774",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Russet",
+ "Rustic",
+ "Solid",
+ "Suede",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47104"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dcpa-450-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dcpa-450-jpg",
+ "title": "Catalpa - Redwood | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DCPA-450.jpg?v=1762290936",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Catalpa",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Paper",
+ "Redwood",
+ "Rustic",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dcpa-450-jpg"
+ },
+ {
+ "sku": "moroccan-gold-wash-wbs-39664",
+ "handle": "moroccan-gold-wash-wbs-39664",
+ "title": "Moroccan Gold Wash | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39664-sample-moroccan-gold-wash-hollywood-wallcoverings.jpg?v=1775726592",
+ "tags": [
+ "Antique Gold",
+ "Architectural",
+ "Bedroom",
+ "Bricks and Stones",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Dark Gold",
+ "Embossed Texture",
+ "Faux",
+ "Glamorous",
+ "Gold",
+ "Golden Brown",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Solid",
+ "Suede",
+ "textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Yellow"
+ ],
+ "max_price": 77.65,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-gold-wash-wbs-39664"
+ },
+ {
+ "sku": "xara-s-retro-geometric-scr-8054",
+ "handle": "xara-s-retro-geometric-scr-8054",
+ "title": "Xara's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2f3bdf1c2a278d2beb9128124e8679d1.jpg?v=1572309105",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Green Blue",
+ "Light Steelblue",
+ "Limegreen",
+ "Paper",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "Xara's Retro Geometric"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/xara-s-retro-geometric-scr-8054"
+ },
+ {
+ "sku": "captiva-aqua-floral-toss-wallpaper-cca-83043",
+ "handle": "captiva-aqua-floral-toss-wallpaper-cca-83043",
+ "title": "Captiva Aqua Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dd5a13e38f10a5abd5e0e23cf1d6fad0.jpg?v=1572309966",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Botanical",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-aqua-floral-toss-wallpaper-cca-83043"
+ },
+ {
+ "sku": "dwkk-127810",
+ "handle": "dwkk-127810",
+ "title": "Golden Parrot Wp - Ivory Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0130_02_CAC_70fda95b-a855-42cb-855f-b5135ffc0653.jpg?v=1753321603",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Butterfly",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Parrot Wp",
+ "Grandmillennial",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Novelty",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Parrot",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Print",
+ "Red",
+ "Rose Pink",
+ "Sage Green",
+ "Sky Blue",
+ "Sophisticated",
+ "Traditional",
+ "United Kingdom",
+ "W0130/02.Cac.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127810"
+ },
+ {
+ "sku": "natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822",
+ "handle": "natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822",
+ "title": "Natalia Purple Curly Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b4fbd757fe54a9cd5ca21316c7591e1b.jpg?v=1572309955",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Pink",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822"
+ },
+ {
+ "sku": "eur-80256-ncw4207-designer-wallcoverings-los-angeles",
+ "handle": "eur-80256-ncw4207-designer-wallcoverings-los-angeles",
+ "title": "Fontibre Fontibre Blue/Green - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501204531.jpg?v=1775522996",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fontibre",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "Living Room",
+ "Navy Blue",
+ "NCW4207",
+ "NCW4207-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Sky Blue",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80256-ncw4207-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "mediterranean-texture-red-wallcovering-versace",
+ "handle": "mediterranean-texture-red-wallcovering-versace",
+ "title": "Mediterranean Texture Red Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/53086f4f5bab1216d70527e04b8f1b93.jpg?v=1773706326",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Mediterranean Texture",
+ "Mediterranean Texture Red Wallcovering",
+ "Off-white",
+ "Paste the wall",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mediterranean-texture-red-wallcovering-versace"
+ },
+ {
+ "sku": "komo-diamond-bamboo-wallpaper-trf-56824",
+ "handle": "komo-diamond-bamboo-wallpaper-trf-56824",
+ "title": "Komo Diamond Bamboo | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b6dbc5bfb9ee9ce55a73ce425eefbdbb.jpg?v=1750789757",
+ "tags": [
+ "arbor",
+ "Architectural",
+ "Asian",
+ "bamboo",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "dark grey",
+ "diamond",
+ "Discontinued",
+ "frame work",
+ "Geometric",
+ "grille",
+ "Jeffrey Stevens",
+ "lattice",
+ "light aqua",
+ "Light Blue",
+ "Light Blue-Gray",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "Off-White",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "screen",
+ "Series: York",
+ "Textured",
+ "treillage",
+ "trellis",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/komo-diamond-bamboo-wallpaper-trf-56824"
+ },
+ {
+ "sku": "norman-aqua-medallion-wallpaper-cca-82952",
+ "handle": "norman-aqua-medallion-wallpaper-cca-82952",
+ "title": "Norman Aqua Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/22e04683791b6dc154d192c7a042faf0.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Paper",
+ "Prepasted",
+ "Sage",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-aqua-medallion-wallpaper-cca-82952"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..aa57557
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+ "name": "restaurantwallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "restaurantwallpaper",
+ "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..336ab91
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "restaurantwallpaper",
+ "version": "0.1.0",
+ "description": "RESTAURANT 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..12bf384
--- /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">R</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..d36c56d
--- /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>RESTAURANT WALLPAPER — The dining room</title>
+<meta name="description" content="RESTAURANT WALLPAPER · The dining room. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#1a0a0a">
+<link rel="canonical" href="https://restaurantwallpaper.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: #1a0a0a;
+ --paper: #ffffff;
+ --muted: #a8907a;
+ --line: rgba(255,255,255,0.10);
+ --accent: #d48a4a;
+ --bg-soft: #261010;
+ --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('rest_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">F&B Spec</div>
+ <div class="center-mark">RESTAURANT WALLPAPER<span class="tm">.</span><span class="sub">The dining room</span></div>
+ <div class="meta-line">Restaurant · Bar · Mural · Class A<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">Restaurant · Bar · Mural · Class A</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">RESTAURANT WALLPAPER</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated restaurant · bar · mural · class a 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:'Playfair Display',Georgia,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">restaurantwallpaper</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 200" style="width:100%;height:200px;display:block" role="img" aria-label="DW family constellation: 43 niche sites; current site highlighted">
+ <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>restaurantwallpaper.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 = "restaurantwallpaper";
+ 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 = 200, 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 = 28 + t * (H - 56) + 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('rest_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('rest_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('rest_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..b67c573
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * RESTAURANT 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 || 9854;
+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: "Restaurant Wallpaper", zdColor: "#d48a4a", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "restaurantwallpaper" });
+
+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 = ["mural","jungle","chinoiserie","deco","leather","moody"];
+ 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://restaurantwallpaper.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://restaurantwallpaper.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(`restaurantwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..9abe760
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+ "slug": "restaurantwallpaper",
+ "siteName": "Restaurant Wallpaper",
+ "domain": "restaurantwallpaper.com",
+ "nicheKeyword": "restaurant",
+ "tagline": "Bar, dining-room, and kitchen wallcoverings.",
+ "heroHeadline": "RESTAURANT WALLPAPER",
+ "heroSub": "Bar, dining-room, and kitchen wallcoverings.",
+ "theme": {
+ "accent": "#a04030"
+ },
+ "rails": [
+ "bar",
+ "dining",
+ "kitchen",
+ "banquette",
+ "speakeasy",
+ "steakhouse"
+ ],
+ "port": 9854
+}
(oldest)
·
back to Restaurantwallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero e7c5249 →