← back to Contractwallpaper
initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)
a40a5d910d077615b7b62888621f9d3d96aa3e7c · 2026-05-06 10:20:43 -0700 · Steve
Files touched
A .gitignoreA _universal-auth.jsA _universal-contact.jsA data/products.jsonA package-lock.jsonA package.jsonA public/favicon.svgA public/hero-bg.jpgA public/index.htmlA server.jsA site.config.json
Diff
commit a40a5d910d077615b7b62888621f9d3d96aa3e7c
Author: Steve <steve@designerwallcoverings.com>
Date: Wed May 6 10:20:43 2026 -0700
initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)
---
.gitignore | 25 +
_universal-auth.js | 296 +
_universal-contact.js | Bin 0 -> 15049 bytes
data/products.json | 22067 ++++++++++++++++++++++++++++++++++++++++++++++++
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, 24001 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9ae81e0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,25 @@
+node_modules/
+.env
+.env.*
+!.env.example
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+.cache/
+.parcel-cache/
+coverage/
+__pycache__/
+*.pyc
+*.pyo
+.venv/
+venv/
+.pytest_cache/
+.ruff_cache/
+.idea/
+.vscode/
+*.swp
+.qodo/
+out/
diff --git a/_universal-auth.js b/_universal-auth.js
new file mode 100644
index 0000000..6f1eaf9
--- /dev/null
+++ b/_universal-auth.js
@@ -0,0 +1,296 @@
+// DW family universal auth — drop-in for any sister site's server.js.
+// Mount BEFORE static. Provides:
+// /admin → Basic Auth (admin / DWSecure2024! via env ADMIN_PASS) → leads dashboard
+// /admin/leads.json → JSON dump of leads.jsonl (admin only)
+// /admin/stats.json → counts + recent activity
+// POST /account/register {name,email,password} → cookie session
+// POST /account/login {email,password} → cookie session
+// POST /account/logout
+// GET /account/me → {user, samples:[]} for logged-in user
+// POST /account/favorites {sku,title,image_url, action:'add'|'remove'}
+// GET /account → HTML dashboard
+//
+// Storage: data/users.json (single file per site, fail-soft like leads.jsonl).
+// Sessions: httpOnly cookie sid → user.id mapping in memory + persisted in users.json.
+// Passwords: scrypt (Node built-in, no npm install).
+//
+// Per Steve's standing rules:
+// - Lightweight, no email verify, no password reset (manual ask)
+// - Per-site users.json (each site is its own marketing surface)
+// - admin/DWSecure2024! same across all sites (matches DW-Agents pattern)
+
+const fs = require('fs');
+const path = require('path');
+const crypto = require('crypto');
+
+module.exports = function (app, opts) {
+ opts = opts || {};
+ const SITE = opts.siteName || 'DW Family';
+ const ADMIN_USER = process.env.ADMIN_USER || 'admin';
+ const ADMIN_PASS = process.env.ADMIN_PASS || '';
+ if (!ADMIN_PASS) {
+ if (process.env.NODE_ENV === 'production') {
+ throw new Error('[auth] ADMIN_PASS env required in production — set via /root/.dw-fleet.env (sourced by pm2 ecosystem)');
+ }
+ console.warn('[auth] ADMIN_PASS not set — /admin will return 401 to all requests');
+ }
+ const COOKIE_NAME = 'dw_sid';
+ const SESSION_TTL_MS = 30 * 24 * 60 * 60 * 1000; // 30 days
+
+ const DATA_DIR = path.join(__dirname, 'data');
+ const USERS_FILE = path.join(DATA_DIR, 'users.json');
+ const LEADS_FILE = path.join(DATA_DIR, 'leads.jsonl');
+ try { fs.mkdirSync(DATA_DIR, { recursive: true }); } catch (e) {}
+
+ // ─── storage ──────────────────────────────────────────────────────────────
+ let store = { users: [], sessions: {} }; // {sessions: {sid: {userId, expires}}}
+ try { if (fs.existsSync(USERS_FILE)) store = JSON.parse(fs.readFileSync(USERS_FILE, 'utf8')); } catch (e) { console.warn('[auth] users.json parse failed; starting fresh'); }
+ if (!store.users) store.users = [];
+ if (!store.sessions) store.sessions = {};
+
+ let writeQ = null;
+ function persist() {
+ if (writeQ) return;
+ writeQ = setTimeout(() => { writeQ = null; try { fs.writeFileSync(USERS_FILE + '.tmp', JSON.stringify(store, null, 2)); fs.renameSync(USERS_FILE + '.tmp', USERS_FILE); } catch (e) { console.error('[auth] persist failed:', e.message); } }, 200);
+ }
+
+ // ─── password hashing ─────────────────────────────────────────────────────
+ function hashPassword(pw) {
+ const salt = crypto.randomBytes(16).toString('hex');
+ const hash = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return `scrypt$${salt}$${hash}`;
+ }
+ function verifyPassword(pw, stored) {
+ try {
+ const [scheme, salt, hash] = stored.split('$');
+ if (scheme !== 'scrypt') return false;
+ const test = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return crypto.timingSafeEqual(Buffer.from(hash, 'hex'), Buffer.from(test, 'hex'));
+ } catch (e) { return false; }
+ }
+
+ // ─── helpers ──────────────────────────────────────────────────────────────
+ const EMAIL_RE = /^[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}$/;
+ function clean(s, max) { return s == null ? '' : String(s).replace(/[\r\n\t\v\f ]+/g, ' ').trim().slice(0, max); }
+ function parseCookies(req) { const out = {}; const h = req.headers.cookie || ''; for (const part of h.split(';')) { const [k, v] = part.trim().split('='); if (k) out[k] = decodeURIComponent(v || ''); } return out; }
+ function setCookie(res, name, value, opts = {}) {
+ const parts = [`${name}=${encodeURIComponent(value)}`, `Path=${opts.path || '/'}`, 'HttpOnly', 'SameSite=Lax'];
+ if (opts.secure) parts.push('Secure');
+ if (opts.maxAge) parts.push(`Max-Age=${Math.floor(opts.maxAge / 1000)}`);
+ if (opts.expires) parts.push(`Expires=${opts.expires.toUTCString()}`);
+ res.setHeader('Set-Cookie', parts.join('; '));
+ }
+ function basicAuthOK(req) {
+ if (!ADMIN_PASS) return false; // no admin pass configured → refuse all
+ const h = req.headers.authorization || '';
+ if (!h.startsWith('Basic ')) return false;
+ try {
+ const [u, p] = Buffer.from(h.slice(6), 'base64').toString().split(':');
+ if (u !== ADMIN_USER) return false;
+ const a = Buffer.from(String(p || ''));
+ const b = Buffer.from(ADMIN_PASS);
+ return a.length === b.length && crypto.timingSafeEqual(a, b);
+ } catch (e) { return false; }
+ }
+ function requireAdmin(req, res, next) {
+ if (!basicAuthOK(req)) { res.setHeader('WWW-Authenticate', `Basic realm="${SITE} Admin"`); return res.status(401).send('admin auth required'); }
+ next();
+ }
+ function userFromReq(req) {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (!sid) return null;
+ const sess = store.sessions[sid];
+ if (!sess || sess.expires < Date.now()) { if (sess) delete store.sessions[sid]; return null; }
+ return store.users.find(u => u.id === sess.userId) || null;
+ }
+ function startSession(res, user) {
+ const sid = crypto.randomBytes(24).toString('base64url');
+ store.sessions[sid] = { userId: user.id, expires: Date.now() + SESSION_TTL_MS };
+ persist();
+ const isHttps = (process.env.HTTPS || '').toLowerCase() === 'true' || process.env.NODE_ENV === 'production';
+ setCookie(res, COOKIE_NAME, sid, { maxAge: SESSION_TTL_MS, secure: isHttps });
+ }
+ function readLeads() {
+ if (!fs.existsSync(LEADS_FILE)) return [];
+ try { return fs.readFileSync(LEADS_FILE, 'utf8').trim().split('\n').filter(Boolean).map(l => { try { return JSON.parse(l); } catch (e) { return null; } }).filter(Boolean); } catch (e) { return []; }
+ }
+
+ // ─── /account/register ────────────────────────────────────────────────────
+ app.post('/account/register', (req, res) => {
+ const b = req.body || {};
+ const name = clean(b.name, 200);
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ if (!name || !EMAIL_RE.test(email) || password.length < 8) return res.status(400).json({ error: 'name, valid email, and 8-char password required' });
+ if (store.users.find(u => u.email === email)) return res.status(409).json({ error: 'email already registered' });
+ const user = { id: crypto.randomBytes(8).toString('hex'), name, email, pwd: hashPassword(password), createdAt: new Date().toISOString(), favorites: [] };
+ store.users.push(user); persist();
+ startSession(res, user);
+ res.json({ ok: true, user: { id: user.id, name: user.name, email: user.email } });
+ });
+
+ // Constant-cost dummy hash so login timing doesn't reveal whether email exists
+ const DUMMY_HASH = `scrypt$${crypto.randomBytes(16).toString('hex')}$${crypto.scryptSync('does-not-match', 'dummy-salt', 64).toString('hex')}`;
+
+ // ─── /account/login ───────────────────────────────────────────────────────
+ app.post('/account/login', (req, res) => {
+ const b = req.body || {};
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ const u = store.users.find(x => x.email === email);
+ // Always compute scrypt to keep timing constant whether user exists or not
+ const valid = verifyPassword(password, u ? u.pwd : DUMMY_HASH);
+ if (!u || !valid) return res.status(401).json({ error: 'invalid email or password' });
+ startSession(res, u);
+ res.json({ ok: true, user: { id: u.id, name: u.name, email: u.email } });
+ });
+
+ // ─── /account/logout ──────────────────────────────────────────────────────
+ app.post('/account/logout', (req, res) => {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (sid && store.sessions[sid]) { delete store.sessions[sid]; persist(); }
+ setCookie(res, COOKIE_NAME, '', { maxAge: 0 });
+ res.json({ ok: true });
+ });
+
+ // ─── /account/me ──────────────────────────────────────────────────────────
+ app.get('/account/me', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const samples = readLeads().filter(l => (l.email || '').toLowerCase() === u.email);
+ res.json({ user: { id: u.id, name: u.name, email: u.email, createdAt: u.createdAt }, favorites: u.favorites || [], samples });
+ });
+
+ // ─── /account/favorites ───────────────────────────────────────────────────
+ app.post('/account/favorites', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const b = req.body || {};
+ const action = b.action === 'remove' ? 'remove' : 'add';
+ const sku = clean(b.sku, 200);
+ if (!sku) return res.status(400).json({ error: 'sku required' });
+ u.favorites = u.favorites || [];
+ if (action === 'add') {
+ if (!u.favorites.find(f => f.sku === sku)) {
+ u.favorites.push({ sku, title: clean(b.title, 400), image_url: clean(b.image_url, 600), addedAt: new Date().toISOString() });
+ }
+ } else {
+ u.favorites = u.favorites.filter(f => f.sku !== sku);
+ }
+ persist();
+ res.json({ ok: true, favorites: u.favorites });
+ });
+
+ // ─── /account (HTML dashboard) ────────────────────────────────────────────
+ app.get('/account', (req, res) => {
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>Account · ${SITE}</title>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="/styles.css" onerror="this.remove()">
+<style>
+body{font-family:-apple-system,sans-serif;max-width:680px;margin:80px auto;padding:24px;color:#222;background:#fafaf6}
+h1{font-size:32px;font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.card{background:#fff;padding:32px;border:1px solid #e5dfd0;margin-bottom:18px}
+input,button{font:inherit;padding:11px 14px;width:100%;box-sizing:border-box;margin:6px 0;border:1px solid #d0c9b8;background:#fff}
+button{background:#1b1814;color:#fafaf6;cursor:pointer;border:0;letter-spacing:0.18em;text-transform:uppercase;font-size:11px;padding:14px;margin-top:14px}
+button:hover{background:#3a342a}
+.tab{display:inline-block;padding:11px 20px;cursor:pointer;border:0;background:transparent;font-size:11px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+.tab.active{color:#1b1814;border-bottom:2px solid #1b1814}
+.row{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid #e5dfd0;align-items:center}
+.row img{width:50px;height:50px;object-fit:cover}
+.muted{color:#888;font-size:13px}
+.err{color:#a33d3d;font-size:13px;margin:6px 0}
+[hidden]{display:none}
+</style></head>
+<body>
+<h1>${SITE} · Account</h1>
+<div id="anon">
+ <div class="card">
+ <div><button class="tab active" data-pane="login">Sign In</button><button class="tab" data-pane="register">Create Account</button></div>
+ <div id="login">
+ <input id="le" type="email" placeholder="email" autocomplete="email">
+ <input id="lp" type="password" placeholder="password" autocomplete="current-password">
+ <div id="lerr" class="err"></div>
+ <button onclick="doLogin()">Sign In</button>
+ </div>
+ <div id="register" hidden>
+ <input id="rn" placeholder="name">
+ <input id="re" type="email" placeholder="email" autocomplete="email">
+ <input id="rp" type="password" placeholder="password (min 8)" autocomplete="new-password">
+ <div id="rerr" class="err"></div>
+ <button onclick="doRegister()">Create Account</button>
+ </div>
+ </div>
+</div>
+<div id="auth" hidden>
+ <div class="card">
+ <h2 id="hname" style="font-weight:300"></h2>
+ <p class="muted" id="hemail"></p>
+ <p class="muted" style="margin-top:14px">Member since <span id="hsince"></span></p>
+ <button onclick="logout()" style="margin-top:18px;background:transparent;color:#888;border:1px solid #d0c9b8">Sign Out</button>
+ </div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Saved Patterns</h3><div id="favs"><p class="muted">No favorites yet — heart any pattern in the catalog.</p></div></div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Sample Requests</h3><div id="samples"><p class="muted">No samples yet.</p></div></div>
+</div>
+<script>
+document.querySelectorAll('.tab').forEach(t=>t.onclick=()=>{document.querySelectorAll('.tab').forEach(x=>x.classList.toggle('active',x===t));['login','register'].forEach(id=>document.getElementById(id).hidden=(id!==t.dataset.pane))});
+async function api(path, body){ const r=await fetch(path,{method:'POST',headers:{'Content-Type':'application/json'},credentials:'include',body:body?JSON.stringify(body):undefined}); const j=await r.json().catch(()=>({}));return {ok:r.ok,j}; }
+async function doLogin(){const r=await api('/account/login',{email:le.value,password:lp.value});if(r.ok)render();else lerr.textContent=r.j.error||'login failed'}
+async function doRegister(){const r=await api('/account/register',{name:rn.value,email:re.value,password:rp.value});if(r.ok)render();else rerr.textContent=r.j.error||'register failed'}
+async function logout(){await api('/account/logout');location.reload()}
+function fmt(d){return new Date(d).toLocaleDateString('en-US',{month:'long',year:'numeric'})}
+async function render(){
+ const r=await fetch('/account/me',{credentials:'include'});
+ if(!r.ok){anon.hidden=false;auth.hidden=true;return}
+ const d=await r.json();anon.hidden=true;auth.hidden=false;
+ hname.textContent=d.user.name;hemail.textContent=d.user.email;hsince.textContent=fmt(d.user.createdAt);
+ if(d.favorites?.length){favs.innerHTML=d.favorites.map(f=>'<div class="row"><img src="'+(f.image_url||'')+'" alt=""><div><div>'+(f.title||f.sku)+'</div><div class="muted">'+f.sku+'</div></div></div>').join('')}
+ if(d.samples?.length){samples.innerHTML=d.samples.map(s=>'<div class="row"><div><div>'+(s.title||s.sku||'sample')+'</div><div class="muted">'+(new Date(s.ts).toLocaleDateString())+'</div></div></div>').join('')}
+}
+render();
+</script></body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ // ─── /admin (Basic Auth) ──────────────────────────────────────────────────
+ app.get('/admin', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ const recent = leads.slice(-25).reverse();
+ const stats = { totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, kinds: {} };
+ for (const l of leads) stats.kinds[l.kind] = (stats.kinds[l.kind] || 0) + 1;
+ const recentRows = recent.map(l => `<tr><td>${new Date(l.ts).toLocaleString()}</td><td>${l.kind}</td><td>${(l.name || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.email || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.title || l.projectName || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td></tr>`).join('');
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>${SITE} Admin</title>
+<style>body{font-family:-apple-system,sans-serif;background:#0e0e0e;color:#eee;margin:0;padding:32px;font-size:14px}
+h1{font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.kpi{display:flex;gap:18px;margin-bottom:32px;flex-wrap:wrap}
+.kpi div{background:#1a1a1a;padding:18px 24px;border:1px solid #333;flex:1;min-width:160px}
+.kpi .n{font-size:32px;font-weight:300;color:#eee}
+.kpi .l{font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:#888;margin-top:6px}
+table{width:100%;border-collapse:collapse;background:#1a1a1a;border:1px solid #333}
+th,td{padding:10px 14px;text-align:left;border-bottom:1px solid #2a2a2a;font-size:13px}
+th{background:#222;font-size:10px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+td{color:#ddd}
+small{color:#666}</style></head>
+<body>
+<h1>${SITE} · Admin</h1>
+<div class="kpi">
+ <div><div class="n">${stats.totalLeads}</div><div class="l">Total Leads</div></div>
+ <div><div class="n">${stats.totalUsers}</div><div class="l">Registered Users</div></div>
+ <div><div class="n">${stats.sessionsActive}</div><div class="l">Active Sessions</div></div>
+ <div><div class="n">${stats.kinds.inquiry || 0}</div><div class="l">Inquiries</div></div>
+ <div><div class="n">${stats.kinds.sample || 0}</div><div class="l">Sample Requests</div></div>
+</div>
+<h2 style="font-weight:300;margin:24px 0 12px">Recent Activity (last 25)</h2>
+<table><thead><tr><th>Time</th><th>Kind</th><th>Name</th><th>Email</th><th>Pattern / Project</th></tr></thead><tbody>${recentRows || '<tr><td colspan="5" style="text-align:center;color:#666;padding:24px">no leads yet</td></tr>'}</tbody></table>
+<p style="margin-top:24px"><small><a href="/admin/leads.json" style="color:#888">leads.json</a> · <a href="/admin/stats.json" style="color:#888">stats.json</a> · <a href="/" style="color:#888">site →</a></small></p>
+</body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ app.get('/admin/leads.json', requireAdmin, (req, res) => res.json(readLeads()));
+ app.get('/admin/stats.json', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ res.json({ totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, recent: leads.slice(-10).reverse() });
+ });
+};
diff --git a/_universal-contact.js b/_universal-contact.js
new file mode 100644
index 0000000..194e04f
Binary files /dev/null and b/_universal-contact.js differ
diff --git a/data/products.json b/data/products.json
new file mode 100644
index 0000000..424b43c
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,22067 @@
+[
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52350",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52350",
+ "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-chili_d09b5e5f-0db9-4802-8887-101bffa406fc.jpg?v=1777481302",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Orange",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Orange",
+ "Rustic",
+ "Tawny",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52350"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5008-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5008-jpg",
+ "title": "Grain - Driftwood | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5008.jpg?v=1762295448",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Driftwood",
+ "Grain",
+ "Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5008-jpg"
+ },
+ {
+ "sku": "dwkk-128161",
+ "handle": "dwkk-128161",
+ "title": "W3289-4 Gold | Kravet Design | Grasscloth Iii |Check/Houndstooth Metallic Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3289_4_1495b53c-ed35-41ce-9f24-95d4ce724801.jpg?v=1753292819",
+ "tags": [
+ "36In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Check/Houndstooth",
+ "China",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "grasscloth",
+ "Grasscloth Iii",
+ "Grasscloth Texture",
+ "Grasscloth Weave",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Paper - 100%",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W3289",
+ "W3289-4",
+ "W3289.4.0",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128161"
+ },
+ {
+ "sku": "bosa-marina-rustic-aged-wood-grain-wbs-39636",
+ "handle": "bosa-marina-rustic-aged-wood-grain-wbs-39636",
+ "title": "Bosa Marina Rustic Aged Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39636-sample-bosa-marina-rustic-aged-wood-grain-hollywood-wallcoverings.jpg?v=1775705948",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Farmhouse",
+ "Faux",
+ "Faux Wood",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bosa-marina-rustic-aged-wood-grain-wbs-39636"
+ },
+ {
+ "sku": "castine-fog-tuscan-stripe-wallpaper-cca-83210",
+ "handle": "castine-fog-tuscan-stripe-wallpaper-cca-83210",
+ "title": "Castine Fog Tuscan Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/810fe04e97a560c561196ba76f2f993f_dd3e6a8c-bc42-4f11-843d-94586a7445d5.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Marble",
+ "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/castine-fog-tuscan-stripe-wallpaper-cca-83210"
+ },
+ {
+ "sku": "eastport-pewter-arabelle-stripe-wallpaper-cca-83143",
+ "handle": "eastport-pewter-arabelle-stripe-wallpaper-cca-83143",
+ "title": "Eastport Pewter Arabelle Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d2a65f2e1632cdbff44062662ba52943.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eastport-pewter-arabelle-stripe-wallpaper-cca-83143"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47656",
+ "handle": "fairford-vinyl-wallcovering-xlb-47656",
+ "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-47656-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711579",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Estimated Type: Paper",
+ "Glamorous",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy Blue",
+ "Off-white",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47656"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73018",
+ "handle": "benedict-canyon-sisal-hlw-73018",
+ "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-73018-sample-clean.jpg?v=1774483055",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Sisal",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73018"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+ "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-58157-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725488",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58157"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72113",
+ "handle": "gironde-durable-vinyl-dur-72113",
+ "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-72113-sample-clean.jpg?v=1774484442",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72113"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52320",
+ "handle": "marketfield-faux-durable-walls-xwh-52320",
+ "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-tamarind.jpg?v=1777480461",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Rustic",
+ "Sienna",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Umber",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52320"
+ },
+ {
+ "sku": "dgw-806022-dolce-gabbana",
+ "handle": "dgw-806022-dolce-gabbana",
+ "title": "ZEBRA ROMANCE MISTERIOSO BY DOLCE & GABBANA WALLCOVERING",
+ "vendor": "Dolce & Gabbana",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/TCW007TCAHOUZ018.jpg?v=1711558391",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Blacks",
+ "Commercial",
+ "Contemporary",
+ "Dark Gray",
+ "Dolce & Gabbana Casa",
+ "Fauna",
+ "Gray",
+ "Misterioso",
+ "Paper",
+ "Pattern",
+ "Trending Wallcovering Collection 2024",
+ "Wallcovering",
+ "Zebra",
+ "Zebra Romance"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dgw-806022-dolce-gabbana"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2529",
+ "handle": "faux-leaf-squares-fls-2529",
+ "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-2529-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711952",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2529"
+ },
+ {
+ "sku": "dwkk-geccb53ec",
+ "handle": "dwkk-geccb53ec",
+ "title": "Baldwin Stripe Wp - Blue Blue By Lee Jofa | Sarah Bartholomew Wallpapers | Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2022100_5_02e08901-6ccc-4ca2-86d3-5f04334dbd70.jpg?v=1753302310",
+ "tags": [
+ "27In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baldwin Stripe Wp",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Champagne",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Gray",
+ "Hallway",
+ "Lee Jofa",
+ "Light Gray",
+ "Nautical",
+ "P2022100.5.0",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Serene",
+ "Steel Blue",
+ "Stripe",
+ "Stripes",
+ "Traditional",
+ "United States",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-geccb53ec"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dss110-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dss110-jpg",
+ "title": "Soft Spots - Flame | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dss110.jpg?v=1762292248",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Brown",
+ "Digital Curated",
+ "Flame",
+ "Geometric",
+ "Orange",
+ "Paper",
+ "Red",
+ "Soft Spots",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dss110-jpg"
+ },
+ {
+ "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": "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": "rustic-glam-vinyl-gpr-76636",
+ "handle": "rustic-glam-vinyl-gpr-76636",
+ "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-76636-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731865",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "USFCID#vp885-099",
+ "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-76636"
+ },
+ {
+ "sku": "hollywood-tower-deco-xhw-201055",
+ "handle": "hollywood-tower-deco-xhw-201055",
+ "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-cassandre_cb73fdc5-c20a-43ab-863d-b8a9f306a225.jpg?v=1777481461",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Art Deco",
+ "Background Color Blue",
+ "Bedroom",
+ "Blue",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Deep Teal",
+ "Embossed",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Teal",
+ "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-tower-deco-xhw-201055"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52932",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52932",
+ "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWQ-52932-sample-clean.jpg?v=1774481744",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52932"
+ },
+ {
+ "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52166",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52166",
+ "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-carbon.jpg?v=1777480433",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52166"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br020-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br020-jpg",
+ "title": "BR020 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br019.jpg?v=1733873674",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Green",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br020-jpg"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+ "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-47329-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704847",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47329"
+ },
+ {
+ "sku": "test1-xbg-44000",
+ "handle": "test1-xbg-44000",
+ "title": "test1 | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44000-sample-test1-hollywood-wallcoverings.jpg?v=1775735292",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Brown",
+ "Clock",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Natural",
+ "Paper",
+ "Solid",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/test1-xbg-44000"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52776",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52776",
+ "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-52776-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734783",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52776"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2624",
+ "handle": "pleated-perfect-paradise-ppp-2624",
+ "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-2624-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729172",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2624"
+ },
+ {
+ "sku": "churchill-paintable-anaglytpa-original-wallpaper-gga-82672",
+ "handle": "churchill-paintable-anaglytpa-original-wallpaper-gga-82672",
+ "title": "Churchill Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/208303ae13c594017400f80c546ebc6c.jpg?v=1750790428",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Avocado",
+ "Celery",
+ "Churchill Paintable Anaglytpa Original",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Floral",
+ "Geometric",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Minimalist",
+ "Moss",
+ "Paintable",
+ "Phasing-2026-04",
+ "Series: Brewster",
+ "Soft White",
+ "Strippable",
+ "Texture",
+ "Textured",
+ "Thyme",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/churchill-paintable-anaglytpa-original-wallpaper-gga-82672"
+ },
+ {
+ "sku": "eur-80207-ncw4186-designer-wallcoverings-los-angeles",
+ "handle": "eur-80207-ncw4186-designer-wallcoverings-los-angeles",
+ "title": "Khitan 04 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499893811.jpg?v=1775522757",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "CATHAY",
+ "Color: Turquoise",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Grandmillennial",
+ "Khitan",
+ "Light Blue",
+ "Living Room",
+ "NCW4186",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paisley",
+ "Pale Aqua",
+ "Paper",
+ "Serene",
+ "Traditional",
+ "Turquoise",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80207-ncw4186-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "gregory-diamonds-drive-hlw-73040",
+ "handle": "gregory-diamonds-drive-hlw-73040",
+ "title": "Gregory Diamonds Drive | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73040-sample-clean.jpg?v=1774483169",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gregory-diamonds-drive-hlw-73040"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53484",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53484",
+ "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-53484-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732851",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Paper",
+ "Santa Rosa Contemporary Durable",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53484"
+ },
+ {
+ "sku": "eur-80286-ncw4276-designer-wallcoverings-los-angeles",
+ "handle": "eur-80286-ncw4276-designer-wallcoverings-los-angeles",
+ "title": "Perdana 02 - 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_7513502318643.jpg?v=1775523167",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Butterfly",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "COROMANDEL",
+ "Cottagecore",
+ "Dining Room",
+ "Dusty Rose",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "NCW4276",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Paper",
+ "Perdana",
+ "Perdana 02",
+ "Pink",
+ "Rose",
+ "Sage",
+ "Serene",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80286-ncw4276-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "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": "programa-piento-durable-vinyl-dur-72426",
+ "handle": "programa-piento-durable-vinyl-dur-72426",
+ "title": "Programa Piento Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72426-sample-clean.jpg?v=1774485501",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Grayish Brown",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Taupe",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Programa Piento Durable Vinyl",
+ "Tan",
+ "Taupe",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/programa-piento-durable-vinyl-dur-72426"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2868",
+ "handle": "peter-s-plastered-walls-ppw-2868",
+ "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-2868-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729042",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "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-2868"
+ },
+ {
+ "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52158",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52158",
+ "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-celestine.jpg?v=1777480419",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dark Grey",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52158"
+ },
+ {
+ "sku": "dwss-72548",
+ "handle": "dwss-72548",
+ "title": "Fredsfaglar grey Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/595-21_image1_2d30a63a-def3-4a51-9adc-d74fe32137fd.jpg?v=1646104617",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art Nouveau",
+ "Bird",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fredsfaglar",
+ "Fredsfaglar grey Sample",
+ "Gray",
+ "Light Gray",
+ "P595-21",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72548"
+ },
+ {
+ "sku": "dwss-72463",
+ "handle": "dwss-72463",
+ "title": "Sigfrid cream Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/425-01_image1_a6836dcd-1c81-4c11-9356-d68610f01051.jpg?v=1646104347",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Nouveau",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Off-white",
+ "P425-01",
+ "Paper",
+ "Sandberg",
+ "Sigfrid",
+ "Sigfrid cream Sample",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72463"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2628",
+ "handle": "pleated-perfect-paradise-ppp-2628",
+ "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-2628-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729186",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Light Yellow",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2628"
+ },
+ {
+ "sku": "sag-harbor-sanforini-wallcovering-phillipe-romano",
+ "handle": "sag-harbor-sanforini-wallcovering-phillipe-romano",
+ "title": "Sag Harbor - Sanforini Wallcovering | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Commercial Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HI0M69TYTGn1funIUlYdgzET6VcYM3tMq9KH9ptH.jpg?v=1776190147",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fire Rated",
+ "Full Roll",
+ "Hollywood Vinyls Vol. 1",
+ "Light Gray",
+ "mfr:DWHV-101083",
+ "Minimalist",
+ "Off-white",
+ "Phillipe Romano",
+ "Sag Harbor",
+ "Textured",
+ "Vinyl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sag-harbor-sanforini-wallcovering-phillipe-romano"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10339-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10339-jpg",
+ "title": "Ambient Design - AD10339 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10338.jpg?v=1733874110",
+ "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_ad10339-jpg"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53476",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53476",
+ "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-53476-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715913",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53476"
+ },
+ {
+ "sku": "millinocket-pewter-illusion-stripe-wallpaper-cca-83115",
+ "handle": "millinocket-pewter-illusion-stripe-wallpaper-cca-83115",
+ "title": "Millinocket Pewter Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c872cf12ed9c0a6e5ef11dac564170bd.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-pewter-illusion-stripe-wallpaper-cca-83115"
+ },
+ {
+ "sku": "dwss-72542",
+ "handle": "dwss-72542",
+ "title": "Sten cream Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/583-09_image1_147e697f-8a88-4ab0-a9c0-2cd564b3cab0.jpg?v=1646104597",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Light Gray",
+ "P583-09",
+ "Paper",
+ "Sandberg",
+ "Solid",
+ "Sten",
+ "Sten cream Sample",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72542"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10236-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10236-jpg",
+ "title": "SM10236 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10235.jpg?v=1733872488",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Gray",
+ "Pink",
+ "Rosybrown",
+ "SM10236",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10236-jpg"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52102",
+ "handle": "canal-texture-durable-walls-xwd-52102",
+ "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-port.jpg?v=1777480412",
+ "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",
+ "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",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Rustic",
+ "Sienna",
+ "Solid",
+ "Terracotta",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "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-52102"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940",
+ "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWQ-52940-sample-clean.jpg?v=1774481753",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52940"
+ },
+ {
+ "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": "floating-fibers-dwx-58179",
+ "handle": "floating-fibers-dwx-58179",
+ "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-58179-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775713949",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Fiber",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Subtle Pattern",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58179"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47641",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47641",
+ "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-47641-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711050",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Teal",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Solid",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47641"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2762",
+ "handle": "faux-leaf-squares-fls-2762",
+ "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-2762-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712036",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Off-white",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2762"
+ },
+ {
+ "sku": "ncw4396-01",
+ "handle": "ncw4396-01",
+ "title": "Ashdown Brideshead 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_4497266999347.jpg?v=1775520885",
+ "tags": [
+ "Arabesque",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "NCW4396-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4396-01"
+ },
+ {
+ "sku": "dwkk-138788",
+ "handle": "dwkk-138788",
+ "title": "Flying Ducks - Indigo Blue By Mulberry | Modern Country |Animal/Insects Botanical & Floral Wallcovering Print",
+ "vendor": "Mulberry",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/FG090_H10_36f3fc19-a2b5-4f64-9c8a-2815cbdbb1ba.jpg?v=1753291617",
+ "tags": [
+ "20.488In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Art Nouveau",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Brown",
+ "Commercial",
+ "display_variant",
+ "Duck",
+ "Fauna",
+ "Fg090.H10.0",
+ "Flying Ducks",
+ "Green",
+ "Modern Country",
+ "Mulberry",
+ "Non Woven - 100%",
+ "Paper",
+ "Print",
+ "United Kingdom",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-138788"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsg9-5387-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsg9-5387-jpg",
+ "title": "Glasgow - Birch | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5387.jpg?v=1762296813",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Birch",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Glasgow",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5387-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2512",
+ "handle": "faux-leaf-squares-fls-2512",
+ "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-2512-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711895",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Brown",
+ "Commercial",
+ "Dark Olive Green",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Olive Green",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2512"
+ },
+ {
+ "sku": "georgio-s-farm-animals-scr-8121",
+ "handle": "georgio-s-farm-animals-scr-8121",
+ "title": "Georgio's Farm Animals",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6449575f1cef1443c2eda18da455fe1e.jpg?v=1572309107",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Dog",
+ "Fauna",
+ "Green",
+ "House",
+ "Luxury Screen Printed Wallpapers",
+ "Paper",
+ "Rooster",
+ "Screen Print",
+ "Sun",
+ "Tree",
+ "Wallcovering",
+ "Whimsical",
+ "Whimsical Screen Prints Vol. 1",
+ "White",
+ "White On Ice Mint"
+ ],
+ "max_price": 193.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/georgio-s-farm-animals-scr-8121"
+ },
+ {
+ "sku": "eur-80280-ncw4274-designer-wallcoverings-los-angeles",
+ "handle": "eur-80280-ncw4274-designer-wallcoverings-los-angeles",
+ "title": "Palmetto 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_7513502154803.jpg?v=1775523135",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "NCW4274",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Off-white",
+ "Pale Grey",
+ "Palmetto",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80280-ncw4274-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "steuben-brick-turf-stripe-wallpaper-cca-83172",
+ "handle": "steuben-brick-turf-stripe-wallpaper-cca-83172",
+ "title": "Steuben Brick Turf Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/34dc94037e35892c0a172a9a6fd98f61.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brick",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Reddish-brown",
+ "Series: Brewster",
+ "Steuben Brick Turf Stripe Wallcovering",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-brick-turf-stripe-wallpaper-cca-83172"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em9515-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em9515-jpg",
+ "title": "EM9515 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9514.jpg?v=1733873336",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM9515",
+ "Gray",
+ "Light Gray",
+ "Paper",
+ "Textured",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9515-jpg"
+ },
+ {
+ "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": "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": "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": "colby-rose-love-spots-wallpaper-cca-83002",
+ "handle": "colby-rose-love-spots-wallpaper-cca-83002",
+ "title": "Colby Rose Love Spots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/035d5b0f25cb79808edb33b23b3bcd4f.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/colby-rose-love-spots-wallpaper-cca-83002"
+ },
+ {
+ "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_gai-5111-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5111-jpg",
+ "title": "Grain - Gray Oak | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5111.jpg?v=1762295910",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain",
+ "Gray",
+ "Gray Oak",
+ "Light Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5111-jpg"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47151",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47151",
+ "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-47151-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775701051",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Amethyst",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Damask",
+ "Eggshell",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Non-woven",
+ "Olive Green",
+ "Purple",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47151"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10218-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10218-jpg",
+ "title": "SP10218 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10217.jpg?v=1733872367",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "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_sp10218-jpg"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47820",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47820",
+ "title": "Ikeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xls-47820-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719375",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47820"
+ },
+ {
+ "sku": "marseilles-wallpaper-xp3-68072",
+ "handle": "marseilles-wallpaper-xp3-68072",
+ "title": "Marseilles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0a77a5c40eab6e27df32d81639c331aa.jpg?v=1733882130",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Marseilles Vinyl",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-wallpaper-xp3-68072"
+ },
+ {
+ "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": "vomera-snow-faux-tile-wbs-39646",
+ "handle": "vomera-snow-faux-tile-wbs-39646",
+ "title": "Vomera Snow Faux Tile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39646-sample-vomera-snow-faux-tile-hollywood-wallcoverings.jpg?v=1775736157",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Brick",
+ "Bricks and Stones",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Eggshell",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Off-White",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-snow-faux-tile-wbs-39646"
+ },
+ {
+ "sku": "wells-grey-candy-stripe-wallpaper-cca-83223",
+ "handle": "wells-grey-candy-stripe-wallpaper-cca-83223",
+ "title": "Wells Grey Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7221bb963c1b30cc1b79de1b023dbef7.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-grey-candy-stripe-wallpaper-cca-83223"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47334",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47334",
+ "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-47334-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704980",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Estimated Type: Paper",
+ "Grandmillennial",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Regencycore",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47334"
+ },
+ {
+ "sku": "dwkk-127816",
+ "handle": "dwkk-127816",
+ "title": "Pink Lotus Wp - Blush 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/W0132_01_CAC_b150373d-f707-4799-821b-3298f7967fb5.jpg?v=1753321593",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Branches",
+ "Butterfly",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "display_variant",
+ "Floral",
+ "Flowers",
+ "Green",
+ "Hummingbird",
+ "Leaves",
+ "Living Room",
+ "Non Woven - 100%",
+ "Nursery",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Pink Lotus Wp",
+ "Print",
+ "Rose",
+ "Sage",
+ "Traditional",
+ "Tropical",
+ "United Kingdom",
+ "W0132/01.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127816"
+ },
+ {
+ "sku": "asha-pewter-lotus-damask-wallpaper-cca-83230",
+ "handle": "asha-pewter-lotus-damask-wallpaper-cca-83230",
+ "title": "Asha Pewter Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6b698b19c5acc6ffb24c7e4e2e2f9ca2.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Non-Woven",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pewter-lotus-damask-wallpaper-cca-83230"
+ },
+ {
+ "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": "glen-ridge-embossed-vertical-durable-walls-xwl-53537",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53537",
+ "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-beige.jpg?v=1777480867",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic",
+ "Organic Modern",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53537"
+ },
+ {
+ "sku": "ettie-rose-circus-damask-wallpaper-cca-83005",
+ "handle": "ettie-rose-circus-damask-wallpaper-cca-83005",
+ "title": "Ettie Rose Circus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2e4be099f3d07526acc600668597116d.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ettie-rose-circus-damask-wallpaper-cca-83005"
+ },
+ {
+ "sku": "macey-orange-wiggle-stripe-wallpaper-cca-83010",
+ "handle": "macey-orange-wiggle-stripe-wallpaper-cca-83010",
+ "title": "Macey Orange Wiggle Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/728b5007ba5eb767ffbd0aa8a13c42f5.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Orange",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/macey-orange-wiggle-stripe-wallpaper-cca-83010"
+ },
+ {
+ "sku": "haute-sena-durable-vinyl-dur-72319",
+ "handle": "haute-sena-durable-vinyl-dur-72319",
+ "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-72319-sample-clean.jpg?v=1774485165",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Red",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haute-sena-durable-vinyl-dur-72319"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47642",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47642",
+ "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-47642-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711084",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Emerald Green",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Lattice",
+ "Luxe",
+ "Navy Blue",
+ "Neoclassical",
+ "Plantation",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47642"
+ },
+ {
+ "sku": "dwc-1001648",
+ "handle": "dwc-1001648",
+ "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_4693310406707.jpg?v=1775521350",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Art Nouveau",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Light Gray",
+ "NCW4353-06",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Taupe",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001648"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48173",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48173",
+ "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-48173-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728542",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48173"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10340-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10340-jpg",
+ "title": "Ambient Design - AD10340 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10339.jpg?v=1733874108",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10340-jpg"
+ },
+ {
+ "sku": "dwkk-127817",
+ "handle": "dwkk-127817",
+ "title": "Pink Lotus 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/W0132_02_CAC_202ba7c7-1b6b-473b-823b-4cae5b48e582.jpg?v=1753321591",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Butterflies",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Brown",
+ "Green",
+ "Hummingbirds",
+ "Ivory",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Pink",
+ "Pink Lotus Wp",
+ "Print",
+ "Rose",
+ "Sage",
+ "Traditional",
+ "Tropical",
+ "United Kingdom",
+ "W0132/02.Cac.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127817"
+ },
+ {
+ "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": "peter-s-plastered-walls-ppw-2886",
+ "handle": "peter-s-plastered-walls-ppw-2886",
+ "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-2886-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729101",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2886"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52382",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52382",
+ "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-chateau.jpg?v=1777480547",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52382"
+ },
+ {
+ "sku": "rhone-durable-vinyl-dur-72093",
+ "handle": "rhone-durable-vinyl-dur-72093",
+ "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-72093-sample-clean.jpg?v=1774484365",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Herringbone",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Red",
+ "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-72093"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48577",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48577",
+ "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-48577-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735791",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Width: 41\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48577"
+ },
+ {
+ "sku": "tate-beige-animal-alphabet-wallpaper-cca-82982",
+ "handle": "tate-beige-animal-alphabet-wallpaper-cca-82982",
+ "title": "Tate Beige Animal Alphabet Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/446129c27d1c8c599ce2df8caf1fee99.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Commercial",
+ "Cow",
+ "Discontinued",
+ "Dog",
+ "Easy Walls",
+ "Fauna",
+ "Frog",
+ "Hamster",
+ "Kids",
+ "Koala",
+ "LA Walls",
+ "Owl",
+ "Panda",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Toucan",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tate-beige-animal-alphabet-wallpaper-cca-82982"
+ },
+ {
+ "sku": "eur-80263-ncw4270-designer-wallcoverings-los-angeles",
+ "handle": "eur-80263-ncw4270-designer-wallcoverings-los-angeles",
+ "title": "Coromandel 05 - 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_7513501564979.jpg?v=1775523041",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coromandel",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "NCW4270",
+ "NCW4270 -05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-White",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Silver Grey",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80263-ncw4270-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-70042-designer-wallcoverings-los-angeles",
+ "handle": "eur-70042-designer-wallcoverings-los-angeles",
+ "title": "Palasini Teal | Designers Guild Europe",
+ "vendor": "Designers Guild",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/22362_0fcec480-4848-49a8-92f7-3ce45db1e44a.webp?v=1738613772",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designers Guild",
+ "Designers Guild Europe",
+ "Dot",
+ "Hallway",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Luxury",
+ "Navy",
+ "Non-Woven",
+ "Organic Modern",
+ "Palasini",
+ "PDG647",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-70042-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34134",
+ "handle": "fukaura-durable-vinyl-xrm-34134",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f7ee80f70186b3acc72bfd8b2d9ad26e_5d332c98-198c-4658-b045-2d6b893c2037.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Commercial and Residential - Cleanable",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fukaura-durable-vinyl-xrm-34134"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53051",
+ "handle": "boca-faux-finish-durable-walls-xww-53051",
+ "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-53051-sample-boca-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775705807",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Brushstroke",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53051"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52321",
+ "handle": "marketfield-faux-durable-walls-xwh-52321",
+ "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-angelica.jpg?v=1777480462",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52321"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76638",
+ "handle": "rustic-glam-vinyl-gpr-76638",
+ "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-76638-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731892",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Golden Yellow",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Tangerine",
+ "Textured",
+ "USFCID#vp885-119",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76638"
+ },
+ {
+ "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": "peter-s-plastered-walls-ppw-2878",
+ "handle": "peter-s-plastered-walls-ppw-2878",
+ "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-2878-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729074",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Mediterranean",
+ "Tan",
+ "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-2878"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52830",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52830",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-gold_touch.jpg?v=1777480700",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52830"
+ },
+ {
+ "sku": "xanadu-s-retro-geometric-scr-8033",
+ "handle": "xanadu-s-retro-geometric-scr-8033",
+ "title": "Xanadu's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f6a17e3e0e841401e522d8ba8687edb3.jpg?v=1572309105",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Green",
+ "Luxury Screen Printed Wallpapers",
+ "Mid-Century Modern",
+ "Olive",
+ "Paper",
+ "Reseda",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1"
+ ],
+ "max_price": 271.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/xanadu-s-retro-geometric-scr-8033"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2896_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2896_8-jpg",
+ "title": "Grove - Umber | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2896_8.jpg?v=1762296381",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dark Brown",
+ "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-2896_8-jpg"
+ },
+ {
+ "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": "robertocavalliwallpaper_dwrc18026-jpg",
+ "handle": "robertocavalliwallpaper_dwrc18026-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_dwrc18026.jpg?v=1587153861",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "European",
+ "Fauna",
+ "Imported",
+ "Italian",
+ "Leopard",
+ "Roberto Cavalli Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Volume 7",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/robertocavalliwallpaper_dwrc18026-jpg"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47638",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47638",
+ "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-47638-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710985",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Gray",
+ "Minimalist",
+ "Office",
+ "Pale Blue",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47638"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em9733r-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em9733r-jpg",
+ "title": "EM9733R | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9732r.jpg?v=1733873331",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM9733R",
+ "Gray",
+ "Light Gray",
+ "Paper",
+ "Textured",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9733r-jpg"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53075",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53075",
+ "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-53075-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703583",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53075"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53463",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53463",
+ "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-53463-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715865",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "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/hallandale-rice-paper-effect-durable-walls-xwt-53463"
+ },
+ {
+ "sku": "dwk-31000-koroseal-koroseal-type-2-vinyl-l521-63-luxe-falcon",
+ "handle": "dwk-31000-koroseal-koroseal-type-2-vinyl-l521-63-luxe-falcon",
+ "title": "Luxe Cognac - Beige Commercial Wallcovering | Koroseal",
+ "vendor": "Koroseal",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/l521-63_c0abe0b3-f842-4eac-b577-8f7edc802510.jpg?v=1751950673",
+ "tags": [
+ "2026 Inventory",
+ "Architectural Wallcoverings",
+ "Bedroom",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "DWK-31000",
+ "Faux Leather",
+ "Hallway",
+ "L521-63",
+ "Living Room",
+ "Rustic",
+ "Sand",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwk-31000-koroseal-koroseal-type-2-vinyl-l521-63-luxe-falcon"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58145",
+ "handle": "artisma-croco-vinyl-dwx-58145",
+ "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-58145-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699056",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Skin",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crocodile",
+ "Durable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Leather",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Neutral",
+ "Oatmeal",
+ "Organic",
+ "Organic Modern",
+ "Reptile",
+ "Residential",
+ "Rustic",
+ "Sand",
+ "Stone",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58145"
+ },
+ {
+ "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": "patoa-librato-wallpaper-xb7-66591",
+ "handle": "patoa-librato-wallpaper-xb7-66591",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/74378fab115542fcd8e134b98ba6ecd5.jpg?v=1775130578",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "cellulose",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Natural Wallcovering",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Solid/Textural",
+ "Striped",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66591"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad11383-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad11383-jpg",
+ "title": "Ambient Design - AD11383 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad11381.jpg?v=1733874055",
+ "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_ad11383-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5509-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5509-jpg",
+ "title": "Resham Plus - Ecru | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5509.jpg?v=1762304110",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "RAMPART®",
+ "Resham Plus",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5509-jpg"
+ },
+ {
+ "sku": "dwc-1001631",
+ "handle": "dwc-1001631",
+ "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_4693309521971.jpg?v=1775521236",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Floral",
+ "NCW4351-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paisley",
+ "Paper",
+ "Pink",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001631"
+ },
+ {
+ "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": "dwkk-138285",
+ "handle": "dwkk-138285",
+ "title": "Hakan - Ivory White By Threads | Vinyl Wallcovering Collection I |Solid Texture Wallcovering Print",
+ "vendor": "Threads",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/EW15023_104_5c202b7b-1b19-4d0e-8869-b8c0d8d9099c.jpg?v=1753291736",
+ "tags": [
+ "26.989In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Ew15023.104.0",
+ "Hakan",
+ "Ivory",
+ "Paper - 100%",
+ "Print",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Threads",
+ "United Kingdom",
+ "Vinyl",
+ "Vinyl Wallcovering Collection I",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-138285"
+ },
+ {
+ "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+ "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-52647-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709252",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Cream",
+ "Estimated Type: Paper",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52647"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_turn-tun-6301-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_turn-tun-6301-jpg",
+ "title": "Turn - Lapis | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/turn-tun-6301.jpg?v=1762311595",
+ "tags": [
+ "24% Nylon",
+ "76% Polyester",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "geometric",
+ "Lapis",
+ "Light Gray",
+ "Navy Blue",
+ "Polyester",
+ "textured",
+ "Turn",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_turn-tun-6301-jpg"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53115",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53115",
+ "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-53115-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716062",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53115"
+ },
+ {
+ "sku": "natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824",
+ "handle": "natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824",
+ "title": "Natalia Blue Curly Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47c919234233c22b6a5d9c7705f2d228.jpg?v=1572309956",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Leaf",
+ "Pink",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824"
+ },
+ {
+ "sku": "kingston-paintable-anaglytpa-original-wallpaper-gga-82664",
+ "handle": "kingston-paintable-anaglytpa-original-wallpaper-gga-82664",
+ "title": "Kingston Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0945bdf51749c0ccaf6dd4244b89ad76.jpg?v=1750790441",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Green",
+ "Jeffrey Stevens",
+ "Kingston Paintable Anaglytpa Original",
+ "Light Gray",
+ "Linen",
+ "Minimalist",
+ "Non-Woven",
+ "Off-White",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Scandinavian",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kingston-paintable-anaglytpa-original-wallpaper-gga-82664"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58087",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58087",
+ "title": "Sophie's Scrim | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58087-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734095",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Living Room",
+ "Organic Modern",
+ "Scrim",
+ "Serene",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58087"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2932",
+ "handle": "frank-s-faux-finish-fff-2932",
+ "title": "Frank's Faux Finish Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fff-2932-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714255",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2932"
+ },
+ {
+ "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": "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": "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": "lanvin-arpergeo-wallpaper-xb8-66614",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66614",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d8bcb9d94077da0d5c2cd677c745927f.jpg?v=1775133568",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Teal",
+ "Gray",
+ "Green",
+ "Lanvin Arpergeo Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Olive",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Striped",
+ "Teal",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66614"
+ },
+ {
+ "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": "puna-drive-natural-grassweave-hlw-73120",
+ "handle": "puna-drive-natural-grassweave-hlw-73120",
+ "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-73120-sample-clean.jpg?v=1774483554",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Orange",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73120"
+ },
+ {
+ "sku": "vaticano-durable-vinyl-dur-72375",
+ "handle": "vaticano-durable-vinyl-dur-72375",
+ "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72375-sample-clean.jpg?v=1774485261",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cornflower Blue",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vaticano Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72375"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsg9-5389-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsg9-5389-jpg",
+ "title": "Glasgow - Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5389.jpg?v=1762296849",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Glasgow",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5389-jpg"
+ },
+ {
+ "sku": "villa-velore-durable-vinyl-dur-72328",
+ "handle": "villa-velore-durable-vinyl-dur-72328",
+ "title": "Villa Velore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72328-sample-clean.jpg?v=1774485204",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "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",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Blue",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72328"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93032",
+ "handle": "lucy-large-crocodile-croca-93032",
+ "title": "Lucy Large Crocodile",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CROCA-93032-sample-clean_baf76921-efcf-4f2e-a5d0-676aae6e0f67.jpg?v=1774479234",
+ "tags": [
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Embossed",
+ "Embossed Texture",
+ "Farmhouse",
+ "Faux Leather",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Lodge",
+ "Lucy Large Crocodile Wallcovering",
+ "Office",
+ "Olive",
+ "Olive Green",
+ "Organic",
+ "Paper Backed Vinyl",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93032"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2739",
+ "handle": "faux-leaf-squares-fls-2739",
+ "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-2739-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711965",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2739"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5075-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5075-jpg",
+ "title": "Ashlar - Greige | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5075.jpg?v=1762286752",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Greige",
+ "Light Beige",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5075-jpg"
+ },
+ {
+ "sku": "sebago-grey-dry-brush-stripe-wallpaper-cca-83104",
+ "handle": "sebago-grey-dry-brush-stripe-wallpaper-cca-83104",
+ "title": "Sebago Grey Dry Brush Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1d4977da7cc42b6d3b82cf8ba03060f4.jpg?v=1572309968",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Grey",
+ "LA Walls",
+ "Light Beige",
+ "Light Gray",
+ "Non-woven",
+ "Off-white",
+ "Prepasted",
+ "Sebago Grey Dry Brush Stripe Wallcovering",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sebago-grey-dry-brush-stripe-wallpaper-cca-83104"
+ },
+ {
+ "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73269",
+ "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73269",
+ "title": "Caterina Embossed Vinyl - Type 2 | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-73269-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707471",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Caterina Embossed Vinyl",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Non-woven",
+ "Gold",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Light Brown",
+ "Luxe",
+ "Minimalist",
+ "Navy Blue",
+ "Olive Green",
+ "Phillip Romano Commercial",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73269"
+ },
+ {
+ "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": "paddock-type-ii-vinyl-wallcovering-xpd-48163",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48163",
+ "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-48163-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728337",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48163"
+ },
+ {
+ "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": "eur-80291-ncw4277-designer-wallcoverings-los-angeles",
+ "handle": "eur-80291-ncw4277-designer-wallcoverings-los-angeles",
+ "title": "Meredith 01 - 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_7513502449715.jpg?v=1775523192",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "COROMANDEL",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "Embossed",
+ "Grandmillennial",
+ "Living Room",
+ "Luxe",
+ "Meredith",
+ "NCW4277",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-White",
+ "Paper",
+ "Scroll",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80291-ncw4277-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "amity-snow-bleeding-heart-texture-wallpaper-cca-83291",
+ "handle": "amity-snow-bleeding-heart-texture-wallpaper-cca-83291",
+ "title": "Amity Snow Bleeding Heart Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dc1830f953e1c0ee99259a0444eed422.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "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/amity-snow-bleeding-heart-texture-wallpaper-cca-83291"
+ },
+ {
+ "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": "la-roche-durable-vinyl-dur-72069",
+ "handle": "la-roche-durable-vinyl-dur-72069",
+ "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-72069-sample-clean.jpg?v=1774484257",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Sage",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Pale Green",
+ "Seafoam Green",
+ "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-roche-durable-vinyl-dur-72069"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58150",
+ "handle": "artisma-croco-vinyl-dwx-58150",
+ "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-58150-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699220",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Skin",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crocodile",
+ "Dark Olive Green",
+ "Faux Leather",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Olive Green",
+ "Organic",
+ "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-58150"
+ },
+ {
+ "sku": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+ "handle": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+ "title": "Ellsworth Denim Sunny Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/851ee956abdc1c04e60d8a7222c57316.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Linen",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ellsworth-denim-sunny-stripe-wallpaper-cca-83145"
+ },
+ {
+ "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": "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": "eur-80419-ncw4396-designer-wallcoverings-los-angeles",
+ "handle": "eur-80419-ncw4396-designer-wallcoverings-los-angeles",
+ "title": "Brideshead Scroll Damask 03 - 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_7513507364915.jpg?v=1775523969",
+ "tags": [
+ "Arabesque",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Blue",
+ "Brideshead Scroll Damask",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Light Blue",
+ "Living Room",
+ "NCW4396",
+ "NCW4396-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Turquoise",
+ "Paper",
+ "Scroll",
+ "Serene",
+ "Single",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80419-ncw4396-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52898",
+ "handle": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52898",
+ "title": "St Lawrence 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/xws-52898-sample-st-lawrence-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734584",
+ "tags": [
+ "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",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52898"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ols-3561-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ols-3561-jpg",
+ "title": "Olsen - Illusion | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ols-3561.jpg?v=1762302992",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Illusion",
+ "Olsen",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ols-3561-jpg"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53481",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53481",
+ "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-53481-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715935",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53481"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47133",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47133",
+ "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-47133-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700576",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Sand",
+ "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-47133"
+ },
+ {
+ "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": "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": "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": "eden-commercial-wallcovering-eden-edn-008",
+ "handle": "eden-commercial-wallcovering-eden-edn-008",
+ "title": "Eden Commercial Wallcovering",
+ "vendor": "Newmor Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/NEWMOR_fd857207-5b0e-43c5-9930-f78a6144bb83.jpg?v=1573940022",
+ "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-008"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+ "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-herb_dc4f5d17-9274-4cc4-9737-d27f06874f92.jpg?v=1777481171",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Green",
+ "Bedroom",
+ "Color: Green",
+ "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",
+ "Khaki",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52357"
+ },
+ {
+ "sku": "contempo-diamond-vinyl-dwx-58016",
+ "handle": "contempo-diamond-vinyl-dwx-58016",
+ "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-58016-sample-contempo-diamond-vinyl-hollywood-wallcoverings.jpg?v=1775709048",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Diamond",
+ "Geometric",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Minimalist",
+ "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-58016"
+ },
+ {
+ "sku": "captiva-light-pink-floral-toss-wallpaper-cca-83046",
+ "handle": "captiva-light-pink-floral-toss-wallpaper-cca-83046",
+ "title": "Captiva Light Pink Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/990a597d9507031518df912cab255638.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-light-pink-floral-toss-wallpaper-cca-83046"
+ },
+ {
+ "sku": "dwss-72614",
+ "handle": "dwss-72614",
+ "title": "Sofia Wood skye sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/656-47_image1_5fa69842-de42-4c7d-b6d5-17939b7bd7cd.jpg?v=1646104835",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Nouveau",
+ "Arts & Crafts",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "Gray",
+ "Light Blue",
+ "Light Grey",
+ "Non-Woven",
+ "Paper",
+ "Sandberg",
+ "Sandberg Botanical",
+ "Scandinavian",
+ "Skye",
+ "Sofia Wood",
+ "Sofia Wood skye sample",
+ "Swedish Design",
+ "Timeless",
+ "Wallcovering",
+ "Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72614"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53072",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53072",
+ "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-53072-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703573",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Light Grey",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53072"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em9516-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em9516-jpg",
+ "title": "EM9516 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9515.jpg?v=1733873334",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM9516",
+ "Green",
+ "Light Green",
+ "Paper",
+ "Textured",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9516-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5039-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5039-jpg",
+ "title": "Sparta Plus - Marble | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5039.jpg?v=1762308728",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Marble",
+ "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-5039-jpg"
+ },
+ {
+ "sku": "oxford-rust-brick-texture-wallpaper-cca-82957",
+ "handle": "oxford-rust-brick-texture-wallpaper-cca-82957",
+ "title": "Oxford Rust Brick Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1dd123dbd173934583f74922a5ff8b8b.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Expanded Vinyl",
+ "Farmhouse",
+ "Faux",
+ "Faux Effects",
+ "Industrial",
+ "LA Walls",
+ "Masculine",
+ "Orange",
+ "Peelable",
+ "Phasing-2026-04",
+ "Rust",
+ "Series: Brewster",
+ "Textured",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-rust-brick-texture-wallpaper-cca-82957"
+ },
+ {
+ "sku": "paul-s-retro-geometric-scr-8010",
+ "handle": "paul-s-retro-geometric-scr-8010",
+ "title": "Paul's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/147d3764354177a7aade12345302cf12_de1f5c98-85a0-49b1-838b-b9ceb9329907.gif?v=1572309104",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Minimalist",
+ "Paper",
+ "Paul's Retro Geometric",
+ "Screen Print",
+ "Solid",
+ "vinyl",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paul-s-retro-geometric-scr-8010"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47723",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47723",
+ "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-47723-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716113",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Moss",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47723"
+ },
+ {
+ "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": "vernon-durable-walls-xwr-52697",
+ "handle": "vernon-durable-walls-xwr-52697",
+ "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-52697-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735782",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Khaki",
+ "Living Room",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vernon Durable",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52697"
+ },
+ {
+ "sku": "motley-by-innovations-usa-dwc-motley-3",
+ "handle": "motley-by-innovations-usa-dwc-motley-3",
+ "title": "Motley | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Motley-3.jpg?v=1736199253",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Blue",
+ "Dark Gray",
+ "Geometric",
+ "Gray",
+ "Innovations USA",
+ "Motley",
+ "Motley-3",
+ "Non-woven",
+ "Purple",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/motley-by-innovations-usa-dwc-motley-3"
+ },
+ {
+ "sku": "palazzo-no-12-warm-cream-wallcovering-versace",
+ "handle": "palazzo-no-12-warm-cream-wallcovering-versace",
+ "title": "Palazzo No 12 Warm Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5e87cc64d27700e38db7e16ed2fd18ab.jpg?v=1773710444",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Wood",
+ "display_variant",
+ "Estimated Type: Paper",
+ "Italian",
+ "Light Wood",
+ "Living Room",
+ "Luxury",
+ "Needs-Image",
+ "Off-white",
+ "Office",
+ "Palazzo No 12",
+ "Palazzo No 12 Warm Cream Wallcovering",
+ "Paper",
+ "Paste the wall",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Wallcovering",
+ "Warm",
+ "Warm Cream",
+ "Wood"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/palazzo-no-12-warm-cream-wallcovering-versace"
+ },
+ {
+ "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": "zoe-snow-coco-texture-wallpaper-cca-83292",
+ "handle": "zoe-snow-coco-texture-wallpaper-cca-83292",
+ "title": "Zoe Snow Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/67ed6df3aa596bac95c571eaf2a622a3.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "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-snow-coco-texture-wallpaper-cca-83292"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72100",
+ "handle": "gironde-durable-vinyl-dur-72100",
+ "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-72100-sample-clean.jpg?v=1774484393",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72100"
+ },
+ {
+ "sku": "eur-80337-ncw4307-designer-wallcoverings-los-angeles",
+ "handle": "eur-80337-ncw4307-designer-wallcoverings-los-angeles",
+ "title": "Dormiers Stripe 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_7513504677939.jpg?v=1775523465",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dormiers Stripe",
+ "Geometric",
+ "Grey",
+ "Hallway",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "NCW4307",
+ "NCW4307-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80337-ncw4307-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_obt-9467_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_obt-9467_8-jpg",
+ "title": "Orbit - Sapphire | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/obt-9467_8.jpg?v=1762302816",
+ "tags": [
+ "100% Polycarbonate",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Orbit",
+ "Polycarbonate",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_obt-9467_8-jpg"
+ },
+ {
+ "sku": "ncw4353-04",
+ "handle": "ncw4353-04",
+ "title": "Nina Campbell Wallcoverings - Spring 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_4497264607283.jpg?v=1775520568",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Green",
+ "Leaf",
+ "Multi",
+ "NCW4353-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4353-04"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_em10263b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10263b-jpg",
+ "title": "EM10263B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10262b.jpg?v=1733873327",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM10263B",
+ "Gray",
+ "Light Gray",
+ "Non-woven",
+ "Textured",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10263b-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5108-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5108-jpg",
+ "title": "Kami - Onyx | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5108.jpg?v=1762298607",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Kami",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5108-jpg"
+ },
+ {
+ "sku": "susie-grey-chevron-wallpaper-cca-83037",
+ "handle": "susie-grey-chevron-wallpaper-cca-83037",
+ "title": "Susie Grey Chevron Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/108ec9c2241c4abc3ed0e1b3b8aeeeec.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Chevron",
+ "Children",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Gray",
+ "Kids",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susie-grey-chevron-wallpaper-cca-83037"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72011",
+ "handle": "marseilles-durable-vinyl-dur-72011",
+ "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-72011-sample-clean.jpg?v=1774483962",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72011"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53384",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53384",
+ "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-chardonnay_8f48b1b1-f87b-4c9c-81bc-1fc3cc1d759d.jpg?v=1777481524",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Dark Brown",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "solid",
+ "Tan",
+ "textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53384"
+ },
+ {
+ "sku": "kittery-brick-affinity-stria-wallpaper-cca-83137",
+ "handle": "kittery-brick-affinity-stria-wallpaper-cca-83137",
+ "title": "Kittery Brick Affinity Stria Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/86fbcc9218a5c9975ece2f334a984895.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Red",
+ "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-brick-affinity-stria-wallpaper-cca-83137"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dprh-501-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dprh-501-jpg",
+ "title": "Perch - Dusk | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dprh-501.jpg?v=1762291526",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Dusk",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Mylar",
+ "Paper",
+ "Perch",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dprh-501-jpg"
+ },
+ {
+ "sku": "zoe-olive-coco-damask-wallpaper-cca-83262",
+ "handle": "zoe-olive-coco-damask-wallpaper-cca-83262",
+ "title": "Zoe Olive Coco Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5d3945163ff4a2339807343a7b6c4347.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Embossed",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-olive-coco-damask-wallpaper-cca-83262"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47775",
+ "handle": "halifax-specialty-wallcovering-xlk-47775",
+ "title": "Halifax Specialty | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlk-47775-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715747",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Pale Gold",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47775"
+ },
+ {
+ "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": "ghost-ship-small-mural-by-retro-walls-rtr-37233",
+ "handle": "ghost-ship-small-mural-by-retro-walls-rtr-37233",
+ "title": "Ghost Ship Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/00d1ac20cb71fdca8aa628917c0f9706.jpg?v=1572309702",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Paper",
+ "Scenic",
+ "Ship",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ghost-ship-small-mural-by-retro-walls-rtr-37233"
+ },
+ {
+ "sku": "natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826",
+ "handle": "natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826",
+ "title": "Natalia Moss Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/73cc07073de8f7b9b4e324dff0ba2d94.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-moss-floral-scroll-wallpaper-wallpaper-cca-82826"
+ },
+ {
+ "sku": "dwkk-129252",
+ "handle": "dwkk-129252",
+ "title": "W3790-3 Green | Kravet Design | Candice Olson Collection | Botanical & Floral Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3790_3_45abf016-2b1d-4b17-b907-2c30923cfe5b.jpg?v=1753291894",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Botanical",
+ "Botanical & Floral",
+ "Brown",
+ "Candice Olson Collection",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Leaf",
+ "Non Woven - 100%",
+ "Paper",
+ "Print",
+ "United States",
+ "W3790-3",
+ "W3790.3.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129252"
+ },
+ {
+ "sku": "eur-80359-ncw4352-designer-wallcoverings-los-angeles",
+ "handle": "eur-80359-ncw4352-designer-wallcoverings-los-angeles",
+ "title": "Bonnelles Diamond 03 - 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_7513505366067.jpg?v=1775523601",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Bonnelles Diamond",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "LES INDIENNES",
+ "Light Blue",
+ "Lightblue",
+ "Living Room",
+ "Modern",
+ "NCW4352",
+ "NCW4352-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Pale Blue",
+ "Paper",
+ "Serene",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80359-ncw4352-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "gianna-grey-texture-wallpaper-wallpaper-cca-82882",
+ "handle": "gianna-grey-texture-wallpaper-wallpaper-cca-82882",
+ "title": "Gianna Grey Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a317a93d880c24cf4559b055e471b6d.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Effects",
+ "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/gianna-grey-texture-wallpaper-wallpaper-cca-82882"
+ },
+ {
+ "sku": "dwss-71376",
+ "handle": "dwss-71376",
+ "title": "Anton - Sheer Gray Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/814-11_3.jpg?v=1646250684",
+ "tags": [
+ "Anton",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Grey",
+ "Non-Woven",
+ "Pattern",
+ "Sandberg",
+ "Sandberg Anton",
+ "Sandberg Wallcovering",
+ "Scandinavian",
+ "Sheer Gray",
+ "Swedish Design",
+ "Textured",
+ "Timeless",
+ "Wallcovering"
+ ],
+ "max_price": 146.1,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-71376"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dbrq-300-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dbrq-300-jpg",
+ "title": "Baroque - Tungsten | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DBRQ-300-Swatch.jpg?v=1762290794",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Damask",
+ "Digital Curated",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Mylar",
+ "Paper",
+ "Tungsten",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dbrq-300-jpg"
+ },
+ {
+ "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": "eur-80117-ncw4121-designer-wallcoverings-los-angeles",
+ "handle": "eur-80117-ncw4121-designer-wallcoverings-los-angeles",
+ "title": "Bothwell 02 - 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_7513496354867.jpg?v=1775522218",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bothwell",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hallway",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "NCW4121",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Serene",
+ "Smoke",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80117-ncw4121-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9818-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9818-jpg",
+ "title": "ST9818 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9817.jpg?v=1733872211",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9818-jpg"
+ },
+ {
+ "sku": "eur-80433-ncw4492-designer-wallcoverings-los-angeles",
+ "handle": "eur-80433-ncw4492-designer-wallcoverings-los-angeles",
+ "title": "Sackville Stripe 03 - 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_7513507889203.jpg?v=1775524064",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "Gold",
+ "Golden Yellow",
+ "Living Room",
+ "NCW4492",
+ "NCW4492-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Yellow",
+ "Paper",
+ "Sackville Stripe",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80433-ncw4492-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53527",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53527",
+ "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-sunshine.jpg?v=1777480850",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53527"
+ },
+ {
+ "sku": "kia-island-palm-shadow-wallpaper-trf-56858",
+ "handle": "kia-island-palm-shadow-wallpaper-trf-56858",
+ "title": "Kia Island Palm Shadow | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9d29dc5f11982d34892d18f757d270b6.jpg?v=1750789732",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Gold",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "jungle",
+ "large scale",
+ "leaf",
+ "medium brown",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "palm",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "rain forest",
+ "Scenic",
+ "Series: York",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "trees",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kia-island-palm-shadow-wallpaper-trf-56858"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5306-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5306-jpg",
+ "title": "Sparta - Fern | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5306.jpg?v=1762309279",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Fern",
+ "Green",
+ "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-5306-jpg"
+ },
+ {
+ "sku": "dwkk-129266",
+ "handle": "dwkk-129266",
+ "title": "W3795-5 Blue | Kravet Design | Candice Olson Collection | Abstract Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3795_5_2640b290-35fb-4c40-af4a-e583a2bab867.jpg?v=1753291882",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blue",
+ "Candice Olson Collection",
+ "Commercial",
+ "display_variant",
+ "Floral",
+ "Gray",
+ "Hand-painted",
+ "Kravet",
+ "Kravet Design",
+ "Multi",
+ "Non Woven - 100%",
+ "Paper",
+ "Print",
+ "United States",
+ "W3795-5",
+ "W3795.5.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129266"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10405-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10405-jpg",
+ "title": "ST10405 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10404.jpg?v=1733872189",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10405-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9484-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9484-jpg",
+ "title": "Lune - Taupe | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9484.jpg?v=1762299086",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Lune",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9484-jpg"
+ },
+ {
+ "sku": "dwkk-140164",
+ "handle": "dwkk-140164",
+ "title": "Ikat Stripe Wp - Coral Pink 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_917_4463401f-bd36-4340-bda4-cef9ef2c7749.jpg?v=1753291827",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Bohemian",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Linen",
+ "Luxury",
+ "Pbfc-3531.917.0",
+ "Pink",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140164"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56844",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56844",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a0d469734f349f97ed1d6d822315220b.jpg?v=1750789752",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "Beige",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Ivory",
+ "Jeffrey Stevens",
+ "Light Yellow",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "Soft White",
+ "stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56844"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72403",
+ "handle": "rivo-dulce-durable-vinyl-dur-72403",
+ "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-72403-sample-clean.jpg?v=1774485391",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Sand",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72403"
+ },
+ {
+ "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": "chinese-fret-walls-cfw-9495",
+ "handle": "chinese-fret-walls-cfw-9495",
+ "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-9495-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708085",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "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-9495"
+ },
+ {
+ "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": "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": "wolfgordonwallcovering_dwwg_ron-3345-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ron-3345-jpg",
+ "title": "Ronan - Glint | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ron-3345.jpg?v=1762304906",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Glint",
+ "Light Brown",
+ "Ronan",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ron-3345-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dgbj-531-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dgbj-531-jpg",
+ "title": "Green Bog Jasper - Granite | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dgbj-531.jpg?v=1762291097",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Granite",
+ "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-531-jpg"
+ },
+ {
+ "sku": "eur-80126-ncw4123-designer-wallcoverings-los-angeles",
+ "handle": "eur-80126-ncw4123-designer-wallcoverings-los-angeles",
+ "title": "Abbotsford 07 - 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_7513496649779.jpg?v=1775522278",
+ "tags": [
+ "Abbotsford",
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "NCW4123",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80126-ncw4123-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "amity-champagne-bleeding-heart-scroll-wallpaper-cca-83254",
+ "handle": "amity-champagne-bleeding-heart-scroll-wallpaper-cca-83254",
+ "title": "Amity Champagne Bleeding Heart Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/59e8e9fbb0243c9e488de9afb2457d4c.jpg?v=1572309982",
+ "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/amity-champagne-bleeding-heart-scroll-wallpaper-cca-83254"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2760",
+ "handle": "faux-leaf-squares-fls-2760",
+ "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-2760-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712030",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2760"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_wwdf-220_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-220_8-jpg",
+ "title": "WonderWood® - Black Ebony, Qtd | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/WWDF-220f.jpg?v=1762312743",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Architectural",
+ "Black",
+ "Black Ebony Qtd",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Natural",
+ "Reconstituted",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-220_8-jpg"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73060",
+ "handle": "coldwater-hills-panels-hlw-73060",
+ "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-73060-sample-clean.jpg?v=1774483273",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Non-woven",
+ "Office",
+ "Organic Modern",
+ "Sage Green",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Wallcovering",
+ "Watercolor"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73060"
+ },
+ {
+ "sku": "ncw4302-02",
+ "handle": "ncw4302-02",
+ "title": "Les Rêves Mourlot Ivory/Pearl - Oyster 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_4497261920307.jpg?v=1775520230",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Light Gray",
+ "NCW4302-02",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4302-02"
+ },
+ {
+ "sku": "ncw4393-04",
+ "handle": "ncw4393-04",
+ "title": "Ashdown Benmore Eau De Nil/Gilver - 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_4497266016307.jpg?v=1775520789",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Green",
+ "Leaf",
+ "NCW4393-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Tropical",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4393-04"
+ },
+ {
+ "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": "wells-moss-candy-stripe-wallpaper-cca-83228",
+ "handle": "wells-moss-candy-stripe-wallpaper-cca-83228",
+ "title": "Wells Moss Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/45beb56f0a527e4b08bf91cfa3f38c20.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Moss",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-moss-candy-stripe-wallpaper-cca-83228"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53237",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53237",
+ "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-53237-sample-clean.jpg?v=1774481915",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Copper",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53237"
+ },
+ {
+ "sku": "mazarin-by-innovations-usa-dwc-mazarin-2",
+ "handle": "mazarin-by-innovations-usa-dwc-mazarin-2",
+ "title": "Mazarin | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-2_ee17036b-dd15-48cd-aea5-90415ce212ac.jpg?v=1736199305",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "ASTM E84",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Gray",
+ "Geometric",
+ "Gold",
+ "Innovations USA",
+ "Mazarin",
+ "Mazarin-2",
+ "Non-woven",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-2"
+ },
+ {
+ "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": "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": "mazarin-by-innovations-usa-dwc-mazarin-3",
+ "handle": "mazarin-by-innovations-usa-dwc-mazarin-3",
+ "title": "Mazarin | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-3.jpg?v=1736198927",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Innovations USA",
+ "Mazarin",
+ "Mazarin-3",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-3"
+ },
+ {
+ "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": "lanvin-arpergeo-wallpaper-xb8-66599",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66599",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/375df90dec8e0f74a8a6ef3f32da27ed.jpg?v=1775131476",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Beige",
+ "Light Green",
+ "Living Room",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Tan",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66599"
+ },
+ {
+ "sku": "versace-plain-gold-wallcovering-versace",
+ "handle": "versace-plain-gold-wallcovering-versace",
+ "title": "Versace Plain Gold Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9458baf0d981fe45fa5c0cde2a0ca442.jpg?v=1773706459",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Estimated Type: Paper",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Mustard",
+ "Office",
+ "Organic Modern",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-gold-wallcovering-versace"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47821",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47821",
+ "title": "Ikeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xls-47821-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719403",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47821"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47217",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47217",
+ "title": "Barnard Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjp-47217-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702261",
+ "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 Tan",
+ "Barnard Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "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",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "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": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47217"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5078-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5078-jpg",
+ "title": "Ashlar - Citadel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5078.jpg?v=1762286865",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Citadel",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5078-jpg"
+ },
+ {
+ "sku": "eur-80323-ncw4304-designer-wallcoverings-los-angeles",
+ "handle": "eur-80323-ncw4304-designer-wallcoverings-los-angeles",
+ "title": "Marguerite Damask 04 - 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_7513504153651.jpg?v=1775523377",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES REVES",
+ "Living Room",
+ "Marguerite Damask",
+ "NCW4304",
+ "NCW4304-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80323-ncw4304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2882",
+ "handle": "peter-s-plastered-walls-ppw-2882",
+ "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-2882-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729088",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "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-2882"
+ },
+ {
+ "sku": "komo-diamond-bamboo-wallpaper-trf-56822",
+ "handle": "komo-diamond-bamboo-wallpaper-trf-56822",
+ "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/aaf05197fb0207ce6565bde6120c5c3c.jpg?v=1750789759",
+ "tags": [
+ "arbor",
+ "Architectural",
+ "Asian",
+ "bamboo",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "diamond",
+ "Discontinued",
+ "frame work",
+ "Geometric",
+ "Gold",
+ "Gray",
+ "grille",
+ "Jeffrey Stevens",
+ "lattice",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "screen",
+ "Series: York",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "treillage",
+ "trellis",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/komo-diamond-bamboo-wallpaper-trf-56822"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5072-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5072-jpg",
+ "title": "Acute - Sienna | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5072.jpg?v=1762357945",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Paper",
+ "Tan",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5072-jpg"
+ },
+ {
+ "sku": "medusa-gold-metallic-wallcovering-versace",
+ "handle": "medusa-gold-metallic-wallcovering-versace",
+ "title": "Medusa Gold Metallic Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a40cae9bdce70c5d7e8bff58ed6ae602.jpg?v=1773706350",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Goldenrod",
+ "Hotel Lobby",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medusa Gold",
+ "Medusa Gold Metallic Wallcovering",
+ "Mustard Yellow",
+ "Paste the wall",
+ "Solid",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut Brown"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-gold-metallic-wallcovering-versace"
+ },
+ {
+ "sku": "xara-s-retro-geometric-scr-8047",
+ "handle": "xara-s-retro-geometric-scr-8047",
+ "title": "Xara's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/189794208dd93264c6aa1ef38ea760a8.jpg?v=1572309105",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Luxury Screen Printed Wallpapers",
+ "Mid-Century Modern",
+ "Paper",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/xara-s-retro-geometric-scr-8047"
+ },
+ {
+ "sku": "emerald-graham-brown-2",
+ "handle": "emerald-graham-brown-2",
+ "title": "Emerald | Graham & Brown",
+ "vendor": "Graham & Brown",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/118032_TILE_BORNEO_2520EMERALD_01__42558.1769761018.jpg?v=1772336167",
+ "tags": [
+ "118032",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Contemporary",
+ "Dark Academia",
+ "Dark Green",
+ "Dark Teal",
+ "Dining Room",
+ "Estimated Type: Non-woven",
+ "Graham & Brown",
+ "Green",
+ "Large",
+ "Leaf",
+ "legal",
+ "light green",
+ "Living Room",
+ "Lobby",
+ "Moody",
+ "Non-woven",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Palm",
+ "Pattern",
+ "Restaurant",
+ "Sage Green",
+ "Smooth",
+ "Taupe",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Tropical",
+ "Tropical Leaf",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/emerald-graham-brown-2"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2757",
+ "handle": "faux-leaf-squares-fls-2757",
+ "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-2757-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712021",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2757"
+ },
+ {
+ "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": "eur-80368-ncw4353-designer-wallcoverings-los-angeles",
+ "handle": "eur-80368-ncw4353-designer-wallcoverings-los-angeles",
+ "title": "Colbert 04 - 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_7513505595443.jpg?v=1775523646",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Colbert",
+ "Commercial",
+ "Contemporary",
+ "Dark Brown",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "LES INDIENNES",
+ "Light Yellow",
+ "Lime Green",
+ "Living Room",
+ "NCW4353",
+ "NCW4353-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Sage Green",
+ "Taupe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80368-ncw4353-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201074",
+ "handle": "hollywood-skyline-xhw-201074",
+ "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-verdant.jpg?v=1777480934",
+ "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",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Gray",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "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-201074"
+ },
+ {
+ "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": "vernon-durable-walls-xwp-52688",
+ "handle": "vernon-durable-walls-xwp-52688",
+ "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-52688-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735756",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52688"
+ },
+ {
+ "sku": "dwkk-129766",
+ "handle": "dwkk-129766",
+ "title": "W3928 - 315 Ivory | 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_315_9c328816-9e05-4214-81dd-f7122efe828c.jpg?v=1753322317",
+ "tags": [
+ "27In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Ronald Redding Arts & Crafts",
+ "Sage Green",
+ "Serene",
+ "Sky Blue",
+ "Tan",
+ "Taupe",
+ "Traditional",
+ "United States",
+ "W3928",
+ "W3928.315.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129766"
+ },
+ {
+ "sku": "lafayette-modern-embossed-durable-walls-xwf-52254",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52254",
+ "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-52254-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721082",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52254"
+ },
+ {
+ "sku": "eur-80227-ncw4202-designer-wallcoverings-los-angeles",
+ "handle": "eur-80227-ncw4202-designer-wallcoverings-los-angeles",
+ "title": "Estella 04 - 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_7513500385331.jpg?v=1775522845",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "Estella",
+ "Farmhouse",
+ "Floral",
+ "FONTIBRE",
+ "Grandmillennial",
+ "Light Beige",
+ "Living Room",
+ "NCW4202",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80227-ncw4202-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76645",
+ "handle": "rustic-glam-vinyl-gpr-76645",
+ "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-76645-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731996",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Industrial",
+ "Living Room",
+ "Luxe",
+ "Mauve",
+ "Navy",
+ "Pink",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "USFCID#vp885-179",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76645"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76635",
+ "handle": "rustic-glam-vinyl-gpr-76635",
+ "title": "Rustic Glam Vinyl",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76635-sample-rustic-glam-vinyl.jpg?v=1775731651",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bling",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Glass Bead",
+ "Green",
+ "Hallway",
+ "Hand Crafted",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Mural",
+ "Organic",
+ "Rustic",
+ "Sage",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76635"
+ },
+ {
+ "sku": "solar-system-large-mural-by-retro-walls-rtr-37244",
+ "handle": "solar-system-large-mural-by-retro-walls-rtr-37244",
+ "title": "Solar System Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/538e31f23a3351d04ffc95effed4333c.jpg?v=1572309702",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Multi",
+ "Mural",
+ "Orange",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/solar-system-large-mural-by-retro-walls-rtr-37244"
+ },
+ {
+ "sku": "dwkk-gbad1efcd",
+ "handle": "dwkk-gbad1efcd",
+ "title": "W3799-8 Black | Kravet Design | Candice Olson Collection |Damask Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3799_8_b1cbc425-8b11-49c9-b173-221f3ed81071.jpg?v=1753121345",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Candice Olson Collection",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "display_variant",
+ "Gold",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Living Room",
+ "Non Woven - 100%",
+ "Off-white",
+ "Ogee",
+ "Pattern",
+ "Print",
+ "Quatrefoil",
+ "Sophisticated",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "United States",
+ "Vinyl",
+ "W3799-8",
+ "W3799.8.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-gbad1efcd"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53380",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53380",
+ "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-loire_e598bc96-7c73-476d-9336-b76ab1dd81d3.jpg?v=1777481524",
+ "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",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53380"
+ },
+ {
+ "sku": "moroccan-bronze-wash-wbs-39665",
+ "handle": "moroccan-bronze-wash-wbs-39665",
+ "title": "Moroccan Bronze Wash | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39665-sample-moroccan-bronze-wash-hollywood-wallcoverings.jpg?v=1775726427",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bricks and Stones",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Embossed Texture",
+ "Faux",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Office",
+ "Orange",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Russet",
+ "Rustic",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood"
+ ],
+ "max_price": 46.31,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-bronze-wash-wbs-39665"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br004-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br004-jpg",
+ "title": "BR004 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br003.jpg?v=1733873700",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br004-jpg"
+ },
+ {
+ "sku": "dwss-72645",
+ "handle": "dwss-72645",
+ "title": "Ida light turquoise Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/705-07_image1_6f51caf4-4fd3-4378-919a-1ba4d0cffaf1.jpg?v=1646104936",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Ida",
+ "Ida light turquoise Sample",
+ "Light Gray",
+ "LIGHT TURQUOISE",
+ "P705-07",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72645"
+ },
+ {
+ "sku": "dylan-cream-candy-stripe-wallpaper-cca-82979",
+ "handle": "dylan-cream-candy-stripe-wallpaper-cca-82979",
+ "title": "Dylan Cream Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ed5566aef834fd8f19b5328fcf3f6d2d.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dylan-cream-candy-stripe-wallpaper-cca-82979"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56845",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56845",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/188fb516a217f62458216ed4b49f09c7.jpg?v=1750789751",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "Beige",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Jeffrey Stevens",
+ "Light Tan",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "Warm Beige",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56845"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66523",
+ "handle": "tigressa-bargea-wallpaper-xb3-66523",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4d02c40fdd78a6d797b501e8fe2127d4.jpg?v=1775129140",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Geometric",
+ "Light Tan",
+ "Living Room",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66523"
+ },
+ {
+ "sku": "crushed-costoluto-vinyl-dwx-58011",
+ "handle": "crushed-costoluto-vinyl-dwx-58011",
+ "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-58011-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709702",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crushed",
+ "Dark Brown",
+ "Durable",
+ "Gold",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "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-58011"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5042-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5042-jpg",
+ "title": "Sparta - Gray Armor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5042.jpg?v=1762308837",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Gray Armor",
+ "Light Gray",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5042-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": "mr-diorio-wallpaper-xa8-66472",
+ "handle": "mr-diorio-wallpaper-xa8-66472",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/998cf2ae66b46d6592b962aebe8a5a07.jpg?v=1775125195",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Living Room",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66472"
+ },
+ {
+ "sku": "dwc-1001635",
+ "handle": "dwc-1001635",
+ "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_4693309784115.jpg?v=1775521261",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "NCW4351-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001635"
+ },
+ {
+ "sku": "lydia-s-croc-embossed-damask-prp-56542",
+ "handle": "lydia-s-croc-embossed-damask-prp-56542",
+ "title": "Lydia's Croc Embossed Damask",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ScreenShot2024-01-17at11.49.33AM.png?v=1705520998",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Designer Wallcoverings",
+ "Embossed Texture",
+ "Fabric",
+ "Gray",
+ "Light Gray",
+ "Lydia's Croc Embossed Damask",
+ "Natural",
+ "Natural Wonders",
+ "Off-white",
+ "Pattern",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lydia-s-croc-embossed-damask-prp-56542"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10250-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10250-jpg",
+ "title": "SM10250 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10249.jpg?v=1733872461",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10250-jpg"
+ },
+ {
+ "sku": "dwc-1001585",
+ "handle": "dwc-1001585",
+ "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_4693342912563.jpg?v=1775521668",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "NCW4300-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001585"
+ },
+ {
+ "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": "vanessa-pink-henna-brocade-wallpaper-wallpaper-cca-82833",
+ "handle": "vanessa-pink-henna-brocade-wallpaper-wallpaper-cca-82833",
+ "title": "Vanessa Pink Henna Brocade Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/927b579247f79c1e958ee35729a65d4a.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "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-pink-henna-brocade-wallpaper-wallpaper-cca-82833"
+ },
+ {
+ "sku": "kenley-aqua-polka-dots-wallpaper-wallpaper-cca-82877",
+ "handle": "kenley-aqua-polka-dots-wallpaper-wallpaper-cca-82877",
+ "title": "Kenley Aqua Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/63cea179edcc2f3e8782c659bc3eaec8.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Paper",
+ "Polka Dot",
+ "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-aqua-polka-dots-wallpaper-wallpaper-cca-82877"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48575",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48575",
+ "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-48575-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735727",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Serene",
+ "Stucco",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48575"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72040",
+ "handle": "saint-helene-durable-vinyl-dur-72040",
+ "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-72040-sample-clean.jpg?v=1774484083",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "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-72040"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58106",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58106",
+ "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-58106-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715336",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Brown",
+ "Burlap",
+ "Burnt Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Neutral",
+ "Rustic",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58106"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm8005-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm8005-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/sm8005.jpg?v=1762358770",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Metallic",
+ "Solid",
+ "SOLID METAL",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm8005-jpg"
+ },
+ {
+ "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": "twickenham-type-ii-vinyl-wallcovering-xqm-48538",
+ "handle": "twickenham-type-ii-vinyl-wallcovering-xqm-48538",
+ "title": "Twickenham Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XQM-48538-sample-clean.jpg?v=1774480574",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Paper",
+ "Red",
+ "Rosewood",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Twickenham Type 2 Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/twickenham-type-ii-vinyl-wallcovering-xqm-48538"
+ },
+ {
+ "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52652",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52652",
+ "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-52652-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709271",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Geometric",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mid-century",
+ "Mid-century Modern",
+ "Modern",
+ "Office",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52652"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58133",
+ "handle": "jutely-vinyl-dwx-58133",
+ "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-58133-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720384",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Grasscloth",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Jute",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Olive Green",
+ "Regencycore",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "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/jutely-vinyl-dwx-58133"
+ },
+ {
+ "sku": "dwkk-129703",
+ "handle": "dwkk-129703",
+ "title": "W3914-8 Black | Kravet Design | Ronald Redding Traveler |Herringbone/Tweed Stripes Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3914_8_c01fe4ae-c834-43e8-b08b-b4b7c88d5473.jpg?v=1753322446",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Herringbone/Tweed",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Modern",
+ "Non Woven - 100%",
+ "Non-Woven",
+ "Print",
+ "Ronald Redding Traveler",
+ "Silver Gray",
+ "Sophisticated",
+ "Stripe",
+ "Stripes",
+ "Texture",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3914-8",
+ "W3914.8.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129703"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9491",
+ "handle": "chinese-fret-walls-cfw-9491",
+ "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-9491-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708071",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9491"
+ },
+ {
+ "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": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-lake.jpg?v=1777480706",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52834"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010413",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010413",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-tussah.jpg?v=1777481100",
+ "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 Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Faux Woven Textile Wall",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Gray",
+ "Light Taupe",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven Look",
+ "Yellow"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010413"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73117",
+ "handle": "puna-drive-natural-grassweave-hlw-73117",
+ "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-73117-sample-clean.jpg?v=1774483541",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73117"
+ },
+ {
+ "sku": "dwss-72547",
+ "handle": "dwss-72547",
+ "title": "Leonard black Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/589-81_image1_f3fe129d-cd14-4902-95c4-5141d8d9a943.jpg?v=1646104614",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Deer",
+ "Dog",
+ "Elephant",
+ "Giraffe",
+ "Leonard",
+ "Leonard black Sample",
+ "Leopard",
+ "Lion",
+ "P589-81",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Scenic",
+ "Tiger",
+ "Turtle",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72547"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48224",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48224",
+ "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-48224-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730945",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48224"
+ },
+ {
+ "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": "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_ad10341-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10341-jpg",
+ "title": "Ambient Design - AD10341 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10340.jpg?v=1733874105",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maroon",
+ "Red",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10341-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-414",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-414",
+ "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/1a3493412e4db683c6f87425fdff04e1_e2772642-7578-4ea9-86a2-d48a59c95c6a.jpg?v=1745458317",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-414"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76647",
+ "handle": "rustic-glam-vinyl-gpr-76647",
+ "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-76647-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775732021",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Denim Blue",
+ "Farmhouse",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Rustic",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "USFCID#vp885-189",
+ "Vinyl",
+ "Wallcovering",
+ "Weathered Wood",
+ "White",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76647"
+ },
+ {
+ "sku": "norman-rust-medallion-wallpaper-cca-82951",
+ "handle": "norman-rust-medallion-wallpaper-cca-82951",
+ "title": "Norman Rust Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/43331d772a722584505d1756582069e0.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-rust-medallion-wallpaper-cca-82951"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52366",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52366",
+ "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-euphoric.jpg?v=1777480537",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52366"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52106",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52106",
+ "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-52106-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707089",
+ "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",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Linear",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Transitional",
+ "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-stripe-texture-durable-walls-xwd-52106"
+ },
+ {
+ "sku": "word-walls-scr-8124",
+ "handle": "word-walls-scr-8124",
+ "title": "Word Walls",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aeec42f44109550e4f2b2a66eaafab91.jpg?v=1572309108",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Cyan",
+ "Designer Wallcoverings",
+ "Gray",
+ "Luxury Screen Printed Wallpapers",
+ "Paper",
+ "Screen Print",
+ "Tans On White",
+ "Wallcovering",
+ "Whimsical",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 263.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/word-walls-scr-8124"
+ },
+ {
+ "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": "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": "jolie-madam-wallpaper-xa1-66414",
+ "handle": "jolie-madam-wallpaper-xa1-66414",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1e30224a2bb9f731a29dc99b5d181e9b.jpg?v=1775121193",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Jolie Madam Wallcovering",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Smoke",
+ "Stripe",
+ "Textural",
+ "Textured",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66414"
+ },
+ {
+ "sku": "dwss-72702",
+ "handle": "dwss-72702",
+ "title": "Anton honey sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/814-22_image1_9cb187c9-41b3-443f-93d2-122eeacb0578.jpg?v=1646105124",
+ "tags": [
+ "Anton",
+ "Anton honey sample",
+ "Architectural",
+ "Art Nouveau",
+ "Arts & Crafts",
+ "Beige",
+ "Botanical",
+ "Commercial",
+ "Floral",
+ "P814-22",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Tan",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72702"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52391",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52391",
+ "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/xwh-52391-sample-prince-vertical-emboss-durable-hollywood-wallcoverings.jpg?v=1775729391",
+ "tags": [
+ "74%-100% post-consumer (Eco-fi polyester)",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Embossed",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Polyester",
+ "remaining fiber is pre-consumer (polyester)",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52391"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201073",
+ "handle": "hollywood-skyline-xhw-201073",
+ "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-oxford.jpg?v=1777480933",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "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 Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "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-201073"
+ },
+ {
+ "sku": "ncw4354-02",
+ "handle": "ncw4354-02",
+ "title": "Nina Campbell Wallcoverings - Aqua Tint Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264771123.jpg?v=1775520594",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Green",
+ "Medallion",
+ "NCW4354-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4354-02"
+ },
+ {
+ "sku": "love-small-mural-by-retro-walls-rtr-37225",
+ "handle": "love-small-mural-by-retro-walls-rtr-37225",
+ "title": "LOVE Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8f9e987b53df080764c580f56509ccae.jpg?v=1572309702",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/love-small-mural-by-retro-walls-rtr-37225"
+ },
+ {
+ "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": "carved-squares-wallcovering-xcs-44048",
+ "handle": "carved-squares-wallcovering-xcs-44048",
+ "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-44048-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707221",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Brunet",
+ "Class A Fire Rated",
+ "Cloud",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Light Taupe",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44048"
+ },
+ {
+ "sku": "leia-sage-lace-damask-wallpaper-cca-83252",
+ "handle": "leia-sage-lace-damask-wallpaper-cca-83252",
+ "title": "Leia Sage Lace Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ea102f1cb1aa9b9278d7df1f44dc1a7.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Lace",
+ "Prepasted",
+ "Sage",
+ "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/leia-sage-lace-damask-wallpaper-cca-83252"
+ },
+ {
+ "sku": "john-s-thick-embossed-vinyl-xjt-44459",
+ "handle": "john-s-thick-embossed-vinyl-xjt-44459",
+ "title": "John'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/XJT-44459-clean_5cf8e8dc-14f4-450f-bbaf-e9cec102a2e3.jpg?v=1774479163",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Basketweave",
+ "Black",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Ochre",
+ "Office",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/john-s-thick-embossed-vinyl-xjt-44459"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dug-5466-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5466-jpg",
+ "title": "Douglas - Cedar | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5466.jpg?v=1762292719",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Cedar",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Brown",
+ "Douglas",
+ "Paper",
+ "RAMPART®",
+ "Tan",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5466-jpg"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47091",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47091",
+ "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-47091-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699431",
+ "tags": [
+ "Architectural",
+ "Ashbourne Type 2 Vinyl Wallcovering",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47091"
+ },
+ {
+ "sku": "rangeley-grey-new-avalon-stripe-wallpaper-cca-83127",
+ "handle": "rangeley-grey-new-avalon-stripe-wallpaper-cca-83127",
+ "title": "Rangeley Grey New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b9ad057d97bfcdea389eba85283f7e4.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-grey-new-avalon-stripe-wallpaper-cca-83127"
+ },
+ {
+ "sku": "ncw4391-02",
+ "handle": "ncw4391-02",
+ "title": "Ashdown Cloisters Aqua/Taupe - 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_4497265557555.jpg?v=1775520717",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "NCW4391-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Teal",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4391-02"
+ },
+ {
+ "sku": "gibby-aqua-leafy-scroll-wallpaper-wallpaper-cca-82853",
+ "handle": "gibby-aqua-leafy-scroll-wallpaper-wallpaper-cca-82853",
+ "title": "Gibby Aqua Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f919ddd9d826f972187b2596cbfbbc0d.jpg?v=1572309958",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leaf",
+ "Prepasted",
+ "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-aqua-leafy-scroll-wallpaper-wallpaper-cca-82853"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48170",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48170",
+ "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-48170-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728463",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Light Sage",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48170"
+ },
+ {
+ "sku": "oakland-mauve-grasscloth-stripe-wallpaper-cca-83165",
+ "handle": "oakland-mauve-grasscloth-stripe-wallpaper-cca-83165",
+ "title": "Oakland Mauve Grasscloth Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5f180b806d04f3188d92b81d60c8fd06.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "LA Walls",
+ "Light Brown",
+ "Mauve",
+ "Natural",
+ "Natural Wallcovering",
+ "Oakland Mauve Grasscloth Stripe Wallcovering",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oakland-mauve-grasscloth-stripe-wallpaper-cca-83165"
+ },
+ {
+ "sku": "dwc-1001670",
+ "handle": "dwc-1001670",
+ "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_4693311356979.jpg?v=1775521489",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Ivory",
+ "NCW4391-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001670"
+ },
+ {
+ "sku": "dwc-1001689",
+ "handle": "dwc-1001689",
+ "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_4693312569395.jpg?v=1775521616",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Khaki",
+ "NCW4395-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001689"
+ },
+ {
+ "sku": "versace-floral-gold-metallic-wallcovering-versace",
+ "handle": "versace-floral-gold-metallic-wallcovering-versace",
+ "title": "Versace Floral Gold Metallic Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1f9e4c68f0162b8b2038db61596ed962.jpg?v=1773706390",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cottagecore",
+ "display_variant",
+ "English Country",
+ "Estimated Type: Vinyl",
+ "Floral",
+ "Grandmillennial",
+ "Hallway",
+ "Italian",
+ "Light Yellow",
+ "Living Room",
+ "Luxury",
+ "Pale Yellow",
+ "Paper",
+ "Paste the wall",
+ "Serene",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Floral Gold",
+ "Versace Floral Gold Metallic Wallcovering",
+ "Versace Home",
+ "Versace VI",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-floral-gold-metallic-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br018-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br018-jpg",
+ "title": "BR018 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br017.jpg?v=1733873677",
+ "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_br018-jpg"
+ },
+ {
+ "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": "tahlia-pink-stucco-texture-wallpaper-cca-83026",
+ "handle": "tahlia-pink-stucco-texture-wallpaper-cca-83026",
+ "title": "Tahlia Pink Stucco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c156cb1926d7a868f133593ae46ef7f8.jpg?v=1572309966",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahlia-pink-stucco-texture-wallpaper-cca-83026"
+ },
+ {
+ "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": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52908",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52908",
+ "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-52908-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734445",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Silver",
+ "Slate Gray",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52908"
+ },
+ {
+ "sku": "dwta-65212designerwallcoverings-los-angeles",
+ "handle": "dwta-65212designerwallcoverings-los-angeles",
+ "title": "Dahlia - Neutral on Robin'S Egg Wallcovering | Anna French",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT9866.jpg?v=1773963703",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Anna French",
+ "Architectural",
+ "Asian-Inspired",
+ "AT9866",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Bohemian",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Entryway",
+ "Floral",
+ "Green",
+ "Living Room",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Tree House",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwta-65212designerwallcoverings-los-angeles"
+ },
+ {
+ "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": "eur-80344-ncw4350-designer-wallcoverings-los-angeles",
+ "handle": "eur-80344-ncw4350-designer-wallcoverings-los-angeles",
+ "title": "Les Indiennes Paisley Damask 01 - Multi Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504907315.jpg?v=1775523510",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick Red",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Dusty Rose",
+ "English Country",
+ "Fabric",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES INDIENNES",
+ "Les Indiennes Paisley Damask",
+ "Living Room",
+ "NCW4350",
+ "NCW4350-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Pale Blue",
+ "Paper",
+ "Pink",
+ "Red",
+ "Slate Gray",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80344-ncw4350-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "monterey-coast-durable-walls-xwp-52639",
+ "handle": "monterey-coast-durable-walls-xwp-52639",
+ "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-52639-sample-clean.jpg?v=1774481482",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burgundy",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Estimated Type: Vinyl",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Red",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/monterey-coast-durable-walls-xwp-52639"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp11389-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp11389-jpg",
+ "title": "SP11389 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10230.jpg?v=1733872351",
+ "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_sp11389-jpg"
+ },
+ {
+ "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": "world-map-grey-scale-colourway-large-mural-by-retro-walls-rtr-37218",
+ "handle": "world-map-grey-scale-colourway-large-mural-by-retro-walls-rtr-37218",
+ "title": "World Map - Grey Scale (colourway) Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/692e3600c7f58708dfba8dfa2bc17468.jpg?v=1572309701",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mid-Century Modern",
+ "Mural",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "White",
+ "World Map"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/world-map-grey-scale-colourway-large-mural-by-retro-walls-rtr-37218"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76643",
+ "handle": "rustic-glam-vinyl-gpr-76643",
+ "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-76643-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Grasscloth",
+ "Hollywood Regency",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Red",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "USFCID#vp885-159",
+ "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-76643"
+ },
+ {
+ "sku": "dwkk-127836",
+ "handle": "dwkk-127836",
+ "title": "Waterlily Wp - Midnight 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_04_CAC_4a5b1a8f-6aae-4c3c-ad19-40f538ff5789.jpg?v=1753321559",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Blush Pink",
+ "Botanical",
+ "Charcoal Grey",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Dark Blue",
+ "Dining Room",
+ "display_variant",
+ "Eclectic",
+ "Fish",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Midnight",
+ "Navy",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Sage Green",
+ "Serene",
+ "Tropical",
+ "United Kingdom",
+ "W0137/04.Cac.0",
+ "Wallcovering",
+ "Waterlily Wp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127836"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44041",
+ "handle": "carved-squares-wallcovering-xcs-44041",
+ "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-44041-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707203",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44041"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_br11382-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br11382-jpg",
+ "title": "BR11382 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br11059.jpg?v=1733873621",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "BR11382",
+ "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_br11382-jpg"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828",
+ "title": "Chataqua Metallic Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/como-biker_black.jpg?v=1777480696",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52828"
+ },
+ {
+ "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": "millinocket-aqua-illusion-stripe-wallpaper-cca-83117",
+ "handle": "millinocket-aqua-illusion-stripe-wallpaper-cca-83117",
+ "title": "Millinocket Aqua Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/61438818a6e5d7fb60d40f7ed93dbc18.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-aqua-illusion-stripe-wallpaper-cca-83117"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53061",
+ "handle": "boca-faux-finish-durable-walls-xww-53061",
+ "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-rockport_gray.jpg?v=1777480762",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Faux",
+ "Faux Finish",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Non-woven",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Taupe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53061"
+ },
+ {
+ "sku": "gianna-ice-texture-wallpaper-wallpaper-cca-82883",
+ "handle": "gianna-ice-texture-wallpaper-wallpaper-cca-82883",
+ "title": "Gianna Ice Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/61de9e558cfab653c70a71f23232efff.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Light Blue",
+ "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/gianna-ice-texture-wallpaper-wallpaper-cca-82883"
+ },
+ {
+ "sku": "dwc-1001672",
+ "handle": "dwc-1001672",
+ "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_4693311488051.jpg?v=1775521502",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "NCW4392-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001672"
+ },
+ {
+ "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": "biejing-embossed-walls-bew-9508",
+ "handle": "biejing-embossed-walls-bew-9508",
+ "title": "Biejing Embossed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bew-9508-sample-biejing-embossed-hollywood-wallcoverings.jpg?v=1775705141",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9508"
+ },
+ {
+ "sku": "tucker-s-tree-silhouette-scr-8157",
+ "handle": "tucker-s-tree-silhouette-scr-8157",
+ "title": "Tucker's Tree Silhouette",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c08a15a2ec1758ca35fbe9bd5f938794_23636a7a-cad1-4fc2-9241-168c7e2f293e.jpg?v=1572309108",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Luxury Screen Printed Wallpapers",
+ "Paper",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tucker-s-tree-silhouette-scr-8157"
+ },
+ {
+ "sku": "dwc-1001654",
+ "handle": "dwc-1001654",
+ "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_4693310668851.jpg?v=1775521384",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gold",
+ "NCW4355-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001654"
+ },
+ {
+ "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": "rustic-glam-vinyl-gpr-76628",
+ "handle": "rustic-glam-vinyl-gpr-76628",
+ "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-76628-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731762",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sand",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "USFCID#vp885-059",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76628"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47143",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47143",
+ "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-47143-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700840",
+ "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",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47143"
+ },
+ {
+ "sku": "dwkk-127657",
+ "handle": "dwkk-127657",
+ "title": "Cascade - Parchment By Clarke And Clarke | Clarke & Clarke Reflections | Ikat/Southwest/Kilims Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0053_04_CAC_31b98570-7ab1-4c53-8903-6069954bc3d1.jpg?v=1726037687",
+ "tags": [
+ "20.875In",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Cascade",
+ "Chevron",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Ikat/Southwest/Kilims",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic Modern",
+ "Paper",
+ "Parchment",
+ "Print",
+ "Sand",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "United Kingdom",
+ "W0053/04.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 177.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127657"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72108",
+ "handle": "gironde-durable-vinyl-dur-72108",
+ "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-72108-sample-clean.jpg?v=1774484417",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Dark Teal",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72108"
+ },
+ {
+ "sku": "kittery-grey-affinity-stria-wallpaper-cca-83133",
+ "handle": "kittery-grey-affinity-stria-wallpaper-cca-83133",
+ "title": "Kittery Grey Affinity Stria Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/23dc0a92ecd79d72ece28a589b281d75.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kittery-grey-affinity-stria-wallpaper-cca-83133"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+ "title": "Dasma - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5047_50412f01-1807-46cc-9514-4d1f10afa98d.jpg?v=1762291983",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Minimalist",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5047-jpg"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66519",
+ "handle": "cody-couture-wallpaper-xb2-66519",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/aaddc37b86217737bdc133840bf73ea9.jpg?v=1775128786",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Blue",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Navy Blue",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66519"
+ },
+ {
+ "sku": "capri-light-pink-floral-scroll-wallpaper-cca-83050",
+ "handle": "capri-light-pink-floral-scroll-wallpaper-cca-83050",
+ "title": "Capri Light Pink Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cf5ffdcfacb4e46fef880076786e8379.jpg?v=1572309967",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-light-pink-floral-scroll-wallpaper-cca-83050"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2521",
+ "handle": "faux-leaf-squares-fls-2521",
+ "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-2521-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711925",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2521"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ril-6371-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ril-6371-jpg",
+ "title": "Riley - Onyx | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ril-6371.jpg?v=1762304564",
+ "tags": [
+ "27% Polyester",
+ "73% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Polka Dot",
+ "Riley",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ril-6371-jpg"
+ },
+ {
+ "sku": "cotes-d-amore-durable-vinyl-dur-72142",
+ "handle": "cotes-d-amore-durable-vinyl-dur-72142",
+ "title": "Cotes D'Amore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72142-sample-clean.jpg?v=1774484541",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Taupe",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cotes-d-amore-durable-vinyl-dur-72142"
+ },
+ {
+ "sku": "logan-beige-croc-texture-wallpaper-cca-82973",
+ "handle": "logan-beige-croc-texture-wallpaper-cca-82973",
+ "title": "Logan Beige Croc Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e864617a7530ca561c8cf961a24422c3.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Crocodile",
+ "Discontinued",
+ "Embossed",
+ "Expanded Vinyl",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Masculine",
+ "Peelable",
+ "Prepasted",
+ "Series: Brewster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/logan-beige-croc-texture-wallpaper-cca-82973"
+ },
+ {
+ "sku": "glamly-metal-on-vinyl-gpr-76619",
+ "handle": "glamly-metal-on-vinyl-gpr-76619",
+ "title": "Glamly Metal on Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76619-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714640",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stucco",
+ "Taupe",
+ "Textured",
+ "USFCID#vp860-019",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 64.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76619"
+ },
+ {
+ "sku": "eur-80127-ncw4125-designer-wallcoverings-los-angeles",
+ "handle": "eur-80127-ncw4125-designer-wallcoverings-los-angeles",
+ "title": "Rothesay 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_7513496682547.jpg?v=1775522284",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hallway",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "NCW4125",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Off-white",
+ "Paper",
+ "Rothesay",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80127-ncw4125-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53385",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53385",
+ "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-sonoma_f852b0ea-5f6b-4111-997a-74c47f1d6800.jpg?v=1777481527",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Pale Beige",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53385"
+ },
+ {
+ "sku": "puget-s-pineapple-scr-7919",
+ "handle": "puget-s-pineapple-scr-7919",
+ "title": "Puget's Pineapple",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/049ff267ac900cffbb6317f2932f2572.jpg?v=1572309084",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Paper",
+ "Puget's Pineapple",
+ "Screen Print",
+ "Tropical",
+ "vinyl",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White",
+ "White Chocolate Grass"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puget-s-pineapple-scr-7919"
+ },
+ {
+ "sku": "ncw4300-02",
+ "handle": "ncw4300-02",
+ "title": "Les Rêves Collioure Taupe/Soft Gold - Greige Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261461555.jpg?v=1775520135",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "NCW4300-02",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4300-02"
+ },
+ {
+ "sku": "lucy-large-crocodile-wallpaper-hollywood-wallcoverings-copy",
+ "handle": "lucy-large-crocodile-wallpaper-hollywood-wallcoverings-copy",
+ "title": "Lucy Large Crocodile Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93020-sample-lucy-large-crocodile-wallcovering-hollywood-wallcoverings.jpg?v=1775723161",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal Print",
+ "Animal Skin",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Brown Black",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Crocodile",
+ "Embossed Texture",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Luxe",
+ "Office",
+ "Paper Backed Vinyl",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Tuscan Brown",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 37.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-wallpaper-hollywood-wallcoverings-copy"
+ },
+ {
+ "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47692",
+ "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47692",
+ "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-47692-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712378",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ferndown Type 2 Vinyl Wallcovering",
+ "Gold",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Olive",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47692"
+ },
+ {
+ "sku": "sullivan-lilac-ombre-vine-trail-wallpaper-wallpaper-cca-82901",
+ "handle": "sullivan-lilac-ombre-vine-trail-wallpaper-wallpaper-cca-82901",
+ "title": "Sullivan Lilac Ombre Vine Trail Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b4ac54a862758569e3d13f2310ce9b42.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Lilac",
+ "Multi",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sullivan-lilac-ombre-vine-trail-wallpaper-wallpaper-cca-82901"
+ },
+ {
+ "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": "st-silken-durable-vinyl-dur-72158",
+ "handle": "st-silken-durable-vinyl-dur-72158",
+ "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-72158-sample-clean.jpg?v=1774484612",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "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/st-silken-durable-vinyl-dur-72158"
+ },
+ {
+ "sku": "barnes-blue-paisley-damask-wallpaper-cca-82910",
+ "handle": "barnes-blue-paisley-damask-wallpaper-cca-82910",
+ "title": "Barnes Blue Paisley Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a8c5d60a5e3ea04c565f2b9aaf57b146.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "dicontinued",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Masculine",
+ "Paisley",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnes-blue-paisley-damask-wallpaper-cca-82910"
+ },
+ {
+ "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": "hereford-type-ii-vinyl-wallcovering-xuy-49262",
+ "handle": "hereford-type-ii-vinyl-wallcovering-xuy-49262",
+ "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-onyx.jpg?v=1777480316",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hereford Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Moody",
+ "Navy",
+ "Slate Grey",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hereford-type-ii-vinyl-wallcovering-xuy-49262"
+ },
+ {
+ "sku": "kylie-green-cabin-stripe-wallpaper-cca-83039",
+ "handle": "kylie-green-cabin-stripe-wallpaper-cca-83039",
+ "title": "Kylie Green Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1a1a240725460b1782381f53b33cc1fa.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Orange",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kylie-green-cabin-stripe-wallpaper-cca-83039"
+ },
+ {
+ "sku": "murano-luxe-texure-by-versace-ver-40506",
+ "handle": "murano-luxe-texure-by-versace-ver-40506",
+ "title": "Murano Luxe Texure | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/370506_7eb66c12-1171-476e-8b24-56e5c407c546.jpg?v=1745349493",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Light Gray",
+ "Luxury",
+ "Textured",
+ "Versace",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 108.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/murano-luxe-texure-by-versace-ver-40506"
+ },
+ {
+ "sku": "xanadu-s-retro-geometric-scr-8037",
+ "handle": "xanadu-s-retro-geometric-scr-8037",
+ "title": "Xanadu's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bd179511beb1d2bf2782381b6e8e9cb3.jpg?v=1572309105",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Java Black Red",
+ "Luxury Screen Printed Wallpapers",
+ "Mid-Century Modern",
+ "Paper",
+ "Red",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 271.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/xanadu-s-retro-geometric-scr-8037"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53472",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53472",
+ "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-53472-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715906",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Non-woven",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Silver Gray",
+ "Smoke",
+ "Taupe Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53472"
+ },
+ {
+ "sku": "casco-bay-pewter-ombre-pinstripe-wallpaper-cca-83107",
+ "handle": "casco-bay-pewter-ombre-pinstripe-wallpaper-cca-83107",
+ "title": "Casco Bay Pewter Ombre Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8e6a0f4ec7dbf0af9f44c197c752c05a.jpg?v=1572309969",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Casco Bay Pewter Ombre Pinstripe Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Paper",
+ "Pewter",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/casco-bay-pewter-ombre-pinstripe-wallpaper-cca-83107"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5009-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5009-jpg",
+ "title": "Grain - Wenge | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5009.jpg?v=1762295486",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "Grain",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wenge",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5009-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dvts-522-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dvts-522-jpg",
+ "title": "Vista - Snow | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dvts-522.jpg?v=1762293138",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Geometric",
+ "Light Gray",
+ "Minimalist",
+ "Mylar",
+ "Paper",
+ "Snow",
+ "Vista",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dvts-522-jpg"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58146",
+ "handle": "artisma-croco-vinyl-dwx-58146",
+ "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-58146-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699085",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Print",
+ "Animal Skin",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crocodile",
+ "Durable",
+ "Easy To Clean",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Faux Leather",
+ "Glamorous",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Modern",
+ "Neutral",
+ "Red",
+ "Regencycore",
+ "Scratch Resistant",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58146"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66468",
+ "handle": "mr-diorio-wallpaper-xa8-66468",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b83a01426625ba59fcda32981b59d90a_688cb4fa-a421-4118-bdb5-614bc9a94967.jpg?v=1775124737",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66468"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10249-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10249-jpg",
+ "title": "SM10249 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10248.jpg?v=1733872462",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Gray",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10249-jpg"
+ },
+ {
+ "sku": "avea-impressions-wallpaper-trf-56864",
+ "handle": "avea-impressions-wallpaper-trf-56864",
+ "title": "Avea Impressions | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/31f767dfb93e4e1dcdd1211a13875719.jpg?v=1750789724",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "Avea Impressions",
+ "beach",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Minimalist",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "Non-Woven",
+ "organic",
+ "Pale Beige",
+ "Scandinavian",
+ "Series: York",
+ "Soft White",
+ "Stripe",
+ "textural",
+ "Texture",
+ "Textured",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "White",
+ "woven"
+ ],
+ "max_price": 196.08,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/avea-impressions-wallpaper-trf-56864"
+ },
+ {
+ "sku": "dwkk-127821",
+ "handle": "dwkk-127821",
+ "title": "Sapphire Garden Wp - Sapphire 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/W0133_03_CAC_a9a8aad3-b13d-4286-a969-f5eae1686fb6.jpg?v=1753321584",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Charcoal Grey",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Monkey",
+ "Non Woven - 100%",
+ "Olive Green",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Print",
+ "Sapphire Garden Wp",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "United Kingdom",
+ "W0133/03.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127821"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52924",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52924",
+ "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-52924-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734507",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Sophisticated",
+ "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-52924"
+ },
+ {
+ "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": "ludlow-chocolate-paisley-wallpaper-cca-82917",
+ "handle": "ludlow-chocolate-paisley-wallpaper-cca-82917",
+ "title": "Ludlow Chocolate Paisley Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/29e030a2513e6a883c38c2fc1930f688.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Chocolate",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "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-chocolate-paisley-wallpaper-cca-82917"
+ },
+ {
+ "sku": "dwss-72692",
+ "handle": "dwss-72692",
+ "title": "Margareta garden green Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/811-18_image1_ece4b155-9427-4f5a-aebe-e21b9d2d45df.jpg?v=1646105094",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Nouveau",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "GARDEN GREEN",
+ "Geometric",
+ "Light Gray",
+ "Margareta",
+ "Margareta garden green Sample",
+ "P811-18",
+ "Paper",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72692"
+ },
+ {
+ "sku": "franko-faux-metallic-patina-ffm-44439",
+ "handle": "franko-faux-metallic-patina-ffm-44439",
+ "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-44439-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714276",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bathroom",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44439"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52443",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52443",
+ "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-52443-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730745",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52443"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2518",
+ "handle": "faux-leaf-squares-fls-2518",
+ "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-2518-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711915",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "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-2518"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_gai-5105-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5105-jpg",
+ "title": "Grain - Maple | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5105.jpg?v=1762295700",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain",
+ "Light Brown",
+ "Maple",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5105-jpg"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58132",
+ "handle": "jutely-vinyl-dwx-58132",
+ "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-58132-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720359",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Durable",
+ "Easy To Clean",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Faux Grasscloth",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel",
+ "Hotel Lobby",
+ "Jute",
+ "Lattice",
+ "Light Brown",
+ "Luxe",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Navy Blue",
+ "Neutral",
+ "Office",
+ "Regencycore",
+ "Sophisticated",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "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/jutely-vinyl-dwx-58132"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48572",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48572",
+ "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-48572-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735717",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic",
+ "Rustic",
+ "Stucco",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48572"
+ },
+ {
+ "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": "eur-80405-ncw4393-designer-wallcoverings-los-angeles",
+ "handle": "eur-80405-ncw4393-designer-wallcoverings-los-angeles",
+ "title": "Benmore 06 - 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_7513506906163.jpg?v=1775523875",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Benmore",
+ "Biophilic",
+ "Blush",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hallway",
+ "Leaf",
+ "Light Grey",
+ "Living Room",
+ "NCW4393",
+ "NCW4393-06",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Taupe",
+ "Tropical",
+ "Tropical Leaf",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80405-ncw4393-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_fdn-5411-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_fdn-5411-jpg",
+ "title": "Foundation - Stone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5411.jpg?v=1762294536",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Foundation",
+ "Minimalist",
+ "Non-woven",
+ "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-5411-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10272b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10272b-jpg",
+ "title": "EM10272B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10271b.jpg?v=1733873310",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM10272B",
+ "Grasscloth",
+ "Light Brown",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10272b-jpg"
+ },
+ {
+ "sku": "eur-70395-designer-wallcoverings-los-angeles",
+ "handle": "eur-70395-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/5043_cd40fc47-147f-43ef-9cce-877b5fc9a25b.webp?v=1738614531",
+ "tags": [
+ "Almond",
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Brunette",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Crocodile",
+ "Crocodilo Crocodile",
+ "Embossed",
+ "Faux Leather",
+ "Living Room",
+ "Luxurious",
+ "Luxury",
+ "METROPOLIS VINYLS 2",
+ "Office",
+ "Osborne & Little",
+ "Osborne & Little Europe",
+ "Rustic",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "W6337",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-70395-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ril-6368-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ril-6368-jpg",
+ "title": "Riley - Ruby | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ril-6368.jpg?v=1762304458",
+ "tags": [
+ "27% Polyester",
+ "73% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Orange",
+ "Polka Dot",
+ "Riley",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ril-6368-jpg"
+ },
+ {
+ "sku": "devin-aqua-bubble-dots-wallpaper-cca-83017",
+ "handle": "devin-aqua-bubble-dots-wallpaper-cca-83017",
+ "title": "Devin Aqua Bubble Dots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d7d61833752c86d6eb82caee5c7b2b80.jpg?v=1572309965",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/devin-aqua-bubble-dots-wallpaper-cca-83017"
+ },
+ {
+ "sku": "dwss-72721",
+ "handle": "dwss-72721",
+ "title": "Lillie sandstone sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/829-21_image1_f3bffa86-87d9-4b9f-927d-30d1d8968824.jpg?v=1646105193",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Gray",
+ "Light Gray",
+ "Lillie",
+ "Lillie sandstone sample",
+ "Ogee",
+ "P829-21",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "SANDSTONE",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72721"
+ },
+ {
+ "sku": "dwkk-139579",
+ "handle": "dwkk-139579",
+ "title": "Channels Paper - Onyx Almond Black By Lee Jofa Modern | Kelly Wearstler Wallpapers Iii | Modern Wallcovering Murals / Panels",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GWP-3417_811_22e5f650-48cf-47f9-ace6-72680da3bed4.jpg?v=1753291583",
+ "tags": [
+ "55In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Black",
+ "Channels Paper",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Geometric",
+ "Gwp-3417.811.0",
+ "Kelly Wearstler Wallpapers Iii",
+ "Lee Jofa",
+ "Lee Jofa Modern",
+ "Luxury",
+ "Modern",
+ "Murals / Panels",
+ "Onyx Almond",
+ "Paper",
+ "Paper - 100%",
+ "United States",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139579"
+ },
+ {
+ "sku": "dwwm-14365-william-morris-designer-wallcoverings-los-angeles",
+ "handle": "dwwm-14365-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-216484-image01_c1dfb68a-f94f-47b3-a3b4-8027500ecc85.jpg?v=1741111390",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Edwardian",
+ "English Country",
+ "Hallway",
+ "Light Gray",
+ "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-14365-william-morris-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10217-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10217-jpg",
+ "title": "SP10217 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10216.jpg?v=1733872370",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10217-jpg"
+ },
+ {
+ "sku": "barnes-teal-paisley-damask-wallpaper-cca-82913",
+ "handle": "barnes-teal-paisley-damask-wallpaper-cca-82913",
+ "title": "Barnes Teal Paisley Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/289985794370a2aa20db502878219180.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Paisley",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnes-teal-paisley-damask-wallpaper-cca-82913"
+ },
+ {
+ "sku": "versace-plain-cream-wallcovering-versace",
+ "handle": "versace-plain-cream-wallcovering-versace",
+ "title": "Versace Plain Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dd9c9f20c0ad551ae6e6340c41997524.jpg?v=1773706455",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Italian",
+ "Light Beige",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut Brown"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-cream-wallcovering-versace"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52440",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52440",
+ "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-52440-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730735",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Orange",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Terracotta",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52440"
+ },
+ {
+ "sku": "eur-80235-ncw4204-designer-wallcoverings-los-angeles",
+ "handle": "eur-80235-ncw4204-designer-wallcoverings-los-angeles",
+ "title": "Kershaw Plain 05 - 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_7513500614707.jpg?v=1775522891",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "FONTIBRE",
+ "Green",
+ "Kershaw Plain",
+ "Light Gray",
+ "Living Room",
+ "Marble",
+ "NCW4204",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Pale Green",
+ "Sage Green",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80235-ncw4204-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10392xl-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10392xl-jpg",
+ "title": "Armor XL | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ar10392xl.jpg?v=1762286370",
+ "tags": [
+ "Architectural",
+ "Armor XL",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10392xl-jpg"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58049",
+ "handle": "sunset-stone-vinyl-dwx-58049",
+ "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-58049-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735134",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Living Room",
+ "Natural Look",
+ "Orange",
+ "Rustic",
+ "Sienna",
+ "Solid",
+ "Stone",
+ "Tan",
+ "Terracotta",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58049"
+ },
+ {
+ "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": "dwkk-128652",
+ "handle": "dwkk-128652",
+ "title": "W3635-8 Black | Kravet Design | Texture Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3635_8_9024a97f-17f0-43b2-aa51-afc048785192.jpg?v=1753122061",
+ "tags": [
+ "52In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Black",
+ "Charcoal",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Ebony",
+ "Gray",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Onyx",
+ "Poly Vinyl Chloride - 74.7%;Recycled Poly Vinyl Chloride - 8.3%;Pvc Compound - 6.9%;Polyester - 6.24%;Other - 2%;Cotton - 1.86%",
+ "Sophisticated",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3635-8",
+ "W3635.8.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128652"
+ },
+ {
+ "sku": "ocean-meets-sky-large-mural-by-retro-walls-rtr-37240",
+ "handle": "ocean-meets-sky-large-mural-by-retro-walls-rtr-37240",
+ "title": "Ocean Meets Sky Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/117550d9ed59ef1dc0367560c1ebfaaf.jpg?v=1572309702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Clouds",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Moon",
+ "Mural",
+ "Paper",
+ "Scenic",
+ "Ship",
+ "Submarine",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whale",
+ "Whimsical"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ocean-meets-sky-large-mural-by-retro-walls-rtr-37240"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47153",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47153",
+ "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-47153-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775701098",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47153"
+ },
+ {
+ "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": "carved-squares-wallcovering-xcs-44054",
+ "handle": "carved-squares-wallcovering-xcs-44054",
+ "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-44054-sample-clean.jpg?v=1774478583",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Taupe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44054"
+ },
+ {
+ "sku": "biscay-bay-rustic-cherry-wood-grain-wbs-39622",
+ "handle": "biscay-bay-rustic-cherry-wood-grain-wbs-39622",
+ "title": "Biscay Bay Rustic Cherry Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39622-sample-biscay-bay-rustic-cherry-wood-grain-hollywood-wallcoverings.jpg?v=1775705450",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed Texture",
+ "Farmhouse",
+ "Faux",
+ "Faux Wood",
+ "Glamorous",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Java",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Sepia",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-rustic-cherry-wood-grain-wbs-39622"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58129",
+ "handle": "jutely-vinyl-dwx-58129",
+ "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-58129-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720277",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Beige",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58129"
+ },
+ {
+ "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": "marseilles-durable-vinyl-dur-72009",
+ "handle": "marseilles-durable-vinyl-dur-72009",
+ "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-72009-sample-clean.jpg?v=1774483952",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72009"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010177",
+ "handle": "hollywood-tailored-xhw-2010177",
+ "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-park_row.jpg?v=1777480970",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "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",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "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 Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010177"
+ },
+ {
+ "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": "tommy-s-trees-tre500",
+ "handle": "tommy-s-trees-tre500",
+ "title": "Tommy's Trees Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tre500-sample-tommy-s-trees-wallcovering-hollywood-wallcoverings.jpg?v=1775735302",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "Living Room",
+ "Organic",
+ "Paper",
+ "Rustic",
+ "Scenic",
+ "Textured",
+ "Traditional",
+ "Tree",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tommy-s-trees-tre500"
+ },
+ {
+ "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": "harrison-type-ii-vinyl-wallcovering-xlg-47740",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47740",
+ "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-47740-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716527",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47740"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dgbj-532-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dgbj-532-jpg",
+ "title": "Green Bog Jasper - Sage | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dgbj-532.jpg?v=1762291132",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Green",
+ "Green Bog Jasper",
+ "Light Beige",
+ "Orange",
+ "Paper",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dgbj-532-jpg"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_tgm-5978-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_tgm-5978-jpg",
+ "title": "Tangram - Azure | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tgm-5978.jpg?v=1762311044",
+ "tags": [
+ "31% Polyester",
+ "69% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Light Blue",
+ "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-5978-jpg"
+ },
+ {
+ "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": "haute-sena-durable-vinyl-dur-72312",
+ "handle": "haute-sena-durable-vinyl-dur-72312",
+ "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-72312-sample-clean.jpg?v=1774485136",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Nursery",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Sky Blue",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Watercolor"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haute-sena-durable-vinyl-dur-72312"
+ },
+ {
+ "sku": "anahi-light-blue-forest-fauna-wallpaper-cca-82987",
+ "handle": "anahi-light-blue-forest-fauna-wallpaper-cca-82987",
+ "title": "Anahi Light Blue Forest Fauna Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2c8a7eb92caa753b39f0763ca17f547b.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Commercial",
+ "Deer",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Flowers",
+ "LA Walls",
+ "Light Blue",
+ "Paper",
+ "Prepasted",
+ "Rabbit",
+ "Series: Brewster",
+ "Squirrel",
+ "Strippable",
+ "Trees",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anahi-light-blue-forest-fauna-wallpaper-cca-82987"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52331",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52331",
+ "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-blackbird.jpg?v=1777480478",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Charcoal",
+ "Embossed",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52331"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52081",
+ "handle": "canal-damask-durable-vinyl-xwa-52081",
+ "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-52081-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707064",
+ "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",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Damask",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "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-52081"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72078",
+ "handle": "la-roche-durable-vinyl-dur-72078",
+ "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-72078-sample-clean.jpg?v=1774484310",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "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-72078"
+ },
+ {
+ "sku": "medusa-label-metallic-black-white-wallcovering-versace",
+ "handle": "medusa-label-metallic-black-white-wallcovering-versace",
+ "title": "Medusa Label Metallic, Black, White Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1957e67e8c29a8e79e3490a7f4a9fbc3.jpg?v=1773706355",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Geometric",
+ "Gray",
+ "Greek Key",
+ "Haute Couture",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Medusa Label",
+ "Medusa Label Metallic",
+ "Neoclassical",
+ "Off-white",
+ "Paste the wall",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "White Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-label-metallic-black-white-wallcovering-versace"
+ },
+ {
+ "sku": "dwkk-129173",
+ "handle": "dwkk-129173",
+ "title": "W3762-5 Silver | Kravet Design |Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3762_5_788396e9-41ac-4786-bd60-13cc9dc01c47.jpg?v=1753121487",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Blue",
+ "display_variant",
+ "Geometric",
+ "Gray",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Modern",
+ "Navy",
+ "Non-Woven",
+ "Office",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3762-5",
+ "W3762.5.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129173"
+ },
+ {
+ "sku": "eur-80236-ncw4204-designer-wallcoverings-los-angeles",
+ "handle": "eur-80236-ncw4204-designer-wallcoverings-los-angeles",
+ "title": "Kershaw Plain 06 - Emerald Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500647475.jpg?v=1775522898",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Academia",
+ "Dining Room",
+ "FONTIBRE",
+ "Forest Green",
+ "Gray",
+ "Green",
+ "Hunter Green",
+ "Kershaw Plain",
+ "Living Room",
+ "Moody",
+ "NCW4204",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80236-ncw4204-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72415",
+ "handle": "rivo-dulce-durable-vinyl-dur-72415",
+ "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-72415-sample-clean.jpg?v=1774485450",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "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-72415"
+ },
+ {
+ "sku": "zeya-mural-ashlar-romo",
+ "handle": "zeya-mural-ashlar-romo",
+ "title": "Zeya Mural Ashlar | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W971-01-zeya-mural-ashlar_04.jpg?v=1776399030",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color white",
+ "beige",
+ "brown",
+ "Burnished Bronze",
+ "Commercial",
+ "Conference Room",
+ "Contemporary",
+ "gray",
+ "Kabu Wallcoverings",
+ "Large",
+ "Lobby",
+ "Mural",
+ "Non-woven",
+ "Office",
+ "Romo",
+ "Sage Green",
+ "Slate Blue",
+ "Smooth",
+ "Soft White",
+ "Texture",
+ "Transitional",
+ "W971/01",
+ "Wallcovering",
+ "Warm Taupe",
+ "Zeya Mural"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zeya-mural-ashlar-romo"
+ },
+ {
+ "sku": "eur-80218-ncw4200-designer-wallcoverings-los-angeles",
+ "handle": "eur-80218-ncw4200-designer-wallcoverings-los-angeles",
+ "title": "Keightley's Folio 03 - 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_7513500221491.jpg?v=1775522813",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Boat",
+ "Building",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "FONTIBRE",
+ "Georgian",
+ "Gray",
+ "Grey",
+ "Keightley's Folio",
+ "Landscape",
+ "Light Grey",
+ "Living Room",
+ "NCW4200",
+ "Neoclassical",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Scenic",
+ "Serene",
+ "Textured",
+ "Toile",
+ "Traditional",
+ "Tree",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80218-ncw4200-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_blg-5634-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blg-5634-jpg",
+ "title": "Belgrade - Carnelian | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blg-5634.jpg?v=1762287637",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Belgrade",
+ "Brown",
+ "Carnelian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blg-5634-jpg"
+ },
+ {
+ "sku": "cubism-drive-hlw-73045",
+ "handle": "cubism-drive-hlw-73045",
+ "title": "Cubism Drive | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73045-sample-clean.jpg?v=1774483189",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Silver Gray",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 159.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cubism-drive-hlw-73045"
+ },
+ {
+ "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": "rochester-type-ii-vinyl-wallcovering-xpk-48228",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48228",
+ "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-48228-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731056",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rochester Type 2 Vinyl Wallcovering",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48228"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52780",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52780",
+ "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-52780-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734803",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52780"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73038",
+ "handle": "benedict-canyon-sisal-hlw-73038",
+ "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-73038-sample-clean.jpg?v=1774483153",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73038"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66477",
+ "handle": "mr-diorio-wallpaper-xa8-66477",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/29eb11d03e539d3bd621991db13f5b49.jpg?v=1775125876",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Entryway",
+ "Gold",
+ "Light Brown",
+ "Living Room",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66477"
+ },
+ {
+ "sku": "presque-isle-sand-regal-stripe-wallpaper-cca-83118",
+ "handle": "presque-isle-sand-regal-stripe-wallpaper-cca-83118",
+ "title": "Presque Isle Sand Regal Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b20099d2016922a67d736b2f78eafb8e.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/presque-isle-sand-regal-stripe-wallpaper-cca-83118"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53756",
+ "handle": "juno-faux-silk-durable-walls-xje-53756",
+ "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-53756-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720099",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53756"
+ },
+ {
+ "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73271",
+ "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73271",
+ "title": "Caterina Embossed Vinyl - Type 2 | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-73271-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707519",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Caterina Embossed Vinyl",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73271"
+ },
+ {
+ "sku": "dwc-1001685",
+ "handle": "dwc-1001685",
+ "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_4693312274483.jpg?v=1775521589",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Light Gray",
+ "NCW4394-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001685"
+ },
+ {
+ "sku": "kylie-denim-cabin-stripe-wallpaper-cca-83042",
+ "handle": "kylie-denim-cabin-stripe-wallpaper-cca-83042",
+ "title": "Kylie Denim Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91e4f7ec4e5049165d03386432d1012b.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kylie-denim-cabin-stripe-wallpaper-cca-83042"
+ },
+ {
+ "sku": "eur-80180-ncw4181-designer-wallcoverings-los-angeles",
+ "handle": "eur-80180-ncw4181-designer-wallcoverings-los-angeles",
+ "title": "Sansui 07 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498648627.jpg?v=1775522606",
+ "tags": [
+ "Architectural",
+ "CATHAY",
+ "Charcoal",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Lattice",
+ "Living Room",
+ "NCW4181",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Sansui",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Zen"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80180-ncw4181-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9406-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9406-jpg",
+ "title": "ST9406 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9405.jpg?v=1733872277",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Gray",
+ "Minimalist",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9406-jpg"
+ },
+ {
+ "sku": "zebra-drive-metal-and-wood-hlw-73084",
+ "handle": "zebra-drive-metal-and-wood-hlw-73084",
+ "title": "Zebra 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-73084-sample-clean.jpg?v=1774483407",
+ "tags": [
+ "Animal Print",
+ "Architectural",
+ "Bedroom",
+ "Chevron",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Faux Wood",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Sage Green",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73084"
+ },
+ {
+ "sku": "wells-sky-candy-stripe-wallpaper-cca-83224",
+ "handle": "wells-sky-candy-stripe-wallpaper-cca-83224",
+ "title": "Wells Sky Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a0049c27c9eb317b1db38f86af3811fb.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "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-sky-candy-stripe-wallpaper-cca-83224"
+ },
+ {
+ "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": "dwc-1001646",
+ "handle": "dwc-1001646",
+ "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_4693310275635.jpg?v=1775521338",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Green",
+ "NCW4353-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001646"
+ },
+ {
+ "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": "ludlow-light-grey-paisley-wallpaper-cca-82918",
+ "handle": "ludlow-light-grey-paisley-wallpaper-cca-82918",
+ "title": "Ludlow Light Grey Paisley Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ed2435180687f6753166f0a95bbafed.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Grey",
+ "Masculine",
+ "Paisley",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ludlow-light-grey-paisley-wallpaper-cca-82918"
+ },
+ {
+ "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": "bellaire-faux-finish-durable-walls-xww-53063",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53063",
+ "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-53063-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703545",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53063"
+ },
+ {
+ "sku": "dwkk-129223",
+ "handle": "dwkk-129223",
+ "title": "W3781-3 Green | Kravet Design | Tropical Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3781_3_d24754a5-9704-4fc9-9785-5af047eba1dd.jpg?v=1753291935",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Botanical",
+ "Commercial",
+ "display_variant",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Leaf",
+ "Light Green",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Tropical",
+ "United States",
+ "W3781-3",
+ "W3781.3.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129223"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2620",
+ "handle": "pleated-perfect-paradise-ppp-2620",
+ "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-2620-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729159",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Jade",
+ "Light Teal",
+ "Moss",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2620"
+ },
+ {
+ "sku": "hardee-embossed-contemporary-durable-walls-xwy-53109",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53109",
+ "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-53109-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716035",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53109"
+ },
+ {
+ "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": "villa-velore-durable-vinyl-dur-72330",
+ "handle": "villa-velore-durable-vinyl-dur-72330",
+ "title": "Villa Velore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72330-sample-clean.jpg?v=1774485214",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dark Grey",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Slate Grey",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72330"
+ },
+ {
+ "sku": "eur-80340-ncw4308-designer-wallcoverings-los-angeles",
+ "handle": "eur-80340-ncw4308-designer-wallcoverings-los-angeles",
+ "title": "Portavo Damask 01 - 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_7513504776243.jpg?v=1775523484",
+ "tags": [
+ "Architectural",
+ "Charcoal",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Lattice",
+ "LES REVES",
+ "Living Room",
+ "NCW4308",
+ "NCW4308-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Portavo Damask",
+ "Scroll",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80340-ncw4308-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2771",
+ "handle": "faux-leaf-squares-fls-2771",
+ "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-2771-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712078",
+ "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 Brown",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable",
+ "Yellow"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2771"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br013-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br013-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/br013.jpg?v=1762288841",
+ "tags": [
+ "Architectural",
+ "Bronze",
+ "Brown",
+ "Burnished Metallic",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Industrial",
+ "Metallic",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br013-jpg"
+ },
+ {
+ "sku": "biscay-bay-barrel-wood-grain-wbs-39613",
+ "handle": "biscay-bay-barrel-wood-grain-wbs-39613",
+ "title": "Biscay Bay Barrel Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39613-sample-biscay-bay-barrel-wood-grain-hollywood-wallcoverings.jpg?v=1775705173",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Embossed Texture",
+ "Estimated Type: Wood Grain",
+ "Faux",
+ "Faux Wood",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Light Brown",
+ "Luxe",
+ "Navy Blue",
+ "Neoclassical",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 54.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-barrel-wood-grain-wbs-39613"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52087",
+ "handle": "canal-texture-durable-walls-xwa-52087",
+ "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-cream.jpg?v=1777480386",
+ "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",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "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-texture-durable-walls-xwa-52087"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58109",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58109",
+ "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-58109-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715419",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Glamorous",
+ "Gold",
+ "Gunny Sack",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy Blue",
+ "Neutral",
+ "Organic",
+ "Restaurant",
+ "Rustic",
+ "Solid",
+ "Sophisticated",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "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-58109"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72057",
+ "handle": "saint-helene-durable-vinyl-dur-72057",
+ "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-72057-sample-clean.jpg?v=1774484187",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "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-72057"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwp-52602",
+ "handle": "vanderbilt-durable-walls-xwp-52602",
+ "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-tamarind.jpg?v=1777480655",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sand",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwp-52602"
+ },
+ {
+ "sku": "eur-80234-ncw4204-designer-wallcoverings-los-angeles",
+ "handle": "eur-80234-ncw4204-designer-wallcoverings-los-angeles",
+ "title": "Kershaw Plain 04 - Terracotta Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500581939.jpg?v=1775522885",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "FONTIBRE",
+ "Kershaw Plain",
+ "Living Room",
+ "Marble",
+ "NCW4204",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80234-ncw4204-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "dwkk-127668",
+ "handle": "dwkk-127668",
+ "title": "Hexagon - Antique 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/W0056_01_CAC_dbe02c64-dc3b-4a2d-89f6-8e921e5b28b1.jpg?v=1726037710",
+ "tags": [
+ "20.875In",
+ "Antique",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Hexagon",
+ "Living Room",
+ "Paper",
+ "Print",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "Traditional",
+ "Transitional",
+ "United Kingdom",
+ "Vinyl",
+ "W0056/01.Cac.0",
+ "Wallcovering",
+ "Warm",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 176.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127668"
+ },
+ {
+ "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": "mia-black-faux-zebra-stripes-wallpaper-wallpaper-cca-82858",
+ "handle": "mia-black-faux-zebra-stripes-wallpaper-wallpaper-cca-82858",
+ "title": "Mia Black Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/39e9fd350137a121891d8d4671c529d3.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "Faux Effects",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-black-faux-zebra-stripes-wallpaper-wallpaper-cca-82858"
+ },
+ {
+ "sku": "dwss-72708",
+ "handle": "dwss-72708",
+ "title": "Rio mustard sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/825-22_image1_7db6a017-d85a-4e1c-81c2-e524904648a0.jpg?v=1646105146",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Gray",
+ "Mustard",
+ "P825-22",
+ "Paper",
+ "Pattern",
+ "Rio",
+ "Rio mustard sample",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72708"
+ },
+ {
+ "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": "corsham-acoustical-wallcovering-xku-47547",
+ "handle": "corsham-acoustical-wallcovering-xku-47547",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9cd0a88ae02867c7c088e883c43aa0f6.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Polyester",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47547"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47618",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47618",
+ "title": "Earby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkz-47618-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710502",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Earby Type 2 Vinyl Wallcovering",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver Gray",
+ "Solid",
+ "Suede",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47618"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_gai-5006-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5006-jpg",
+ "title": "Grain - Rustic Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5006.jpg?v=1762295376",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Grain",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Rustic Gray",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5006-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9507-jpg",
+ "title": "SM9507 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9506.jpg?v=1733872516",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9507-jpg"
+ },
+ {
+ "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": "faux-leaf-squares-fls-2532",
+ "handle": "faux-leaf-squares-fls-2532",
+ "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-2532-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711962",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "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-2532"
+ },
+ {
+ "sku": "going-to-the-library-leather-ama-52501",
+ "handle": "going-to-the-library-leather-ama-52501",
+ "title": "Going to the Library - Leather",
+ "vendor": "British Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/239e894c0d48f16c48815b090cce38d3.jpg?v=1572309256",
+ "tags": [
+ "100% Uncoated Paper",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Bling",
+ "British Walls",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "European",
+ "Glass Bead",
+ "Leather Brown",
+ "Paper",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/going-to-the-library-leather-ama-52501"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53231",
+ "handle": "doral-faux-silk-durable-walls-xwc-53231",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53231-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710347",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Green",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53231"
+ },
+ {
+ "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": "rivington-rice-paper-durable-vinyl-walls-xwj-52436",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52436",
+ "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-52436-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730713",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Paper",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52436"
+ },
+ {
+ "sku": "foster-grey-linen-stucco-wallpaper-cca-82955",
+ "handle": "foster-grey-linen-stucco-wallpaper-cca-82955",
+ "title": "Foster Grey Linen Stucco Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/111b56c0e233d418d8e209f44dd0a9a7.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Brown",
+ "Linen",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Solid",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/foster-grey-linen-stucco-wallpaper-cca-82955"
+ },
+ {
+ "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": "sumatra-by-innovations-usa-dwc-sumatra-3",
+ "handle": "sumatra-by-innovations-usa-dwc-sumatra-3",
+ "title": "Sumatra | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-3.jpg?v=1736198826",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Sumatra",
+ "Sumatra-3",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-3"
+ },
+ {
+ "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": "rivington-rice-paper-durable-vinyl-walls-xwj-52444",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52444",
+ "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-52444-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730748",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52444"
+ },
+ {
+ "sku": "ncw4395-04",
+ "handle": "ncw4395-04",
+ "title": "Ashdown Kingsley Silver/Ivory - 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_4497266901043.jpg?v=1775520865",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "NCW4395-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4395-04"
+ },
+ {
+ "sku": "eur-80420-ncw4396-designer-wallcoverings-los-angeles",
+ "handle": "eur-80420-ncw4396-designer-wallcoverings-los-angeles",
+ "title": "Brideshead Scroll Damask 04 - 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_7513507397683.jpg?v=1775523976",
+ "tags": [
+ "Arabesque",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Brideshead Scroll Damask",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Living Room",
+ "NCW4396",
+ "NCW4396-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Rustic",
+ "Scroll",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80420-ncw4396-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72233",
+ "handle": "saint-lore-durable-vinyl-dur-72233",
+ "title": "Saint Lore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72233-sample-clean.jpg?v=1774484850",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Red",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72233"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10380-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10380-jpg",
+ "title": "Armor Paint - AR10380 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10379.jpg?v=1733873835",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10380-jpg"
+ },
+ {
+ "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": "ashbourne-type-ii-vinyl-wallcovering-xjg-47131",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47131",
+ "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-47131-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700521",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47131"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47818",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47818",
+ "title": "Ikeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xls-47818-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719321",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Light Silver",
+ "Living Room",
+ "Modern",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47818"
+ },
+ {
+ "sku": "cody-cantina-wallpaper-xb1-66498",
+ "handle": "cody-cantina-wallpaper-xb1-66498",
+ "title": "Cody Cantina Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52457d2b19f9b76a16ccbbb1ff86f2dc.jpg?v=1775127013",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Cantina Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Light Beige",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Spa",
+ "Stripe",
+ "Striped",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.61,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66498"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66526",
+ "handle": "tigressa-bargea-wallpaper-xb3-66526",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/af657add2b5b493a2393d1949a2eee9a.jpg?v=1572309545",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66526"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53386",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53386",
+ "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-tuscany_f173dc7c-9192-41f7-bf31-93a140adf195.jpg?v=1777481541",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Camel",
+ "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",
+ "Office",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53386"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9504-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9504-jpg",
+ "title": "SM9504 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9503.jpg?v=1733872525",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9504-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blg-5637-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blg-5637-jpg",
+ "title": "Belgrade - Slate | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blg-5637.jpg?v=1762287748",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Belgrade",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Dark Gray",
+ "Gray",
+ "Industrial",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blg-5637-jpg"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66402",
+ "handle": "jolie-madam-wallpaper-xa1-66402",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3fb79c28770fa2b8cf437ac60b61a0e3.jpg?v=1775119812",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66402"
+ },
+ {
+ "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": "sudbury-type-ii-vinyl-wallcovering-xqe-48460",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48460",
+ "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-48460-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735108",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Serene",
+ "Sudbury Type 2 Vinyl",
+ "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-48460"
+ },
+ {
+ "sku": "amity-bear-bleeding-heart-texture-wallpaper-cca-83290",
+ "handle": "amity-bear-bleeding-heart-texture-wallpaper-cca-83290",
+ "title": "Amity Bear Bleeding Heart Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3fbec77b09581fbe0be068de836c568d.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brewster-CCA-Discontinued-2026-04",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-bear-bleeding-heart-texture-wallpaper-cca-83290"
+ },
+ {
+ "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": "sunset-stone-vinyl-dwx-58043",
+ "handle": "sunset-stone-vinyl-dwx-58043",
+ "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-58043-sample-clean_ab01e0c2-8c06-4406-8520-fb713e4bccf7.jpg?v=1774479267",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Taupe",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Modern",
+ "Natural Look",
+ "Rustic",
+ "Stone",
+ "Stucco",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58043"
+ },
+ {
+ "sku": "mia-orange-faux-zebra-stripes-wallpaper-wallpaper-cca-82861",
+ "handle": "mia-orange-faux-zebra-stripes-wallpaper-wallpaper-cca-82861",
+ "title": "Mia Orange Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ca3c9d56eb9407aa0dc9a113d78fd614.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "LA Walls",
+ "Orange",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-orange-faux-zebra-stripes-wallpaper-wallpaper-cca-82861"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gsg9-5383-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gsg9-5383-jpg",
+ "title": "Glasgow - Copper | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gsg9-5383.jpg?v=1762296706",
+ "tags": [
+ "100% Vinyl",
+ "abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "contemporary",
+ "Contract",
+ "Copper",
+ "geometric",
+ "Glasgow",
+ "Gray",
+ "Metallic",
+ "Orange",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gsg9-5383-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_turn-tun-6297-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_turn-tun-6297-jpg",
+ "title": "Turn - Sienna | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/turn-tun-6297.jpg?v=1762311508",
+ "tags": [
+ "24% Nylon",
+ "76% Polyester",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Polyester",
+ "Textured",
+ "Turn",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_turn-tun-6297-jpg"
+ },
+ {
+ "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": "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": "vintage-alphabet-large-mural-by-retro-walls-rtr-37202",
+ "handle": "vintage-alphabet-large-mural-by-retro-walls-rtr-37202",
+ "title": "Vintage 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/78293d2ea1cac3a3ad4e057a0eb49b31.jpg?v=1572309701",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Black",
+ "Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Red",
+ "Stripe",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vintage-alphabet-large-mural-by-retro-walls-rtr-37202"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73158",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73158",
+ "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-73158-sample-clean.jpg?v=1774483793",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "stripe",
+ "Taupe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73158"
+ },
+ {
+ "sku": "john-s-thick-embossed-vinyl-xjt-44462",
+ "handle": "john-s-thick-embossed-vinyl-xjt-44462",
+ "title": "John'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/XJT-44462-clean_e003c6f3-0b05-4085-ad26-ee962f4423f8.jpg?v=1774479175",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Basketweave",
+ "Brown",
+ "Check",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Coffee",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "Embossed",
+ "Embossed Texture",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "John's Thick Embossed Vinyl",
+ "Living Room",
+ "Lodge",
+ "Rustic",
+ "Sepia",
+ "Sienna",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/john-s-thick-embossed-vinyl-xjt-44462"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72231",
+ "handle": "saint-lore-durable-vinyl-dur-72231",
+ "title": "Saint Lore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72231-sample-clean.jpg?v=1774484840",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72231"
+ },
+ {
+ "sku": "glamly-metal-on-vinyl-gpr-76622",
+ "handle": "glamly-metal-on-vinyl-gpr-76622",
+ "title": "Glamly Metal on Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76622-sample-glamly-metal-on-vinyl-hollywood-wallcoverings.jpg?v=1775714726",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Regencycore",
+ "Solid",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "USFCID#vp860-079",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 64.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glamly-metal-on-vinyl-gpr-76622"
+ },
+ {
+ "sku": "dwc-1001639",
+ "handle": "dwc-1001639",
+ "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_4693309980723.jpg?v=1775521287",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Light Blue",
+ "NCW4352-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Pale Blue",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001639"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3291_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3291_8-jpg",
+ "title": "Marlu - Stone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3291_8.jpg?v=1762301431",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "Geometric",
+ "Gray",
+ "Marlu",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3291_8-jpg"
+ },
+ {
+ "sku": "durante-diamonds-hlw-73053",
+ "handle": "durante-diamonds-hlw-73053",
+ "title": "Durante Diamonds | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73053-sample-durante-diamonds-hollywood-wallcoverings.jpg?v=1775710364",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durante Diamonds",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/durante-diamonds-hlw-73053"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72189",
+ "handle": "st-silkey-durable-vinyl-dur-72189",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72189-sample-clean.jpg?v=1774484729",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Cocoa Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72189"
+ },
+ {
+ "sku": "seres-mineral-romo",
+ "handle": "seres-mineral-romo",
+ "title": "Seres Mineral | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-05-seres-wallcovering-mineral_01.jpg?v=1776485216",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Coastal",
+ "Commercial",
+ "cream",
+ "Embossed Wallcovering",
+ "Grasscloth",
+ "Kabu Wallcoverings",
+ "light gray",
+ "Lobby",
+ "Natural",
+ "Office",
+ "Reception Area",
+ "Romo",
+ "Sage Green",
+ "Scandinavian",
+ "Seres",
+ "Small",
+ "Soft White",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W969/05",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seres-mineral-romo"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53691",
+ "handle": "westville-contemporary-durable-walls-xje-53691",
+ "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-53691-sample-clean.jpg?v=1774482267",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53691"
+ },
+ {
+ "sku": "eur-80536-pcl695-designer-wallcoverings-los-angeles",
+ "handle": "eur-80536-pcl695-designer-wallcoverings-los-angeles",
+ "title": "Malmaison Botanical 03 Black | Christian Lacroix Europe",
+ "vendor": "Christian Lacroix Europe",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/56566_c75a3b26-d1ab-4c49-abce-284360a7979e.webp?v=1738950906",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Christian Lacroix Europe",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Dramatic",
+ "Eclectic",
+ "Floral",
+ "Green",
+ "INCROYABLE ET MARVEILLEUS",
+ "Lavender",
+ "Light Peach",
+ "Living Room",
+ "Malmaison Botanical",
+ "Maximalist",
+ "Moss",
+ "Non-Woven",
+ "Orange",
+ "Pale Yellow",
+ "Pastel Pink",
+ "Pattern",
+ "PCL695",
+ "Pink",
+ "Purple",
+ "Sage Green",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80536-pcl695-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "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": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+ "handle": "camila-silver-modern-damask-wallpaper-wallpaper-cca-82848",
+ "title": "Camila Silver Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5bc6114cf3f8763c3a886d89ebab27e3.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Light Blue",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Takumi",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-silver-modern-damask-wallpaper-wallpaper-cca-82848"
+ },
+ {
+ "sku": "zoe-champagne-coco-texture-wallpaper-cca-83287",
+ "handle": "zoe-champagne-coco-texture-wallpaper-cca-83287",
+ "title": "Zoe Champagne Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6645375406e5ee77edba885ddb8ec5a0_6bd770c6-57a2-4c7e-b9f3-73af0b8e78e2.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-champagne-coco-texture-wallpaper-cca-83287"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53462",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53462",
+ "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-53462-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715861",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53462"
+ },
+ {
+ "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": "maidstone-type-ii-vinyl-wallcovering-xmh-47946",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47946",
+ "title": "Maidstone - Slate Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmh-47946-sample-maidstone-slate-type-ii-vinyl-hollywood.jpg?v=1775723604",
+ "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: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Stone Look",
+ "Stripe",
+ "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-47946"
+ },
+ {
+ "sku": "eur-80254-ncw4207-designer-wallcoverings-los-angeles",
+ "handle": "eur-80254-ncw4207-designer-wallcoverings-los-angeles",
+ "title": "Fontibre 01 - Neutral Beige Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fontibre_wp_main_05816e81-f879-4db1-a2ef-1e85be6416d6.webp?v=1738950177",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "Burnt Orange",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Fontibre",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Leaf",
+ "Living Room",
+ "NCW4207",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Orange",
+ "Pale Beige",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Sage Green",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80254-ncw4207-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869",
+ "handle": "kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869",
+ "title": "Kenley Pink Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6a6dd48b682e87fd0de9486dd28d9994.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47731",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47731",
+ "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-47731-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716311",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47731"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48206-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729926",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48206"
+ },
+ {
+ "sku": "alfred-paintable-supaglypta-wallpaper-gga-82651",
+ "handle": "alfred-paintable-supaglypta-wallpaper-gga-82651",
+ "title": "Alfred Paintable Supaglypta | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/486d3669a0b9e67f585ef327b1f648dc.jpg?v=1750790457",
+ "tags": [
+ "Architectural",
+ "Classic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "Decorative",
+ "Discontinued",
+ "Durable",
+ "Embossed",
+ "Floral",
+ "Global",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Off-white",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Renovation",
+ "Residential",
+ "Series: Brewster",
+ "Strippable",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Unpasted",
+ "Versatile",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White"
+ ],
+ "max_price": 49.02,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/alfred-paintable-supaglypta-wallpaper-gga-82651"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mya-9436-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9436-jpg",
+ "title": "Maya - Cantaloupe | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9436.jpg?v=1762302012",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Cantaloupe",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9436-jpg"
+ },
+ {
+ "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": "eur-80399-ncw4392-designer-wallcoverings-los-angeles",
+ "handle": "eur-80399-ncw4392-designer-wallcoverings-los-angeles",
+ "title": "Chelwood Floral 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_7513506676787.jpg?v=1775523836",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Chelwood Floral Damask",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Living Room",
+ "NCW4392",
+ "NCW4392-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80399-ncw4392-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "kent-green-faux-grasscloth-wallpaper-cca-82926",
+ "handle": "kent-green-faux-grasscloth-wallpaper-cca-82926",
+ "title": "Kent Green Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/993e30889f13f8b295fab4953b87b302.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Light Brown",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-green-faux-grasscloth-wallpaper-cca-82926"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66463",
+ "handle": "mr-diorio-wallpaper-xa8-66463",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a45a044830015109e2f7ce88a205295.jpg?v=1775124140",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Entryway",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Non-woven",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66463"
+ },
+ {
+ "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": "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": "conrad-blue-map-wallpaper-cca-82941",
+ "handle": "conrad-blue-map-wallpaper-cca-82941",
+ "title": "Conrad Blue Map Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a8b75d4b49e538b454cc3d727049e29c.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Novelty",
+ "Paper",
+ "Prepasted",
+ "Scenic",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/conrad-blue-map-wallpaper-cca-82941"
+ },
+ {
+ "sku": "dwc-1001649",
+ "handle": "dwc-1001649",
+ "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_4693310472243.jpg?v=1775521357",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Light Brown",
+ "Medallion",
+ "Mid-Century Modern",
+ "NCW4354-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Peach",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001649"
+ },
+ {
+ "sku": "rangeley-beige-new-avalon-stripe-wallpaper-cca-83126",
+ "handle": "rangeley-beige-new-avalon-stripe-wallpaper-cca-83126",
+ "title": "Rangeley Beige New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b56fc7797effaf6e4a6d2c5c7b02ca03.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Ivory",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-beige-new-avalon-stripe-wallpaper-cca-83126"
+ },
+ {
+ "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_for-5054-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5054-jpg",
+ "title": "Forge - Powder | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5054.jpg?v=1762294880",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Forge",
+ "Gray",
+ "Powder",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5054-jpg"
+ },
+ {
+ "sku": "dwc-1001682",
+ "handle": "dwc-1001682",
+ "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_4693312077875.jpg?v=1775521568",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Gray",
+ "NCW4394-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001682"
+ },
+ {
+ "sku": "gianna-purple-texture-wallpaper-wallpaper-cca-82885",
+ "handle": "gianna-purple-texture-wallpaper-wallpaper-cca-82885",
+ "title": "Gianna Purple Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b82ff3bf78297ddd91375f585b27aac.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Effects",
+ "Gray",
+ "LA Walls",
+ "Lattice",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gianna-purple-texture-wallpaper-wallpaper-cca-82885"
+ },
+ {
+ "sku": "highlands-honeycomb-wood-weave-hlw-73136",
+ "handle": "highlands-honeycomb-wood-weave-hlw-73136",
+ "title": "Highlands Honeycomb Wood Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73136-sample-clean.jpg?v=1774483661",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Wood",
+ "Geometric",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 96.04,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/highlands-honeycomb-wood-weave-hlw-73136"
+ },
+ {
+ "sku": "live-life-small-mural-by-retro-walls-rtr-37211",
+ "handle": "live-life-small-mural-by-retro-walls-rtr-37211",
+ "title": "Live Life Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e63243cc4331b77868943bd55e9beb8d.jpg?v=1572309701",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Light Blue",
+ "Light Green",
+ "Mauve",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Purple",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/live-life-small-mural-by-retro-walls-rtr-37211"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53073",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53073",
+ "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-53073-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703576",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "LEED",
+ "Living Room",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53073"
+ },
+ {
+ "sku": "captiva-mint-floral-toss-wallpaper-cca-83045",
+ "handle": "captiva-mint-floral-toss-wallpaper-cca-83045",
+ "title": "Captiva Mint Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/15e7d334f7242c62a4cb54f23ab3b225.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-mint-floral-toss-wallpaper-cca-83045"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_mya-9437-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9437-jpg",
+ "title": "Maya - Flax | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9437.jpg?v=1762302048",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Flax",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9437-jpg"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47633",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47633",
+ "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-47633-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710869",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47633"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em9732r-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em9732r-jpg",
+ "title": "EM9732R | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9516.jpg?v=1733873333",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM9732R",
+ "Gray",
+ "Light Gray",
+ "Non-woven",
+ "Textured",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9732r-jpg"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+ "title": "Pippy's Peacock - Teal Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53622-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716638",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53622"
+ },
+ {
+ "sku": "origami-by-innovations-usa-dwc-origami-8",
+ "handle": "origami-by-innovations-usa-dwc-origami-8",
+ "title": "Origami | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-8.jpg?v=1736198886",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Gray",
+ "Innovations USA",
+ "Origami",
+ "Origami-8",
+ "Paper",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-8"
+ },
+ {
+ "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": "ncw4304-06",
+ "handle": "ncw4304-06",
+ "title": "Les Rêves Marguerite 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_4497262444595.jpg?v=1775520315",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "NCW4304-06",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4304-06"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52575",
+ "handle": "le-madison-durable-walls-xwk-52575",
+ "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-52575-sample-le-madison-durable-hollywood-wallcoverings.jpg?v=1775721717",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Tan",
+ "textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52575"
+ },
+ {
+ "sku": "eur-80320-ncw4304-designer-wallcoverings-los-angeles",
+ "handle": "eur-80320-ncw4304-designer-wallcoverings-los-angeles",
+ "title": "Les RêVes Marguerite Green/Ivory - 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_7513504055347.jpg?v=1775523358",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Damask",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "LES REVES",
+ "Marguerite Damask",
+ "NCW4304",
+ "NCW4304-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off White",
+ "Ogee",
+ "Pale Green",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80320-ncw4304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4303-01",
+ "handle": "ncw4303-01",
+ "title": "Les Rêves Camille Indigo/Blue - Cobalt 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_4497262018611.jpg?v=1775520250",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Lattice",
+ "NCW4303-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4303-01"
+ },
+ {
+ "sku": "eur-80429-ncw4491-designer-wallcoverings-los-angeles",
+ "handle": "eur-80429-ncw4491-designer-wallcoverings-los-angeles",
+ "title": "Almora 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_7513507725363.jpg?v=1775524037",
+ "tags": [
+ "Almora",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Ivory",
+ "Living Room",
+ "NCW4491",
+ "NCW4491-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Sky Blue",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80429-ncw4491-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-70339-designer-wallcoverings-los-angeles",
+ "handle": "eur-70339-designer-wallcoverings-los-angeles",
+ "title": "Boa Snake Grey | Osborne & Little Europe",
+ "vendor": "Osborne & Little",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5206_3ea4be3a-1fac-42c6-a674-adc9c1efbde5.webp?v=1738614404",
+ "tags": [
+ "Abstract",
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Boa Snake",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Denim",
+ "Fauna",
+ "Glamorous",
+ "Hallway",
+ "KOMODO",
+ "Light Grey",
+ "Living Room",
+ "Luxury",
+ "Modern",
+ "Off-white",
+ "Osborne & Little",
+ "Osborne & Little Europe",
+ "Pattern",
+ "Please provide the actual HEX codes so I can assign accurate one-word color names based on the requirements.",
+ "Scale",
+ "Snake",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "W6301",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-70339-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "labyrinth-by-innovations-usa-dwc-labyrinth-2",
+ "handle": "labyrinth-by-innovations-usa-dwc-labyrinth-2",
+ "title": "Labyrinth | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Labyrinth-2.jpg?v=1736198933",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Blue",
+ "Geometric",
+ "Innovations USA",
+ "Labyrinth",
+ "Labyrinth-2",
+ "Light Blue",
+ "Non-woven",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/labyrinth-by-innovations-usa-dwc-labyrinth-2"
+ },
+ {
+ "sku": "ncw4352-05",
+ "handle": "ncw4352-05",
+ "title": "Les Indiennes Bonnelles Green/Ivory - 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_4497264410675.jpg?v=1775520536",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Green",
+ "Leaf",
+ "Light Green",
+ "NCW4352-05",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4352-05"
+ },
+ {
+ "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": "rustic-glam-vinyl-gpr-76648",
+ "handle": "rustic-glam-vinyl-gpr-76648",
+ "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-76648-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775732043",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Jade",
+ "Light Green",
+ "Pale Beige",
+ "Rustic",
+ "Seafoam",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "USFCID#vp885-219",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76648"
+ },
+ {
+ "sku": "austin-green-plaid-wallpaper-cca-82963",
+ "handle": "austin-green-plaid-wallpaper-cca-82963",
+ "title": "Austin Green Plaid | LA Walls",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/962b83fbe1971070f0560384cd0965d2.jpg?v=1747080316",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Gray",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Plaid",
+ "Plaids",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wallpapers Wallpapers Walls: Chela Ciccio",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/austin-green-plaid-wallpaper-cca-82963"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73122",
+ "handle": "puna-drive-natural-grassweave-hlw-73122",
+ "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-73122-sample-clean.jpg?v=1774483564",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73122"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72297",
+ "handle": "la-voltere-durable-vinyl-dur-72297",
+ "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-72297-sample-clean.jpg?v=1774485086",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "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-72297"
+ },
+ {
+ "sku": "versace-plain-shimmer-grey-wallcovering-versace-1",
+ "handle": "versace-plain-shimmer-grey-wallcovering-versace-1",
+ "title": "Plain Shimmer Grey Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e0a3e3fcc7daac3ee70fc782b7ab2f9a_18f64d04-297c-4988-8dc2-0159c3249ffb.jpg?v=1773706495",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Italian",
+ "Light Gray",
+ "Living Room",
+ "Luxury",
+ "Office",
+ "Organic Modern",
+ "Pale Grey",
+ "Paper",
+ "Plain Shimmer Grey Wallcovering",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Shimmer",
+ "Versace VI",
+ "Wallcovering",
+ "Walnut Brown"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-shimmer-grey-wallcovering-versace-1"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_for-5050-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5050-jpg",
+ "title": "Forge - Sardonyx | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5050.jpg?v=1762294743",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Forge",
+ "RAMPART®",
+ "Sardonyx",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5050-jpg"
+ },
+ {
+ "sku": "watch-hill-skin-wallcovering-phillipe-romano",
+ "handle": "watch-hill-skin-wallcovering-phillipe-romano",
+ "title": "Watch Hill - Skin Wallcovering | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Commercial Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Lgeuo23Gm0M07ExnghToQzwlxUUAVDrJiDQSdpl0.jpg?v=1776190093",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Fire Rated",
+ "Full Roll",
+ "Gray",
+ "Hollywood Vinyls Vol. 1",
+ "mfr:DWHV-101237",
+ "Off-white",
+ "Phillipe Romano",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Watch Hill"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/watch-hill-skin-wallcovering-phillipe-romano"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+ "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-pagoda.jpg?v=1777480833",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53413"
+ },
+ {
+ "sku": "dwc-1001667",
+ "handle": "dwc-1001667",
+ "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_4693311258675.jpg?v=1775521469",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bohemian",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gold",
+ "NCW4391-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001667"
+ },
+ {
+ "sku": "ncw4301-02",
+ "handle": "ncw4301-02",
+ "title": "Les Rêves Beau Rivage Pink/Taupe - 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_4497261658163.jpg?v=1775520190",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Geometric",
+ "Gray",
+ "NCW4301-02",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4301-02"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..c866ff9
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+ "name": "contractwallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "contractwallpaper",
+ "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..66608c8
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "contractwallpaper",
+ "version": "0.1.0",
+ "description": "CONTRACT 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..9ba9e64
--- /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">C</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..2e67535
--- /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>CONTRACT WALLPAPER — Built for the room</title>
+<meta name="description" content="CONTRACT WALLPAPER · Built for the room. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0a0e14">
+<link rel="canonical" href="https://contractwallpaper.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: #0a0e14;
+ --paper: #ffffff;
+ --muted: #8a98ac;
+ --line: rgba(255,255,255,0.10);
+ --accent: #7ea8d4;
+ --bg-soft: #141a26;
+ --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('contract_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">Class A Spec</div>
+ <div class="center-mark">CONTRACT WALLPAPER<span class="tm">.</span><span class="sub">Built for the room</span></div>
+ <div class="meta-line">Class A · Hospitality · Healthcare · Commercial<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">Class A · Hospitality · Healthcare · Commercial</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">CONTRACT WALLPAPER</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated class a · hospitality · healthcare · commercial from heritage mills, fulfilled through the DW trade channel — memo samples ship free.</p>
+ <p class="footer-text" style="margin-top:14px;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;font-weight:600;color:var(--paper);opacity:0.7">DesignerWallcoverings.com — Authorized Trade Channel</p>
+ </div>
+ <div class="footer-col">
+ <h4>Aesthetic</h4>
+ <div id="footerFacets"></div>
+ </div>
+ <div class="footer-col">
+ <h4>Trade</h4>
+ <button onclick="dwmOpen('Inquiry')">Project Inquiry</button>
+ <button onclick="dwmOpen('Sample')">Request Sample</button>
+ <button onclick="dwmOpen('Contact')">Contact</button>
+ </div>
+ </div>
+ <!-- mini-constellation: every storefront shows its position in the family -->
+ <div style="max-width:1400px;margin:0 auto 24px;padding:32px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)">
+ <div style="display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:12px;margin-bottom:18px">
+ <div>
+ <div style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:6px">★ DW FAMILY · 43 niches</div>
+ <div style="font-family:'EB Garamond',serif;font-style:italic;font-size:18px;color:var(--paper);letter-spacing:0.01em">You're on <span style="color:var(--accent);font-weight:500">{{SLUG}}</span>. Hover any star to leap.</div>
+ </div>
+ <a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--accent);font-weight:600;text-decoration:none;border:1px solid var(--accent);padding:8px 14px">DW Universe →</a>
+ </div>
+ <svg id="miniConst" viewBox="0 0 1080 140" style="width:100%;height:140px;display:block">
+ <defs>
+ <pattern id="dna-mat" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><line x1="0" y1="0" x2="0" y2="5" stroke="#c9b687" stroke-width="0.6"/></pattern>
+ <pattern id="dna-dec" width="8" height="5" patternUnits="userSpaceOnUse"><polyline points="0,4 4,1 8,4" stroke="#b86a4a" stroke-width="0.6" fill="none"/></pattern>
+ <pattern id="dna-cra" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(-30)"><line x1="0" y1="2.5" x2="5" y2="2.5" stroke="#6b8e6f" stroke-width="0.5" stroke-dasharray="1.4 1.2"/></pattern>
+ <pattern id="dna-use" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M0 0 L4 0 M0 0 L0 4" stroke="#4a6b8e" stroke-width="0.4" fill="none"/></pattern>
+ </defs>
+ </svg>
+ <div style="display:flex;justify-content:space-between;font-size:9px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:6px;padding:0 8px">
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#c9b687;border-radius:50%"></i>Material</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#b86a4a;border-radius:50%"></i>Decade</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#6b8e6f;border-radius:50%"></i>Craft</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#4a6b8e;border-radius:50%"></i>Use-case</span>
+ </div>
+ </div>
+
+ <div class="footer-bottom">
+ <span>contractwallpaper.com · a designer wallcoverings family vertical</span>
+ <span><a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="color:var(--accent);text-decoration:none;letter-spacing:0.18em">DW Universe — search all 43 niches at once →</a></span>
+ <span id="footerStat"></span>
+ </div>
+</footer>
+
+<script>
+// mini-constellation — 43 niche-stars, current site highlighted in gold
+(function(){
+ const SLUG = "{{SLUG}}";
+ const NICHES = [
+ ['silkwallpaper','Silk','mat'],['silkwallcoverings','Silk W/C','mat'],['linenwallpaper','Linen','mat'],
+ ['jutewallpaper','Jute','mat'],['raffiawallcoverings','Raffia W/C','mat'],['raffiawalls','Raffia Walls','mat'],
+ ['corkwallcovering','Cork','mat'],['fabricwallpaper','Fabric','mat'],['textilewallpaper','Textile','mat'],
+ ['metallicwallpaper','Metallic','mat'],['silverleafwallpaper','Silver Leaf','mat'],['vinylwallpaper','Vinyl','mat'],
+ ['micawallpaper','Mica','mat'],['madagascarwallpaper','Madagascar','mat'],['mylarwallpaper','Mylar','mat'],
+ ['suedewallpaper','Suede','mat'],
+ ['1800swallpaper','1800s','dec'],['1890swallpaper','1890s','dec'],['1900swallpaper','1900s','dec'],
+ ['1920swallpaper','1920s','dec'],['1930swallpaper','1930s','dec'],['1940swallpaper','1940s','dec'],
+ ['1950swallpaper','1950s','dec'],['1960swallpaper','1960s','dec'],['1970swallpaper','1970s','dec'],
+ ['1980swallpaper','1980s','dec'],['retrowalls','Retro','dec'],['wallpapersback','W. Back','dec'],
+ ['agedwallpaper','Aged','cra'],['handcraftedwallpaper','Handcrafted','cra'],['museumwallpaper','Museum','cra'],
+ ['restorationwallpaper','Restoration','cra'],['pastelwallpaper','Pastel','cra'],['glitterwalls','Glitter','cra'],
+ ['greenwallcoverings','Green','cra'],['naturalwallcoverings','Natural','cra'],['saloonwallpaper','Saloon','cra'],
+ ['contractwallpaper','Contract','use'],['hotelwallcoverings','Hotel','use'],['hospitalitywallpaper','Hospitality','use'],
+ ['healthcarewallpaper','Healthcare','use'],['restaurantwallpaper','Restaurant','use'],['architecturalwallcoverings','Architectural','use']
+ ];
+ const COLOR = { mat:'#c9b687', dec:'#b86a4a', cra:'#6b8e6f', use:'#4a6b8e' };
+ const W = 1080, H = 140, BANDS = ['mat','dec','cra','use'];
+ const groups = { mat:[], dec:[], cra:[], use:[] };
+ for (const n of NICHES) groups[n[2]].push(n);
+ const svg = document.getElementById('miniConst');
+ if (!svg) return;
+ const bandW = W / BANDS.length;
+ let nodes = '';
+ BANDS.forEach((band, bi) => {
+ const list = groups[band];
+ const cx = bi * bandW + bandW / 2;
+ list.forEach((n, i) => {
+ const t = list.length === 1 ? 0.5 : i / (list.length - 1);
+ // deterministic jitter per slug
+ let h = 0; for (let k = 0; k < n[0].length; k++) h = (h * 31 + n[0].charCodeAt(k)) | 0;
+ const jx = ((h & 0xff) / 255 - 0.5) * (bandW * 0.5);
+ const jy = (((h >> 8) & 0xff) / 255 - 0.5) * 14;
+ const x = cx + jx, y = 24 + t * (H - 48) + jy;
+ const isCurrent = n[0] === SLUG;
+ const r = isCurrent ? 8 : 4;
+ const op = isCurrent ? 1 : 0.55;
+ nodes += `<g class="mc-node" data-slug="${n[0]}" data-label="${n[1]}" style="cursor:pointer">
+ <circle cx="${x}" cy="${y}" r="${r}" fill="url(#dna-${band})" fill-opacity="${op}" stroke="${COLOR[band]}" stroke-opacity="${isCurrent?1:0.7}" stroke-width="${isCurrent?2:1}">
+ <title>${n[1]} — ${n[0]}.com</title>
+ </circle>
+ ${isCurrent ? `<circle cx="${x}" cy="${y}" r="${r+5}" fill="none" stroke="${COLOR[band]}" stroke-opacity="0.4" stroke-width="1"><animate attributeName="r" values="${r+5};${r+12};${r+5}" dur="2.4s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" repeatCount="indefinite"/></circle>` : ''}
+ </g>`;
+ });
+ });
+ // append nodes after defs
+ svg.insertAdjacentHTML('beforeend', nodes);
+ svg.querySelectorAll('.mc-node').forEach(n => {
+ n.addEventListener('mouseenter', () => n.querySelector('circle').setAttribute('fill-opacity', '1'));
+ n.addEventListener('mouseleave', e => {
+ const isCurrent = n.dataset.slug === SLUG;
+ n.querySelector('circle').setAttribute('fill-opacity', isCurrent ? '1' : '0.55');
+ });
+ n.addEventListener('click', () => window.open('https://' + n.dataset.slug + '.com', '_blank'));
+ });
+})();
+</script>
+
+<script>
+const state = { q:'', facet:'all', page:1, pages:1, total:0, loading:false, exhausted:false };
+const LABELS = {"all":"All"};
+
+function escAttr(s) { return String(s == null ? '' : s).replace(/[&<>"']/g, c => ({ '&':'&','<':'<','>':'>','"':'"',"'":''' }[c])); }
+// Image-URL allowlist: only DW Shopify CDN + designerwallcoverings.com (defends against XSS via crafted products.json)
+function safeImg(u) { return /^https:\/\/(?:cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u || '') ? u : '/hero-bg.jpg'; }
+function cardHTML(p) {
+ return '<img loading="lazy" src="' + escAttr(safeImg(p.image_url)) + '" alt="' + escAttr(p.title) + '">'
+ + '<div class="overlay">'
+ + '<div class="pat">' + escAttr(p.pattern_name || p.title) + '</div>'
+ + '<div class="ven">' + escAttr((p.vendor || '').replace(/-/g, ' ')) + '</div>'
+ + '<div class="actions">'
+ + '<button class="sample-btn" onclick="event.stopPropagation();dwmOpen(\'Sample\',' + JSON.stringify({sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}).replace(/"/g,'"') + ')">Sample</button>'
+ + '</div></div>';
+}
+
+async function loadFacets() {
+ let f;
+ try {
+ const r = await fetch('/api/facets');
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ f = await r.json();
+ } catch (e) { console.error('loadFacets failed:', e); return; }
+ const el = document.getElementById('facets');
+ for (const [k, v] of Object.entries(f.aesthetics).sort((a,b) => b[1] - a[1])) {
+ const b = document.createElement('button');
+ b.className = 'chip'; b.dataset.facet = k;
+ b.innerHTML = (LABELS[k] || k) + ' <span style="opacity:.55;font-weight:500;margin-left:4px">' + v + '</span>';
+ el.appendChild(b);
+ }
+ el.addEventListener('click', e => {
+ if (e.target.tagName !== 'BUTTON') return;
+ document.querySelectorAll('#facets button').forEach(b => b.classList.remove('active'));
+ e.target.classList.add('active');
+ state.facet = e.target.dataset.facet;
+ resetGrid();
+ });
+ document.getElementById('totalCount').textContent = f.total;
+ document.getElementById('footerStat').textContent = f.total + ' patterns · live archive';
+ // Footer aesthetic links
+ const footerEl = document.getElementById('footerFacets');
+ for (const [k] of Object.entries(f.aesthetics)) {
+ const b = document.createElement('button');
+ b.textContent = LABELS[k] || k;
+ b.onclick = () => { state.facet = k; resetGrid(); document.querySelectorAll('#facets button').forEach(x => x.classList.toggle('active', x.dataset.facet === k)); document.getElementById('shop').scrollIntoView({behavior:'smooth'}); };
+ footerEl.appendChild(b);
+ }
+}
+
+function resetGrid() {
+ state.page = 1; state.exhausted = false;
+ document.getElementById('grid').innerHTML = '';
+ document.getElementById('loading').textContent = 'Loading…';
+ loadGridPage();
+}
+
+async function loadGridPage() {
+ if (state.loading || state.exhausted) return;
+ state.loading = true;
+ const params = new URLSearchParams({ page:state.page, limit:24 });
+ if (state.q) params.set('q', state.q);
+ if (state.facet !== 'all') params.set('aesthetic', state.facet);
+ let data;
+ try {
+ const r = await fetch('/api/products?' + params);
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ data = await r.json();
+ } catch (e) {
+ console.error('loadGridPage failed:', e);
+ document.getElementById('loading').textContent = '— offline — refresh to retry —';
+ state.loading = false;
+ return;
+ }
+ state.total = data.total; state.pages = data.pages;
+
+ if (state.page === 1) {
+ document.getElementById('statLine').textContent = data.total + ' patterns · ' + (state.facet === 'all' ? 'all aesthetics' : (LABELS[state.facet] || state.facet)) + (state.q ? ' · matching "' + state.q + '"' : '');
+ }
+ const grid = document.getElementById('grid');
+ for (const p of data.items) {
+ const a = document.createElement('a');
+ a.className = 'card'; a.href = '#'; a.onclick = (e) => { e.preventDefault(); dwmOpen('Sample',{sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}); };
+ a.innerHTML = cardHTML(p);
+ grid.appendChild(a);
+ }
+ if (state.page >= state.pages || data.items.length === 0) {
+ state.exhausted = true;
+ document.getElementById('loading').textContent = state.total > 0 ? '— end of archive · ' + state.total + ' patterns —' : '';
+ } else state.page++;
+ state.loading = false;
+}
+
+const io = new IntersectionObserver(es => { for (const e of es) if (e.isIntersecting) loadGridPage(); }, { rootMargin:'600px 0px' });
+io.observe(document.getElementById('sentinel'));
+
+document.getElementById('searchInput').addEventListener('input', e => {
+ state.q = e.target.value.trim();
+ clearTimeout(window._t);
+ window._t = setTimeout(resetGrid, 220);
+});
+
+// Density slider
+const slider = document.getElementById('densitySlider');
+const dlabel = document.getElementById('densityLabel');
+function setDensity(n) {
+ document.documentElement.style.setProperty('--cols', n);
+ dlabel.textContent = n + ' cols';
+ try { localStorage.setItem('contract_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('contract_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('contract_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..93d0f0f
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * CONTRACT 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 || 9849;
+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: "Contract Wallpaper", zdColor: "#7ea8d4", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "contractwallpaper" });
+
+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 = ["hospitality","healthcare","commercial","natural","abstract","botanical"];
+ 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://contractwallpaper.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://contractwallpaper.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(`contractwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..5eff25a
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+ "slug": "contractwallpaper",
+ "siteName": "Contract Wallpaper",
+ "domain": "contractwallpaper.com",
+ "nicheKeyword": "contract",
+ "tagline": "Type II commercial wallcoverings.",
+ "heroHeadline": "CONTRACT WALLPAPER",
+ "heroSub": "Type II commercial wallcoverings.",
+ "theme": {
+ "accent": "#7ea8d4"
+ },
+ "rails": [
+ "type-ii",
+ "hospitality",
+ "healthcare",
+ "office",
+ "retail",
+ "wipe-clean"
+ ],
+ "port": 9849
+}
(oldest)
·
back to Contractwallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero 51df14d →