← back to Hotelwallcoverings
initial scaffold (gitify-all 2026-05-06)
8b4d8e1fcd7f44f042a0ee516b5d7b4a6dadb700 · 2026-05-06 10:25:40 -0700 · Steve Abrams
Files touched
A .gitignoreA _universal-auth.jsA _universal-contact.jsA data/products.jsonA package-lock.jsonA package.jsonA public/favicon.svgA public/hero-bg.jpgA public/index.htmlA server.jsA site.config.json
Diff
commit 8b4d8e1fcd7f44f042a0ee516b5d7b4a6dadb700
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:40 2026 -0700
initial scaffold (gitify-all 2026-05-06)
---
.gitignore | 12 +
_universal-auth.js | 296 +
_universal-contact.js | Bin 0 -> 15049 bytes
data/products.json | 22103 ++++++++++++++++++++++++++++++++++++++++++++++++
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, 24024 insertions(+)
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7e6a9c3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,12 @@
+node_modules/
+.env
+.env.local
+.env.*.local
+.env.*
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+*.bak
diff --git a/_universal-auth.js b/_universal-auth.js
new file mode 100644
index 0000000..02bc9fb
--- /dev/null
+++ b/_universal-auth.js
@@ -0,0 +1,296 @@
+// DW family universal auth — drop-in for any sister site's server.js.
+// Mount BEFORE static. Provides:
+// /admin → Basic Auth (admin / DWSecure2024! via env ADMIN_PASS) → leads dashboard
+// /admin/leads.json → JSON dump of leads.jsonl (admin only)
+// /admin/stats.json → counts + recent activity
+// POST /account/register {name,email,password} → cookie session
+// POST /account/login {email,password} → cookie session
+// POST /account/logout
+// GET /account/me → {user, samples:[]} for logged-in user
+// POST /account/favorites {sku,title,image_url, action:'add'|'remove'}
+// GET /account → HTML dashboard
+//
+// Storage: data/users.json (single file per site, fail-soft like leads.jsonl).
+// Sessions: httpOnly cookie sid → user.id mapping in memory + persisted in users.json.
+// Passwords: scrypt (Node built-in, no npm install).
+//
+// Per Steve's standing rules:
+// - Lightweight, no email verify, no password reset (manual ask)
+// - Per-site users.json (each site is its own marketing surface)
+// - admin/DWSecure2024! same across all sites (matches DW-Agents pattern)
+
+const fs = require('fs');
+const path = require('path');
+const crypto = require('crypto');
+
+module.exports = function (app, opts) {
+ opts = opts || {};
+ const SITE = opts.siteName || 'DW Family';
+ const ADMIN_USER = process.env.ADMIN_USER || 'admin';
+ const ADMIN_PASS = process.env.ADMIN_PASS || '';
+ if (!ADMIN_PASS) {
+ if (process.env.NODE_ENV === 'production') {
+ throw new Error('[auth] ADMIN_PASS env required in production — set via /root/.dw-fleet.env (sourced by pm2 ecosystem)');
+ }
+ console.warn('[auth] ADMIN_PASS not set — /admin will return 401 to all requests');
+ }
+ const COOKIE_NAME = 'dw_sid';
+ const SESSION_TTL_MS = 30 * 24 * 60 * 60 * 1000; // 30 days
+
+ const DATA_DIR = path.join(__dirname, 'data');
+ const USERS_FILE = path.join(DATA_DIR, 'users.json');
+ const LEADS_FILE = path.join(DATA_DIR, 'leads.jsonl');
+ try { fs.mkdirSync(DATA_DIR, { recursive: true }); } catch (e) {}
+
+ // ─── storage ──────────────────────────────────────────────────────────────
+ let store = { users: [], sessions: {} }; // {sessions: {sid: {userId, expires}}}
+ try { if (fs.existsSync(USERS_FILE)) store = JSON.parse(fs.readFileSync(USERS_FILE, 'utf8')); } catch (e) { console.warn('[auth] users.json parse failed; starting fresh'); }
+ if (!store.users) store.users = [];
+ if (!store.sessions) store.sessions = {};
+
+ let writeQ = null;
+ function persist() {
+ if (writeQ) return;
+ writeQ = setTimeout(() => { writeQ = null; try { fs.writeFileSync(USERS_FILE + '.tmp', JSON.stringify(store, null, 2)); fs.renameSync(USERS_FILE + '.tmp', USERS_FILE); } catch (e) { console.error('[auth] persist failed:', e.message); } }, 200);
+ }
+
+ // ─── password hashing ─────────────────────────────────────────────────────
+ function hashPassword(pw) {
+ const salt = crypto.randomBytes(16).toString('hex');
+ const hash = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return `scrypt$${salt}$${hash}`;
+ }
+ function verifyPassword(pw, stored) {
+ try {
+ const [scheme, salt, hash] = stored.split('$');
+ if (scheme !== 'scrypt') return false;
+ const test = crypto.scryptSync(pw, salt, 64).toString('hex');
+ return crypto.timingSafeEqual(Buffer.from(hash, 'hex'), Buffer.from(test, 'hex'));
+ } catch (e) { return false; }
+ }
+
+ // ─── helpers ──────────────────────────────────────────────────────────────
+ const EMAIL_RE = /^[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}$/;
+ function clean(s, max) { return s == null ? '' : String(s).replace(/[\r\n\t\v\f ]+/g, ' ').trim().slice(0, max); }
+ function parseCookies(req) { const out = {}; const h = req.headers.cookie || ''; for (const part of h.split(';')) { const [k, v] = part.trim().split('='); if (k) out[k] = decodeURIComponent(v || ''); } return out; }
+ function setCookie(res, name, value, opts = {}) {
+ const parts = [`${name}=${encodeURIComponent(value)}`, `Path=${opts.path || '/'}`, 'HttpOnly', 'SameSite=Lax'];
+ if (opts.secure) parts.push('Secure');
+ if (opts.maxAge) parts.push(`Max-Age=${Math.floor(opts.maxAge / 1000)}`);
+ if (opts.expires) parts.push(`Expires=${opts.expires.toUTCString()}`);
+ res.setHeader('Set-Cookie', parts.join('; '));
+ }
+ function basicAuthOK(req) {
+ if (!ADMIN_PASS) return false; // no admin pass configured → refuse all
+ const h = req.headers.authorization || '';
+ if (!h.startsWith('Basic ')) return false;
+ try {
+ const [u, p] = Buffer.from(h.slice(6), 'base64').toString().split(':');
+ if (u !== ADMIN_USER) return false;
+ const a = Buffer.from(String(p || ''));
+ const b = Buffer.from(ADMIN_PASS);
+ return a.length === b.length && crypto.timingSafeEqual(a, b);
+ } catch (e) { return false; }
+ }
+ function requireAdmin(req, res, next) {
+ if (!basicAuthOK(req)) { res.setHeader('WWW-Authenticate', `Basic realm="${SITE} Admin"`); return res.status(401).send('admin auth required'); }
+ next();
+ }
+ function userFromReq(req) {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (!sid) return null;
+ const sess = store.sessions[sid];
+ if (!sess || sess.expires < Date.now()) { if (sess) delete store.sessions[sid]; return null; }
+ return store.users.find(u => u.id === sess.userId) || null;
+ }
+ function startSession(res, user) {
+ const sid = crypto.randomBytes(24).toString('base64url');
+ store.sessions[sid] = { userId: user.id, expires: Date.now() + SESSION_TTL_MS };
+ persist();
+ const isHttps = (process.env.HTTPS || '').toLowerCase() === 'true' || process.env.NODE_ENV === 'production';
+ setCookie(res, COOKIE_NAME, sid, { maxAge: SESSION_TTL_MS, secure: isHttps });
+ }
+ function readLeads() {
+ if (!fs.existsSync(LEADS_FILE)) return [];
+ try { return fs.readFileSync(LEADS_FILE, 'utf8').trim().split('\n').filter(Boolean).map(l => { try { return JSON.parse(l); } catch (e) { return null; } }).filter(Boolean); } catch (e) { return []; }
+ }
+
+ // ─── /account/register ────────────────────────────────────────────────────
+ app.post('/account/register', (req, res) => {
+ const b = req.body || {};
+ const name = clean(b.name, 200);
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ if (!name || !EMAIL_RE.test(email) || password.length < 8) return res.status(400).json({ error: 'name, valid email, and 8-char password required' });
+ if (store.users.find(u => u.email === email)) return res.status(409).json({ error: 'email already registered' });
+ const user = { id: crypto.randomBytes(8).toString('hex'), name, email, pwd: hashPassword(password), createdAt: new Date().toISOString(), favorites: [] };
+ store.users.push(user); persist();
+ startSession(res, user);
+ res.json({ ok: true, user: { id: user.id, name: user.name, email: user.email } });
+ });
+
+ // Constant-cost dummy hash so login timing doesn't reveal whether email exists
+ const DUMMY_HASH = `scrypt$${crypto.randomBytes(16).toString('hex')}$${crypto.scryptSync('does-not-match', 'dummy-salt', 64).toString('hex')}`;
+
+ // ─── /account/login ───────────────────────────────────────────────────────
+ app.post('/account/login', (req, res) => {
+ const b = req.body || {};
+ const email = clean(b.email, 200).toLowerCase();
+ const password = String(b.password || '');
+ const u = store.users.find(x => x.email === email);
+ // Always compute scrypt to keep timing constant whether user exists or not
+ const valid = verifyPassword(password, u ? u.pwd : DUMMY_HASH);
+ if (!u || !valid) return res.status(401).json({ error: 'invalid email or password' });
+ startSession(res, u);
+ res.json({ ok: true, user: { id: u.id, name: u.name, email: u.email } });
+ });
+
+ // ─── /account/logout ──────────────────────────────────────────────────────
+ app.post('/account/logout', (req, res) => {
+ const sid = parseCookies(req)[COOKIE_NAME];
+ if (sid && store.sessions[sid]) { delete store.sessions[sid]; persist(); }
+ setCookie(res, COOKIE_NAME, '', { maxAge: 0 });
+ res.json({ ok: true });
+ });
+
+ // ─── /account/me ──────────────────────────────────────────────────────────
+ app.get('/account/me', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const samples = readLeads().filter(l => (l.email || '').toLowerCase() === u.email);
+ res.json({ user: { id: u.id, name: u.name, email: u.email, createdAt: u.createdAt }, favorites: u.favorites || [], samples });
+ });
+
+ // ─── /account/favorites ───────────────────────────────────────────────────
+ app.post('/account/favorites', (req, res) => {
+ const u = userFromReq(req);
+ if (!u) return res.status(401).json({ error: 'not logged in' });
+ const b = req.body || {};
+ const action = b.action === 'remove' ? 'remove' : 'add';
+ const sku = clean(b.sku, 200);
+ if (!sku) return res.status(400).json({ error: 'sku required' });
+ u.favorites = u.favorites || [];
+ if (action === 'add') {
+ if (!u.favorites.find(f => f.sku === sku)) {
+ u.favorites.push({ sku, title: clean(b.title, 400), image_url: clean(b.image_url, 600), addedAt: new Date().toISOString() });
+ }
+ } else {
+ u.favorites = u.favorites.filter(f => f.sku !== sku);
+ }
+ persist();
+ res.json({ ok: true, favorites: u.favorites });
+ });
+
+ // ─── /account (HTML dashboard) ────────────────────────────────────────────
+ app.get('/account', (req, res) => {
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>Account · ${SITE}</title>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="/styles.css" onerror="this.remove()">
+<style>
+body{font-family:-apple-system,sans-serif;max-width:680px;margin:80px auto;padding:24px;color:#222;background:#fafaf6}
+h1{font-size:32px;font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.card{background:#fff;padding:32px;border:1px solid #e5dfd0;margin-bottom:18px}
+input,button{font:inherit;padding:11px 14px;width:100%;box-sizing:border-box;margin:6px 0;border:1px solid #d0c9b8;background:#fff}
+button{background:#1b1814;color:#fafaf6;cursor:pointer;border:0;letter-spacing:0.18em;text-transform:uppercase;font-size:11px;padding:14px;margin-top:14px}
+button:hover{background:#3a342a}
+.tab{display:inline-block;padding:11px 20px;cursor:pointer;border:0;background:transparent;font-size:11px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+.tab.active{color:#1b1814;border-bottom:2px solid #1b1814}
+.row{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid #e5dfd0;align-items:center}
+.row img{width:50px;height:50px;object-fit:cover}
+.muted{color:#888;font-size:13px}
+.err{color:#a33d3d;font-size:13px;margin:6px 0}
+[hidden]{display:none}
+</style></head>
+<body>
+<h1>${SITE} · Account</h1>
+<div id="anon">
+ <div class="card">
+ <div><button class="tab active" data-pane="login">Sign In</button><button class="tab" data-pane="register">Create Account</button></div>
+ <div id="login">
+ <input id="le" type="email" placeholder="email" autocomplete="email">
+ <input id="lp" type="password" placeholder="password" autocomplete="current-password">
+ <div id="lerr" class="err"></div>
+ <button onclick="doLogin()">Sign In</button>
+ </div>
+ <div id="register" hidden>
+ <input id="rn" placeholder="name">
+ <input id="re" type="email" placeholder="email" autocomplete="email">
+ <input id="rp" type="password" placeholder="password (min 8)" autocomplete="new-password">
+ <div id="rerr" class="err"></div>
+ <button onclick="doRegister()">Create Account</button>
+ </div>
+ </div>
+</div>
+<div id="auth" hidden>
+ <div class="card">
+ <h2 id="hname" style="font-weight:300"></h2>
+ <p class="muted" id="hemail"></p>
+ <p class="muted" style="margin-top:14px">Member since <span id="hsince"></span></p>
+ <button onclick="logout()" style="margin-top:18px;background:transparent;color:#888;border:1px solid #d0c9b8">Sign Out</button>
+ </div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Saved Patterns</h3><div id="favs"><p class="muted">No favorites yet — heart any pattern in the catalog.</p></div></div>
+ <div class="card"><h3 style="margin-bottom:18px;font-weight:300">Sample Requests</h3><div id="samples"><p class="muted">No samples yet.</p></div></div>
+</div>
+<script>
+document.querySelectorAll('.tab').forEach(t=>t.onclick=()=>{document.querySelectorAll('.tab').forEach(x=>x.classList.toggle('active',x===t));['login','register'].forEach(id=>document.getElementById(id).hidden=(id!==t.dataset.pane))});
+async function api(path, body){ const r=await fetch(path,{method:'POST',headers:{'Content-Type':'application/json'},credentials:'include',body:body?JSON.stringify(body):undefined}); const j=await r.json().catch(()=>({}));return {ok:r.ok,j}; }
+async function doLogin(){const r=await api('/account/login',{email:le.value,password:lp.value});if(r.ok)render();else lerr.textContent=r.j.error||'login failed'}
+async function doRegister(){const r=await api('/account/register',{name:rn.value,email:re.value,password:rp.value});if(r.ok)render();else rerr.textContent=r.j.error||'register failed'}
+async function logout(){await api('/account/logout');location.reload()}
+function fmt(d){return new Date(d).toLocaleDateString('en-US',{month:'long',year:'numeric'})}
+async function render(){
+ const r=await fetch('/account/me',{credentials:'include'});
+ if(!r.ok){anon.hidden=false;auth.hidden=true;return}
+ const d=await r.json();anon.hidden=true;auth.hidden=false;
+ hname.textContent=d.user.name;hemail.textContent=d.user.email;hsince.textContent=fmt(d.user.createdAt);
+ if(d.favorites?.length){favs.innerHTML=d.favorites.map(f=>{const e=s=>String(s||'').replace(/[<>&"']/g,c=>({'<':'<','>':'>','&':'&','"':'"',"'":'''}[c]));const u=String(f.image_url||'');const safeUrl=/^https:\/\/(cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u)?u:'';return '<div class="row"><img src="'+e(safeUrl)+'" alt=""><div><div>'+e(f.title||f.sku)+'</div><div class="muted">'+e(f.sku)+'</div></div></div>'}).join('')}
+ if(d.samples?.length){samples.innerHTML=d.samples.map(s=>'<div class="row"><div><div>'+(s.title||s.sku||'sample')+'</div><div class="muted">'+(new Date(s.ts).toLocaleDateString())+'</div></div></div>').join('')}
+}
+render();
+</script></body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ // ─── /admin (Basic Auth) ──────────────────────────────────────────────────
+ app.get('/admin', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ const recent = leads.slice(-25).reverse();
+ const stats = { totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, kinds: {} };
+ for (const l of leads) stats.kinds[l.kind] = (stats.kinds[l.kind] || 0) + 1;
+ const recentRows = recent.map(l => `<tr><td>${new Date(l.ts).toLocaleString()}</td><td>${l.kind}</td><td>${(l.name || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.email || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td><td>${(l.title || l.projectName || '').replace(/[<>"]/g, c => '&#' + c.charCodeAt(0) + ';')}</td></tr>`).join('');
+ const html = `<!doctype html><html><head><meta charset="utf-8"><title>${SITE} Admin</title>
+<style>body{font-family:-apple-system,sans-serif;background:#0e0e0e;color:#eee;margin:0;padding:32px;font-size:14px}
+h1{font-weight:300;letter-spacing:-0.01em;margin-bottom:24px}
+.kpi{display:flex;gap:18px;margin-bottom:32px;flex-wrap:wrap}
+.kpi div{background:#1a1a1a;padding:18px 24px;border:1px solid #333;flex:1;min-width:160px}
+.kpi .n{font-size:32px;font-weight:300;color:#eee}
+.kpi .l{font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:#888;margin-top:6px}
+table{width:100%;border-collapse:collapse;background:#1a1a1a;border:1px solid #333}
+th,td{padding:10px 14px;text-align:left;border-bottom:1px solid #2a2a2a;font-size:13px}
+th{background:#222;font-size:10px;letter-spacing:0.32em;text-transform:uppercase;font-weight:600;color:#888}
+td{color:#ddd}
+small{color:#666}</style></head>
+<body>
+<h1>${SITE} · Admin</h1>
+<div class="kpi">
+ <div><div class="n">${stats.totalLeads}</div><div class="l">Total Leads</div></div>
+ <div><div class="n">${stats.totalUsers}</div><div class="l">Registered Users</div></div>
+ <div><div class="n">${stats.sessionsActive}</div><div class="l">Active Sessions</div></div>
+ <div><div class="n">${stats.kinds.inquiry || 0}</div><div class="l">Inquiries</div></div>
+ <div><div class="n">${stats.kinds.sample || 0}</div><div class="l">Sample Requests</div></div>
+</div>
+<h2 style="font-weight:300;margin:24px 0 12px">Recent Activity (last 25)</h2>
+<table><thead><tr><th>Time</th><th>Kind</th><th>Name</th><th>Email</th><th>Pattern / Project</th></tr></thead><tbody>${recentRows || '<tr><td colspan="5" style="text-align:center;color:#666;padding:24px">no leads yet</td></tr>'}</tbody></table>
+<p style="margin-top:24px"><small><a href="/admin/leads.json" style="color:#888">leads.json</a> · <a href="/admin/stats.json" style="color:#888">stats.json</a> · <a href="/" style="color:#888">site →</a></small></p>
+</body></html>`;
+ res.setHeader('Content-Type', 'text/html; charset=utf-8');
+ res.send(html);
+ });
+
+ app.get('/admin/leads.json', requireAdmin, (req, res) => res.json(readLeads()));
+ app.get('/admin/stats.json', requireAdmin, (req, res) => {
+ const leads = readLeads();
+ res.json({ totalLeads: leads.length, totalUsers: store.users.length, sessionsActive: Object.values(store.sessions).filter(s => s.expires > Date.now()).length, recent: leads.slice(-10).reverse() });
+ });
+};
diff --git a/_universal-contact.js b/_universal-contact.js
new file mode 100644
index 0000000..194e04f
Binary files /dev/null and b/_universal-contact.js differ
diff --git a/data/products.json b/data/products.json
new file mode 100644
index 0000000..20d1730
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,22103 @@
+[
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53536",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53536",
+ "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-nile_green.jpg?v=1777480864",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Blue-gray",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Green",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53536"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48205",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48205",
+ "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-48205-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729900",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Brown",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ebony",
+ "Eggplant",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Mahogany",
+ "Purple",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48205"
+ },
+ {
+ "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48379",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48379",
+ "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-48379-sample-skelton-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775734063",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Skelton Type 2 Vinyl Wallcovering",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48379"
+ },
+ {
+ "sku": "sesame-contemporary-embossed-durable-walls-xwj-52477",
+ "handle": "sesame-contemporary-embossed-durable-walls-xwj-52477",
+ "title": "Sesame Contemporary Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52477-sample-sesame-contemporary-embossed-durable-hollywood-wallcoverings.jpg?v=1775732966",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sesame-contemporary-embossed-durable-walls-xwj-52477"
+ },
+ {
+ "sku": "haute-sena-durable-vinyl-dur-72313",
+ "handle": "haute-sena-durable-vinyl-dur-72313",
+ "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-72313-sample-clean.jpg?v=1774485141",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Aqua",
+ "Light Blue",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Aqua",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Zen"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/haute-sena-durable-vinyl-dur-72313"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53056",
+ "handle": "boca-faux-finish-durable-walls-xww-53056",
+ "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-53056-sample-clean.jpg?v=1774481800",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Burnt Sienna",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Moody",
+ "Orange",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53056"
+ },
+ {
+ "sku": "mazarin-by-innovations-usa-dwc-mazarin-8",
+ "handle": "mazarin-by-innovations-usa-dwc-mazarin-8",
+ "title": "Mazarin | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Mazarin-8.jpg?v=1736198920",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Innovations USA",
+ "Mazarin",
+ "Mazarin-8",
+ "Non-woven",
+ "Tan",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mazarin-by-innovations-usa-dwc-mazarin-8"
+ },
+ {
+ "sku": "dwc-1001612",
+ "handle": "dwc-1001612",
+ "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_4693308473395.jpg?v=1775521115",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Light Coral",
+ "NCW4306-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Stripe",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001612"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52389",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52389",
+ "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/prelude-largo.jpg?v=1777480561",
+ "tags": [
+ "74%-100% post-consumer (Eco-fi polyester)",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burlywood",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Polyester",
+ "remaining fiber is pre-consumer (polyester)",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52389"
+ },
+ {
+ "sku": "skelton-type-ii-vinyl-wallcovering-xpy-48394",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48394",
+ "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-48394-sample-clean.jpg?v=1774480481",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Skelton Type 2 Vinyl Wallcovering",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48394"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52807",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52807",
+ "title": "Lister Lake 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/cirrus-horizon.jpg?v=1777480686",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52807"
+ },
+ {
+ "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": "bella-napoli-modern-lattice-mica-prn-62314",
+ "handle": "bella-napoli-modern-lattice-mica-prn-62314",
+ "title": "Bella Napoli Modern Lattice Mica | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/24796c90baef37141ec3b6a73cb696f7.jpg?v=1775113833",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Bella Napoli Modern Lattice Mica",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream on Pearl Gold",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Mica",
+ "Modern",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Paper",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Phillipe Romano Vol. 4",
+ "Textural",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bella-napoli-modern-lattice-mica-prn-62314"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53485",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53485",
+ "title": "Santa Rosa Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53485-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732854",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Modern",
+ "Paper",
+ "Santa Rosa Contemporary Durable",
+ "Silver",
+ "Sophisticated",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53485"
+ },
+ {
+ "sku": "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": "evoke-indigo-romo",
+ "handle": "evoke-indigo-romo",
+ "title": "Evoke Indigo | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW164-03-evoke-wallcovering-indigo_01.jpg?v=1776398708",
+ "tags": [
+ "Architectural",
+ "Background Color gray",
+ "beige",
+ "brown",
+ "Coastal",
+ "Collage IV",
+ "Commercial",
+ "Conference Room",
+ "Deep Charcoal",
+ "Evoke",
+ "Grasscloth",
+ "gray",
+ "Handcrafted Wallcovering",
+ "Lobby",
+ "Medium",
+ "MW164/03",
+ "Natural",
+ "Office",
+ "Romo",
+ "Rustic",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/evoke-indigo-romo"
+ },
+ {
+ "sku": "dwss-72687",
+ "handle": "dwss-72687",
+ "title": "Fredrik grey Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/808-21_image1_d154c814-879f-4d4a-a8aa-86230227a226.jpg?v=1646105070",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fredrik",
+ "Fredrik grey Sample",
+ "Geometric",
+ "Japonisme",
+ "Light Gray",
+ "P808-21",
+ "Paper",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72687"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2930",
+ "handle": "frank-s-faux-finish-fff-2930",
+ "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-2930-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714249",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2930"
+ },
+ {
+ "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": "spalt-by-innovations-usa-dwc-spalt-3",
+ "handle": "spalt-by-innovations-usa-dwc-spalt-3",
+ "title": "Spalt | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Spalt-3.jpg?v=1736199102",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Paper",
+ "Spalt",
+ "Spalt-3",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/spalt-by-innovations-usa-dwc-spalt-3"
+ },
+ {
+ "sku": "boothbay-harbor-sky-waterside-stripe-wallpaper-cca-83192",
+ "handle": "boothbay-harbor-sky-waterside-stripe-wallpaper-cca-83192",
+ "title": "Boothbay Harbor Sky Waterside Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5c5749ceaa3e98f63b6763fb21b3ba6.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boothbay-harbor-sky-waterside-stripe-wallpaper-cca-83192"
+ },
+ {
+ "sku": "dwkk-140158",
+ "handle": "dwkk-140158",
+ "title": "Abingdon Wp - Sand Beige By Lee Jofa | Blithfield |Global Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3530_16_18aae927-316b-4749-a77c-03e8c77ef8ef.jpg?v=1753291847",
+ "tags": [
+ "27.5In",
+ "Abingdon Wp",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Bohemian",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Commercial",
+ "display_variant",
+ "Geometric",
+ "Global",
+ "Lee Jofa",
+ "Luxury",
+ "Paper",
+ "Pbfc-3530.16.0",
+ "Print",
+ "Stripe",
+ "Textured",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140158"
+ },
+ {
+ "sku": "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": "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": "saint-brittany-durable-vinyl-dur-72247",
+ "handle": "saint-brittany-durable-vinyl-dur-72247",
+ "title": "Saint Brittany Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72247-sample-clean.jpg?v=1774484906",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grayish Brown",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-brittany-durable-vinyl-dur-72247"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73157",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73157",
+ "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-73157-sample-clean.jpg?v=1774483788",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73157"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47635",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47635",
+ "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-47635-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710925",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47635"
+ },
+ {
+ "sku": "hairly-hide-faux-vinyl-hide-wallpaper-burnt-orange-spice-fvh-40402",
+ "handle": "hairly-hide-faux-vinyl-hide-wallpaper-burnt-orange-spice-fvh-40402",
+ "title": "Hairly Hide - Faux Vinyl Hide - Burnt Orange Spice | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fvh-40402-sample-hairly-hide-faux-vinyl-hide-burnt-orange-spice-hollywood.jpg?v=1775715526",
+ "tags": [
+ "Architectural",
+ "Bold",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 204.94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hairly-hide-faux-vinyl-hide-wallpaper-burnt-orange-spice-fvh-40402"
+ },
+ {
+ "sku": "mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859",
+ "handle": "mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859",
+ "title": "Mia Peach Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/730be7789c53ba7ca7f92576d3a886c5.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow",
+ "Zebra"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859"
+ },
+ {
+ "sku": "toyoura-durable-vinyl-xlp-34549",
+ "handle": "toyoura-durable-vinyl-xlp-34549",
+ "title": "Toyoura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4aac08ad81e9b993ab3fe4f44f681cc3_2c3004ff-d9f8-4bf4-81e1-7d05a4db0c30.jpg?v=1572310424",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Phillipe Romano",
+ "Phillipe Romano Essential Textures",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Commercial and Residential - Cleanable",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/toyoura-durable-vinyl-xlp-34549"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwj-52488",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwj-52488",
+ "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/xwj-52488-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733151",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwj-52488"
+ },
+ {
+ "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": "lafayette-modern-embossed-durable-walls-xwf-52248",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52248",
+ "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-52248-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721059",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Slate Grey",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52248"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47313",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47313",
+ "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-47313-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704431",
+ "tags": [
+ "Architectural",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Brown",
+ "Champagne",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dining Room",
+ "Estimated Type: Paper",
+ "Gold",
+ "Grandmillennial",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Regencycore",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47313"
+ },
+ {
+ "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": "jutely-vinyl-dwx-58139",
+ "handle": "jutely-vinyl-dwx-58139",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58139-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720538",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Gray",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58139"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72161",
+ "handle": "st-silken-durable-vinyl-dur-72161",
+ "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-72161-sample-clean.jpg?v=1774484626",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Navy",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Navy",
+ "Office",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72161"
+ },
+ {
+ "sku": "dwss-72572",
+ "handle": "dwss-72572",
+ "title": "Osterbro black Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/633-08_image1_6cc7aec5-962f-49a9-b9c4-19aec02e172a.jpg?v=1646104693",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Greek Key",
+ "Minimalist",
+ "Osterbro",
+ "Osterbro black Sample",
+ "P633-08",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72572"
+ },
+ {
+ "sku": "capri-aqua-floral-scroll-wallpaper-cca-83047",
+ "handle": "capri-aqua-floral-scroll-wallpaper-cca-83047",
+ "title": "Capri Aqua Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8e8e88310c32e2c9e0b6969b214e0df1.jpg?v=1572309967",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-aqua-floral-scroll-wallpaper-cca-83047"
+ },
+ {
+ "sku": "rangeley-brass-new-avalon-stripe-wallpaper-cca-83125",
+ "handle": "rangeley-brass-new-avalon-stripe-wallpaper-cca-83125",
+ "title": "Rangeley Brass New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9ebeaedbf92a927534a7f7990f4fad98.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-brass-new-avalon-stripe-wallpaper-cca-83125"
+ },
+ {
+ "sku": "vomera-cream-faux-tile-wbs-39642",
+ "handle": "vomera-cream-faux-tile-wbs-39642",
+ "title": "Vomera Cream Faux Tile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39642-sample-vomera-cream-faux-tile-hollywood-wallcoverings.jpg?v=1775735892",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Bricks and Stones",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Powder Room",
+ "Rich Woods",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Yellow"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-cream-faux-tile-wbs-39642"
+ },
+ {
+ "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": "ncw4350-05",
+ "handle": "ncw4350-05",
+ "title": "Les Indiennes Les Indiennes 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_4497263722547.jpg?v=1775520464",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "NCW4350-05",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4350-05"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5048-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5048-jpg",
+ "title": "Dasma - Nickel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5048.jpg?v=1762292020",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Nickel",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5048-jpg"
+ },
+ {
+ "sku": "mia-pink-faux-zebra-stripes-wallpaper-wallpaper-cca-82857",
+ "handle": "mia-pink-faux-zebra-stripes-wallpaper-wallpaper-cca-82857",
+ "title": "Mia Pink Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0b62946781f52da914ecf128b06950f7.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Zebra"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-pink-faux-zebra-stripes-wallpaper-wallpaper-cca-82857"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10371-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10371-jpg",
+ "title": "Armor Paint - AR10371 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10370.jpg?v=1733873853",
+ "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_ar10371-jpg"
+ },
+ {
+ "sku": "dwkk-127826",
+ "handle": "dwkk-127826",
+ "title": "Wild Strawberry 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/W0135_01_CAC_010a6708-eaa4-45a3-8ae0-21f53ec6f9ba.jpg?v=1753321576",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Flower",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Non Woven - 100%",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Playful",
+ "Print",
+ "Sage Green",
+ "Sky Blue",
+ "Strawberry",
+ "Strawberry Red",
+ "Taupe",
+ "Traditional",
+ "United Kingdom",
+ "Vine",
+ "W0135/01.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Wild Strawberry Wp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127826"
+ },
+ {
+ "sku": "aubrey-beige-crystal-texture-wallpaper-cca-83282",
+ "handle": "aubrey-beige-crystal-texture-wallpaper-cca-83282",
+ "title": "Aubrey Beige Crystal Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2d9e8e166c933a2c7ade23c33c4f0dcd.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Off-White",
+ "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/aubrey-beige-crystal-texture-wallpaper-cca-83282"
+ },
+ {
+ "sku": "dwkk-127675",
+ "handle": "dwkk-127675",
+ "title": "Nico - Granite 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/W0057_03_CAC_7eb52739-49b2-4fd8-a56b-ea86cb9e83ad.jpg?v=1726037733",
+ "tags": [
+ "20.875In",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Granite",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Gray",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Nico",
+ "Non-Woven",
+ "Print",
+ "Serene",
+ "Silver Gray",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "Vinyl",
+ "W0057/03.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 168,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127675"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp9510-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp9510-jpg",
+ "title": "SP9510 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9508.jpg?v=1733872413",
+ "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_sp9510-jpg"
+ },
+ {
+ "sku": "eur-80245-ncw4206-designer-wallcoverings-los-angeles",
+ "handle": "eur-80245-ncw4206-designer-wallcoverings-los-angeles",
+ "title": "Tagus 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_7513500909619.jpg?v=1775522949",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "FONTIBRE",
+ "Hallway",
+ "Ivory",
+ "Living Room",
+ "NCW4206",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Off-white",
+ "Pale Beige",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Tagus",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80245-ncw4206-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwss-72508",
+ "handle": "dwss-72508",
+ "title": "Katarina Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/483-59_image1_c56c7401-be62-4369-b880-7d17005f33ac.jpg?v=1646104491",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Geometric",
+ "Katarina",
+ "Katarina Sample",
+ "Living Room",
+ "Mid-Century Modern",
+ "Non-Woven",
+ "Paper",
+ "Red",
+ "Retro",
+ "Sandberg",
+ "Sandberg Katarina",
+ "Scandinavian",
+ "Swedish Design",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72508"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52693",
+ "handle": "vernon-durable-walls-xwp-52693",
+ "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-52693-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735770",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Sand",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52693"
+ },
+ {
+ "sku": "santa-rosa-contemporary-durable-walls-xwt-53488",
+ "handle": "santa-rosa-contemporary-durable-walls-xwt-53488",
+ "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-53488-sample-santa-rosa-contemporary-durable-hollywood-wallcoverings.jpg?v=1775732865",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Blue",
+ "Light Steelblue",
+ "Living Room",
+ "Modern",
+ "Non-woven",
+ "Santa Rosa Contemporary Durable",
+ "Silver",
+ "Sophisticated",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/santa-rosa-contemporary-durable-walls-xwt-53488"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66717",
+ "handle": "zebilini-wallpaper-xd6-66717",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2c9f533216773db22c70c748be3ec8c0.jpg?v=1775134958",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bronze",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Hotel Lobby",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66717"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10215-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10215-jpg",
+ "title": "SP10215 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10214.jpg?v=1733872374",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10215-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5074-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5074-jpg",
+ "title": "Acute - Ivory | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5074.jpg?v=1762283467",
+ "tags": [
+ "100% Vinyl",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Lattice",
+ "Light Gray",
+ "Paper",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5074-jpg"
+ },
+ {
+ "sku": "tahlia-lavender-stucco-texture-wallpaper-cca-83024",
+ "handle": "tahlia-lavender-stucco-texture-wallpaper-cca-83024",
+ "title": "Tahlia Lavender Stucco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4e3ce37c2b844b4c512c3e5484082ca9.jpg?v=1572309966",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Butterfly",
+ "Children",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Lavender",
+ "Multi",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahlia-lavender-stucco-texture-wallpaper-cca-83024"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66520",
+ "handle": "cody-couture-wallpaper-xb2-66520",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/09d191f461efbe176c834e0e87dc23e7.jpg?v=1775128845",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66520"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48132",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48132",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48132-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728193",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Deep Blue",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Non-woven",
+ "Olive Green",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48132"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2758",
+ "handle": "faux-leaf-squares-fls-2758",
+ "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-2758-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712024",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2758"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_tgm-5983-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_tgm-5983-jpg",
+ "title": "Tangram - Ocean | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tgm-5983.jpg?v=1762311221",
+ "tags": [
+ "31% Polyester",
+ "69% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Geometric",
+ "Ocean",
+ "Tangram",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_tgm-5983-jpg"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72407",
+ "handle": "rivo-dulce-durable-vinyl-dur-72407",
+ "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-72407-sample-clean.jpg?v=1774485411",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Sage",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72407"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52582",
+ "handle": "le-madison-durable-walls-xwk-52582",
+ "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-52582-sample-clean.jpg?v=1774481424",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52582"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5100-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5100-jpg",
+ "title": "Grain - Mocha | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5100.jpg?v=1762295521",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "Grain",
+ "Mocha",
+ "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-5100-jpg"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52328",
+ "handle": "marketfield-faux-durable-walls-xwh-52328",
+ "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-valerian.jpg?v=1777480473",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Dark Blue",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Solid",
+ "textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52328"
+ },
+ {
+ "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": "ncw4352-03",
+ "handle": "ncw4352-03",
+ "title": "Les Indiennes Bonnelles Aqua - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264312371.jpg?v=1775520523",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Leaf",
+ "Light Blue",
+ "NCW4352-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4352-03"
+ },
+ {
+ "sku": "ncw4356-02",
+ "handle": "ncw4356-02",
+ "title": "Les Indiennes Fortoiseau Ivory/Silver - 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_4497265098803.jpg?v=1775520649",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Class A Fire Rated",
+ "Commercial",
+ "Fauna",
+ "Gray",
+ "NCW4356-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4356-02"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53419",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53419",
+ "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-tidal.jpg?v=1777480843",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53419"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3370_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3370_8-jpg",
+ "title": "Lyra - Ecru | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3370_8.jpg?v=1762299616",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Light Brown",
+ "Lyra",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3370_8-jpg"
+ },
+ {
+ "sku": "programa-piento-durable-vinyl-dur-72425",
+ "handle": "programa-piento-durable-vinyl-dur-72425",
+ "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-72425-sample-clean.jpg?v=1774485496",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Programa Piento Durable Vinyl",
+ "Sophisticated",
+ "Stone",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/programa-piento-durable-vinyl-dur-72425"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9493",
+ "handle": "chinese-fret-walls-cfw-9493",
+ "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-9493-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708079",
+ "tags": [
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9493"
+ },
+ {
+ "sku": "zoe-quartz-coco-texture-wallpaper-cca-83286",
+ "handle": "zoe-quartz-coco-texture-wallpaper-cca-83286",
+ "title": "Zoe Quartz Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/69c2dee5b3ad8849deaef84609f2cd93_6a50d6f6-f871-4a14-a576-76e256bd8c11.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Light Green",
+ "Light Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-quartz-coco-texture-wallpaper-cca-83286"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10254-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10254-jpg",
+ "title": "SM10254 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10253.jpg?v=1733872455",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10254-jpg"
+ },
+ {
+ "sku": "monterey-coast-durable-walls-xwp-52645",
+ "handle": "monterey-coast-durable-walls-xwp-52645",
+ "title": "Monterey Coast Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52645-sample-monterey-coast-durable-hollywood-wallcoverings.jpg?v=1775726352",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Non-woven",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/monterey-coast-durable-walls-xwp-52645"
+ },
+ {
+ "sku": "lilli-lavender-happy-dots-wallpaper-cca-82993",
+ "handle": "lilli-lavender-happy-dots-wallpaper-cca-82993",
+ "title": "Lilli Lavender Happy Dots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e1c4dbdc3bc135e1b5d5290fde139878.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Lavender",
+ "Mint",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Polka Dot",
+ "Polka Dots",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lilli-lavender-happy-dots-wallpaper-cca-82993"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48207",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48207",
+ "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-48207-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729950",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Estimated Type: Non-woven",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Navy Blue",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Steel",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48207"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_jai9-5371-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_jai9-5371-jpg",
+ "title": "Jaipur - Charcoal | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/jai9-5371.jpg?v=1762298074",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dark Gray",
+ "Gray",
+ "Jaipur",
+ "Non-woven",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_jai9-5371-jpg"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52352",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52352",
+ "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-string.jpg?v=1777480513",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Beige",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "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-52352"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2890",
+ "handle": "peter-s-plastered-walls-ppw-2890",
+ "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-2890-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729114",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coffee",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Industrial Elegance",
+ "Ochre",
+ "Sepia",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2890"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44040",
+ "handle": "carved-squares-wallcovering-xcs-44040",
+ "title": "Carved Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xcs-44040-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707200",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pale Gray",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44040"
+ },
+ {
+ "sku": "dwss-72636",
+ "handle": "dwss-72636",
+ "title": "Einar pink Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/702-04_image1_1c97adf1-7e0a-494a-8fa7-ab40ae32a526.jpg?v=1646104908",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Einar",
+ "Einar pink Sample",
+ "Geometric",
+ "Lattice",
+ "P702-04",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72636"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2527",
+ "handle": "faux-leaf-squares-fls-2527",
+ "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-2527-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711945",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "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-2527"
+ },
+ {
+ "sku": "st-dennis-durable-vinyl-dur-72278",
+ "handle": "st-dennis-durable-vinyl-dur-72278",
+ "title": "St Dennis Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72278-sample-clean.jpg?v=1774484996",
+ "tags": [
+ "Abstract",
+ "Almond",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-dennis-durable-vinyl-dur-72278"
+ },
+ {
+ "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": "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": "ncw4307-03",
+ "handle": "ncw4307-03",
+ "title": "Les Rêves Domiers Aqua/Ivory - 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_4497262968883.jpg?v=1775520400",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "contemporary",
+ "geometric",
+ "Light Blue",
+ "NCW4307-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "smooth",
+ "stripe",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4307-03"
+ },
+ {
+ "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-80211-ncw4186-designer-wallcoverings-los-angeles",
+ "handle": "eur-80211-ncw4186-designer-wallcoverings-los-angeles",
+ "title": "Khitan 08 - 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_7513500024883.jpg?v=1775522777",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "CATHAY",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Khitan",
+ "Living Room",
+ "Luxe",
+ "NCW4186",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Paper",
+ "Regencycore",
+ "Scroll",
+ "Sophisticated",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80211-ncw4186-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "tahlia-green-stucco-texture-wallpaper-cca-83027",
+ "handle": "tahlia-green-stucco-texture-wallpaper-cca-83027",
+ "title": "Tahlia Green Stucco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f68e153a99e7a0159ef887786d496e12.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahlia-green-stucco-texture-wallpaper-cca-83027"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10225-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10225-jpg",
+ "title": "SP10225 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10223.jpg?v=1733872357",
+ "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_sp10225-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5083-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5083-jpg",
+ "title": "Ashlar - Blockade | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5083.jpg?v=1762287053",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Blockade",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "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_ash-5083-jpg"
+ },
+ {
+ "sku": "dwkk-130027",
+ "handle": "dwkk-130027",
+ "title": "Kravet Design - Beige Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4013_86_1e712722-15d2-440b-9f64-84411f60fa51.jpg?v=1753321469",
+ "tags": [
+ "36In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Basketweave",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "China",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Elements Ii Naturals",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Living Room",
+ "Organic",
+ "Paper - 100%",
+ "Pattern",
+ "Rustic",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "W4013-86",
+ "W4013.86.0",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-130027"
+ },
+ {
+ "sku": "eur-80338-ncw4307-designer-wallcoverings-los-angeles",
+ "handle": "eur-80338-ncw4307-designer-wallcoverings-los-angeles",
+ "title": "Dormiers Stripe 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_7513504710707.jpg?v=1775523472",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dormiers Stripe",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "LES REVES",
+ "Light Blue",
+ "Minimalist",
+ "NCW4307",
+ "NCW4307-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Scandinavian",
+ "Seafoam Green",
+ "Serene",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80338-ncw4307-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52454",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52454",
+ "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-52454-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730795",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52454"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp9506-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp9506-jpg",
+ "title": "SP9506 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9505.jpg?v=1733872418",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "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_sp9506-jpg"
+ },
+ {
+ "sku": "eur-80418-ncw4396-designer-wallcoverings-los-angeles",
+ "handle": "eur-80418-ncw4396-designer-wallcoverings-los-angeles",
+ "title": "Brideshead Scroll Damask 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507332147.jpg?v=1775523962",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Beige",
+ "Brideshead Scroll Damask",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Ivory",
+ "Living Room",
+ "NCW4396",
+ "NCW4396-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Beige",
+ "Paper",
+ "Regencycore",
+ "Scroll",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80418-ncw4396-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "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": "wolfgordonwallcovering_dwwg_dug-5472-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5472-jpg",
+ "title": "Douglas - Laurel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5472.jpg?v=1762292930",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Douglas",
+ "Gray",
+ "Laurel",
+ "Light Gray",
+ "Paper",
+ "RAMPART®",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5472-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": "frederick-blue-quatrefoil-medallion-wallpaper-cca-82947",
+ "handle": "frederick-blue-quatrefoil-medallion-wallpaper-cca-82947",
+ "title": "Frederick Blue Quatrefoil Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c24c7b4e9ff01582752254c13e6cb7cf.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Ogee",
+ "Paper",
+ "Prepasted",
+ "Quatrefoil",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frederick-blue-quatrefoil-medallion-wallpaper-cca-82947"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5516-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5516-jpg",
+ "title": "Resham - Earthy Green | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5516.jpg?v=1762304353",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Earthy Green",
+ "Grasscloth",
+ "Green",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5516-jpg"
+ },
+ {
+ "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": "orford-type-ii-vinyl-wallcovering-xmz-48125",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48125",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48125-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728050",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48125"
+ },
+ {
+ "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": "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": "pleated-perfect-paradise-ppp-2635",
+ "handle": "pleated-perfect-paradise-ppp-2635",
+ "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-2635-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729205",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2635"
+ },
+ {
+ "sku": "eur-80185-ncw4182-designer-wallcoverings-los-angeles",
+ "handle": "eur-80185-ncw4182-designer-wallcoverings-los-angeles",
+ "title": "Penglai 03 - Pale Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498812467.jpg?v=1775522630",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "bird",
+ "Birds",
+ "Botanical",
+ "Brown",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Cornflower Blue",
+ "Cottagecore",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Blue",
+ "Mustard Yellow",
+ "NCW4182",
+ "NCW4182/03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Pale Sky Blue",
+ "Paper",
+ "Penglai",
+ "Red",
+ "Sage Green",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80185-ncw4182-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47116",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47116",
+ "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-47116-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700102",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47116"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5045-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5045-jpg",
+ "title": "Sparta - Eurotas River | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5045.jpg?v=1762308949",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Eurotas River",
+ "Gray",
+ "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-5045-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2523",
+ "handle": "faux-leaf-squares-fls-2523",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2523-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711931",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Light Brown",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2523"
+ },
+ {
+ "sku": "robertocavalliwallpaper_dwrc18006-jpg",
+ "handle": "robertocavalliwallpaper_dwrc18006-jpg",
+ "title": "Roberto Cavalli Wallcovering",
+ "vendor": "Roberto Cavalli Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/RobertoCavalliWallpaper_dwrc18006.jpg?v=1587153844",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "European",
+ "Gray",
+ "Imported",
+ "Italian",
+ "Leopard",
+ "Maximalist",
+ "Paper",
+ "Pattern",
+ "Roberto Cavalli Wallcovering",
+ "Tropical",
+ "Volume 7",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/robertocavalliwallpaper_dwrc18006-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9814-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9814-jpg",
+ "title": "ST9814 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9813.jpg?v=1733872215",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Paper",
+ "Periwinkle",
+ "Solid",
+ "ST9814",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9814-jpg"
+ },
+ {
+ "sku": "palazzo-lane-wood-metal-chevron-hlw-73144",
+ "handle": "palazzo-lane-wood-metal-chevron-hlw-73144",
+ "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73144-sample-clean.jpg?v=1774483714",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux Wood",
+ "Gray",
+ "Green",
+ "Grey",
+ "Herringbone",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Mustard Yellow",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Palazzo Lane",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73144"
+ },
+ {
+ "sku": "captiva-aqua-floral-toss-wallpaper-cca-83043",
+ "handle": "captiva-aqua-floral-toss-wallpaper-cca-83043",
+ "title": "Captiva Aqua Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/dd5a13e38f10a5abd5e0e23cf1d6fad0.jpg?v=1572309966",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Botanical",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-aqua-floral-toss-wallpaper-cca-83043"
+ },
+ {
+ "sku": "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": "dwkk-140165",
+ "handle": "dwkk-140165",
+ "title": "Kamara Wp - Sky Blue By Lee Jofa | Blithfield | Ikat/Southwest/Kilims Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3532_15_9d945987-b81e-469e-9ab8-5245d6649b97.jpg?v=1753291824",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blithfield",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Ikat",
+ "Ikat/Southwest/Kilims",
+ "Kamara Wp",
+ "Lee Jofa",
+ "Luxury",
+ "Paper",
+ "Pattern",
+ "Pbfc-3532.15.0",
+ "Print",
+ "Sky Blue",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140165"
+ },
+ {
+ "sku": "ncw4391-01",
+ "handle": "ncw4391-01",
+ "title": "Ashdown Cloisters Ochre/Tobacco - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265492019.jpg?v=1775520710",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gold",
+ "NCW4391-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4391-01"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66510",
+ "handle": "cody-couture-wallpaper-xb2-66510",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0a084c0a80cb5b90926ab63934ef0e00.jpg?v=1775128066",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Coral",
+ "Dining Room",
+ "Fabric",
+ "Geometric",
+ "Gold",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Pink",
+ "Red-Orange",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66510"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10427m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10427m-jpg",
+ "title": "ST10427M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10426m.jpg?v=1733872136",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Linen",
+ "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_st10427m-jpg"
+ },
+ {
+ "sku": "vandal-by-innovations-usa-dwc-vandal-5",
+ "handle": "vandal-by-innovations-usa-dwc-vandal-5",
+ "title": "Vandal | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Vandal-5.jpg?v=1736199023",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Blue",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Geometric",
+ "Gray",
+ "Innovations USA",
+ "Light Gray",
+ "Maximalist",
+ "Orange",
+ "Paper",
+ "Vandal",
+ "Vandal-5",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vandal-by-innovations-usa-dwc-vandal-5"
+ },
+ {
+ "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": "glen-ridge-embossed-vertical-durable-walls-xwl-53528",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53528",
+ "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-taupe_9d3f7da4-f516-470c-8820-15482d6b7bd5.jpg?v=1777481465",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53528"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2752",
+ "handle": "faux-leaf-squares-fls-2752",
+ "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-2752-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775712005",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2752"
+ },
+ {
+ "sku": "faux-glass-bead-wallpaper-109-jade-green-fgb-109",
+ "handle": "faux-glass-bead-wallpaper-109-jade-green-fgb-109",
+ "title": "Faux Glass Bead Wallpaper - 109 Jade Green",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fgb-109-sample-faux-glass-bead-wallpaper.jpg?v=1775711841",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bling",
+ "Commercial",
+ "Commercially Rated Cleanable",
+ "Contemporary",
+ "Fabric",
+ "Faux Finish",
+ "Glass Bead",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Jade Green",
+ "Light Blue",
+ "Minimalist",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 82.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-glass-bead-wallpaper-109-jade-green-fgb-109"
+ },
+ {
+ "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": "delilah-champagne-tulip-damask-wallpaper-cca-83242",
+ "handle": "delilah-champagne-tulip-damask-wallpaper-cca-83242",
+ "title": "Delilah Champagne Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4b804fe18507aae7dad1fad1e16778f3.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Glitter",
+ "Gray",
+ "LA Walls",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-champagne-tulip-damask-wallpaper-cca-83242"
+ },
+ {
+ "sku": "jada-white-girly-floral-scroll-wallpaper-wallpaper-cca-82818",
+ "handle": "jada-white-girly-floral-scroll-wallpaper-wallpaper-cca-82818",
+ "title": "Jada White Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0c43d29a94f42b1967e0e3472d55539e.jpg?v=1572309955",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gray",
+ "LA Walls",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Unpasted",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jada-white-girly-floral-scroll-wallpaper-wallpaper-cca-82818"
+ },
+ {
+ "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": "mason-beige-stripe-texture-wallpaper-cca-82919",
+ "handle": "mason-beige-stripe-texture-wallpaper-cca-82919",
+ "title": "Mason Beige Stripe Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/924618b95e705180e3cdaf18a1e7530d.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Brown",
+ "Masculine",
+ "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/mason-beige-stripe-texture-wallpaper-cca-82919"
+ },
+ {
+ "sku": "contempo-diamond-vinyl-dwx-58015",
+ "handle": "contempo-diamond-vinyl-dwx-58015",
+ "title": "Contempo Diamond Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58015-sample-contempo-diamond-vinyl-hollywood-wallcoverings.jpg?v=1775709045",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Diamond",
+ "Geometric",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Modern",
+ "Neutral",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/contempo-diamond-vinyl-dwx-58015"
+ },
+ {
+ "sku": "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": "wolfgordonwallcovering_dwwg_em10262b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10262b-jpg",
+ "title": "EM10262B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9734r.jpg?v=1733873328",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM10262B",
+ "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_em10262b-jpg"
+ },
+ {
+ "sku": "eur-80333-ncw4306-designer-wallcoverings-los-angeles",
+ "handle": "eur-80333-ncw4306-designer-wallcoverings-los-angeles",
+ "title": "Belle Ile Stripe 03 - Celadon Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504514099.jpg?v=1775523439",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Belle Ile Stripe",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Green",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "NCW4306",
+ "NCW4306-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Sage Green",
+ "Scandinavian",
+ "Stripe",
+ "Takumi",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80333-ncw4306-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "lilli-ocean-happy-dots-wallpaper-cca-82994",
+ "handle": "lilli-ocean-happy-dots-wallpaper-cca-82994",
+ "title": "Lilli Ocean Happy Dots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e78b9e1b509cd6954a5c02b95ed060b7.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Ocean",
+ "Paper",
+ "Polka Dots",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lilli-ocean-happy-dots-wallpaper-cca-82994"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5033-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5033-jpg",
+ "title": "Sparta - Antique White | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5033.jpg?v=1762308511",
+ "tags": [
+ "100% Vinyl",
+ "Antique White",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "RAMPART®",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5033-jpg"
+ },
+ {
+ "sku": "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": "sunset-stone-vinyl-dwx-58046",
+ "handle": "sunset-stone-vinyl-dwx-58046",
+ "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-58046-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735124",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Stone",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Natural Look",
+ "Off-white",
+ "Pale Grey",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Stone",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58046"
+ },
+ {
+ "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": "dwqw-56964-handle",
+ "handle": "dwqw-56964-handle",
+ "title": "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl - Apricot | Architectural Wallcoverings",
+ "vendor": "Malibu Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/RY31721.jpg?v=1748380580",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Background Color apricot",
+ "Background Color Rosy Brown",
+ "Bohemian",
+ "Boho Rhapsody",
+ "Class \"A\" Fire Rated",
+ "Commercial",
+ "Embossed Vinyl",
+ "Fabric",
+ "Indie Linen Embossed Vinyl",
+ "Indie Linen Embossed Vinyl Bohemian Embossed Vinyl",
+ "Light Beige",
+ "Light Duty",
+ "Low Traffic",
+ "Residential",
+ "Residential Use",
+ "Rosy Brown",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwqw-56964-handle"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2524",
+ "handle": "faux-leaf-squares-fls-2524",
+ "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-2524-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711934",
+ "tags": [
+ "Abstract",
+ "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-2524"
+ },
+ {
+ "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": "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": "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": "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": "el-escaya-durable-vinyl-dur-72289",
+ "handle": "el-escaya-durable-vinyl-dur-72289",
+ "title": "El Escaya Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72289-sample-clean.jpg?v=1774485051",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Whisper White",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/el-escaya-durable-vinyl-dur-72289"
+ },
+ {
+ "sku": "dwc-1001591",
+ "handle": "dwc-1001591",
+ "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_4693306933299.jpg?v=1775520975",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Geometric",
+ "Light Blue",
+ "NCW4301-06",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001591"
+ },
+ {
+ "sku": "tahiti-scenic-wallpaper-trf-56817",
+ "handle": "tahiti-scenic-wallpaper-trf-56817",
+ "title": "Tahiti Scenic | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/80de243ef59c4272b57f094cc9ca4379.jpg?v=1750789766",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "Beige",
+ "Botanical",
+ "Bridge",
+ "bright",
+ "Brown",
+ "cabana",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Gray",
+ "dark grey",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Jeffrey Stevens",
+ "Khaki",
+ "medium scale",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "novelty",
+ "off white",
+ "overall",
+ "pagoda",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "scenic",
+ "Series: York",
+ "Taupe",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahiti-scenic-wallpaper-trf-56817"
+ },
+ {
+ "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": "dwkk-129164",
+ "handle": "dwkk-129164",
+ "title": "W3759-3 Green | Kravet Design |Geometric Small Scale Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3759_3_9961d455-5347-4ded-81ad-b603784a6aa5.jpg?v=1753291977",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Commercial",
+ "display_variant",
+ "Geometric",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Quatrefoil",
+ "Small Scale",
+ "United States",
+ "W3759-3",
+ "W3759.3.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129164"
+ },
+ {
+ "sku": "croydon-type-ii-vinyl-wallcovering-xkm-47475",
+ "handle": "croydon-type-ii-vinyl-wallcovering-xkm-47475",
+ "title": "Croydon Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkm-47475-sample-croydon-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775709430",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Concrete",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Pale Beige",
+ "Rustic",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/croydon-type-ii-vinyl-wallcovering-xkm-47475"
+ },
+ {
+ "sku": "whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898",
+ "handle": "whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898",
+ "title": "Whisper Lilac Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5add5db6c445cba55b3642419331eefd.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Light Gray",
+ "Lilac",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898"
+ },
+ {
+ "sku": "eur-80316-ncw4303-designer-wallcoverings-los-angeles",
+ "handle": "eur-80316-ncw4303-designer-wallcoverings-los-angeles",
+ "title": "Camille 02 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513503825971.jpg?v=1775523333",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Camille",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "English Country",
+ "Grandmillennial",
+ "Green",
+ "Hallway",
+ "Lattice",
+ "Leaf",
+ "LES REVES",
+ "Light Gray",
+ "Light Green",
+ "Living Room",
+ "NCW4303",
+ "NCW4303-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Olive Green",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Trellis",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80316-ncw4303-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "presque-isle-sage-regal-stripe-wallpaper-cca-83119",
+ "handle": "presque-isle-sage-regal-stripe-wallpaper-cca-83119",
+ "title": "Presque Isle Sage Regal Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/79735e744099e3307a37866881ddc8c7.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Prepasted",
+ "Sage",
+ "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/presque-isle-sage-regal-stripe-wallpaper-cca-83119"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dtup-482-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dtup-482-jpg",
+ "title": "Tupelo - Frost | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DTUP-482.jpg?v=1762292649",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Frost",
+ "Light Brown",
+ "Paper",
+ "Stripe",
+ "Traditional",
+ "Tupelo",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dtup-482-jpg"
+ },
+ {
+ "sku": "dwkk-139760",
+ "handle": "dwkk-139760",
+ "title": "Fiorentina - Silver/Ivory Silver By Lee Jofa | | Diamond Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2009006_111_0e8257cc-5673-4a40-9b6f-bf4e8b3edf4a.jpg?v=1753291364",
+ "tags": [
+ "30In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "China",
+ "Commercial",
+ "Contemporary",
+ "Diamond",
+ "display_variant",
+ "Fabric",
+ "Fiorentina",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Ivory",
+ "Lee Jofa",
+ "Luxury",
+ "Metallic",
+ "Non-Wallcovering",
+ "P2009006.111.0",
+ "Print",
+ "Silver",
+ "Silver/Ivory",
+ "Sisal - 85%;Cotton - 15%",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139760"
+ },
+ {
+ "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": "flight-of-the-elephants-large-mural-by-retro-walls-rtr-37226",
+ "handle": "flight-of-the-elephants-large-mural-by-retro-walls-rtr-37226",
+ "title": "Flight Of The Elephants Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/898d04233881e4457c582efefb4edecf.jpg?v=1572309702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Elephant",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/flight-of-the-elephants-large-mural-by-retro-walls-rtr-37226"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52583",
+ "handle": "le-madison-durable-walls-xwk-52583",
+ "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-52583-sample-le-madison-durable-hollywood-wallcoverings.jpg?v=1775721749",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52583"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10211-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10211-jpg",
+ "title": "SP10211 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10210.jpg?v=1733872380",
+ "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_sp10211-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dug-5467-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5467-jpg",
+ "title": "Douglas - Pine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5467.jpg?v=1762292753",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Douglas",
+ "Paper",
+ "Pine",
+ "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-5467-jpg"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53608",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53608",
+ "title": "Lovela Faux Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-ocean_mist_c5c74eb9-3b3f-44b9-bad3-d761bbc0059c.jpg?v=1777481533",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53608"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5077-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5077-jpg",
+ "title": "Acute - Turquoise | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5077.jpg?v=1762283557",
+ "tags": [
+ "100% Vinyl",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dark Teal",
+ "Geometric",
+ "Paper",
+ "Teal",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5077-jpg"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010376",
+ "handle": "hollywood-contemporary-coast-xhw-2010376",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-mai_tai_47d19081-59aa-4041-9170-004c4b3ae41b.jpg?v=1777481080",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Grain",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010376"
+ },
+ {
+ "sku": "aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244",
+ "handle": "aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244",
+ "title": "Aubrey Celery Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d5dca5883a73a0ac7f6c85ac177dca2c.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Medallion",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-celery-crystal-medallion-texture-wallpaper-cca-83244"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47620",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47620",
+ "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-47620-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710556",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Earby Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sand",
+ "Serene",
+ "Solid",
+ "Suede",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47620"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_lyr-3368_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3368_8-jpg",
+ "title": "Lyra - Smoke | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3368_8.jpg?v=1762299544",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Lyra",
+ "Smoke",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3368_8-jpg"
+ },
+ {
+ "sku": "la-logia-durable-vinyl-dur-72366",
+ "handle": "la-logia-durable-vinyl-dur-72366",
+ "title": "La Logia Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72366-sample-clean.jpg?v=1774485238",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brick",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Durable Type 2 Vinyl",
+ "Farmhouse",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Medium Grey",
+ "Rustic",
+ "Stone",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-logia-durable-vinyl-dur-72366"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47132",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47132",
+ "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-47132-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700547",
+ "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",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Sand",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47132"
+ },
+ {
+ "sku": "eur-80375-ncw4354-designer-wallcoverings-los-angeles",
+ "handle": "eur-80375-ncw4354-designer-wallcoverings-los-angeles",
+ "title": "Garance 05 - Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505857587.jpg?v=1775523691",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Eclectic",
+ "Floral",
+ "Garance",
+ "LES INDIENNES",
+ "Living Room",
+ "Medallion",
+ "NCW4354",
+ "NCW4354-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Sophisticated",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80375-ncw4354-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "aubrey-celery-crystal-texture-wallpaper-cca-83279",
+ "handle": "aubrey-celery-crystal-texture-wallpaper-cca-83279",
+ "title": "Aubrey Celery Crystal Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/14e3c4a4eab87746e3c1429de0b5db3d.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Gray",
+ "Industrial",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-celery-crystal-texture-wallpaper-cca-83279"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10288r-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10288r-jpg",
+ "title": "EM10288R | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10287r.jpg?v=1733873274",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM10288R",
+ "Gray",
+ "Paper",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10288r-jpg"
+ },
+ {
+ "sku": "harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153",
+ "handle": "harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153",
+ "title": "Harpswell Butter Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6927d546780cfe7430b01865e2759859_4578bc0a-8baa-456d-be09-4967045dff0b.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Herringbone",
+ "LA Walls",
+ "Light Yellow",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Takumi",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_st10401-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10401-jpg",
+ "title": "ST10401 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10400.jpg?v=1733872198",
+ "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_st10401-jpg"
+ },
+ {
+ "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": "zebilini-wallpaper-xd6-66709",
+ "handle": "zebilini-wallpaper-xd6-66709",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4f908a58dfcd7cccb552ff723e60704d.jpg?v=1775134052",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Geometric",
+ "Green",
+ "Light Green",
+ "Living Room",
+ "Minimalist",
+ "Nursery",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66709"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blr-5021m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blr-5021m-jpg",
+ "title": "Ballari Mylar - Copper | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5021M.jpg?v=1762288193",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Ballari Mylar",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Copper",
+ "Gray",
+ "Industrial",
+ "Metallic",
+ "Mylar",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5021m-jpg"
+ },
+ {
+ "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": "seine-marne-durable-vinyl-dur-72124",
+ "handle": "seine-marne-durable-vinyl-dur-72124",
+ "title": "Seine Marne Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72124-sample-clean.jpg?v=1774484481",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72124"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48130",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48130",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48130-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728162",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48130"
+ },
+ {
+ "sku": "dry-erase-it-lighter-beige-dry-erase-it-lighter-beige",
+ "handle": "dry-erase-it-lighter-beige-dry-erase-it-lighter-beige",
+ "title": "Dry Erase It - Lighter Beige | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dry-erase-it-lighter-beige-sample-dry-erase-it-lighter-beige-hollywood.jpg?v=1775710356",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dry Erase It",
+ "Dry Erase It - Lighter Beige Wallcovering",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Minimalist",
+ "Paper",
+ "Solid",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wood"
+ ],
+ "max_price": 305.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dry-erase-it-lighter-beige-dry-erase-it-lighter-beige"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72414",
+ "handle": "rivo-dulce-durable-vinyl-dur-72414",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72414-sample-clean.jpg?v=1774485445",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Oatmeal",
+ "Rivo Dulce Durable Vinyl",
+ "Sand",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72414"
+ },
+ {
+ "sku": "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": "hollywood-antique-damask-xhw-2010214",
+ "handle": "hollywood-antique-damask-xhw-2010214",
+ "title": "Hollywood Antique Damask | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/luca-vellum_6f8abc2b-8c18-45a7-b8c7-2839a651cb15.jpg?v=1777481546",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Antique",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Damask",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grandmillennial",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Medallion",
+ "Mfr-Image-Refreshed",
+ "Non-woven",
+ "Off-white",
+ "Pattern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-antique-damask-xhw-2010214"
+ },
+ {
+ "sku": "eur-80122-ncw4123-designer-wallcoverings-los-angeles",
+ "handle": "eur-80122-ncw4123-designer-wallcoverings-los-angeles",
+ "title": "Abbotsford 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_7513496518707.jpg?v=1775522251",
+ "tags": [
+ "Abbotsford",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Blue",
+ "Minimalist",
+ "Modern",
+ "NCW4123",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Seafoam Green",
+ "Serene",
+ "Silver Gray",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80122-ncw4123-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66840",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66840",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/002675df9658b7873206fcf96dba8f83.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Light Beige",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66840"
+ },
+ {
+ "sku": "moroccan-grey-horizontal-tight-emboss-wbs-39604",
+ "handle": "moroccan-grey-horizontal-tight-emboss-wbs-39604",
+ "title": "Moroccan Grey Horizontal Tight Emboss | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39604-sample-moroccan-grey-horizontal-tight-emboss-hollywood-wallcoverings.jpg?v=1775726619",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bricks and Stones",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Silver",
+ "Slate Grey",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-grey-horizontal-tight-emboss-wbs-39604"
+ },
+ {
+ "sku": "eur-80131-ncw4126-designer-wallcoverings-los-angeles",
+ "handle": "eur-80131-ncw4126-designer-wallcoverings-los-angeles",
+ "title": "Huntly 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_7513496813619.jpg?v=1775522303",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Huntly",
+ "Lattice",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "NCW4126",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Serene",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80131-ncw4126-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "tahiti-scenic-wallpaper-trf-56820",
+ "handle": "tahiti-scenic-wallpaper-trf-56820",
+ "title": "Tahiti Scenic | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce37f2d0e88b9c7d5b0748c883bc8c30.jpg?v=1750789762",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Asian",
+ "Beige",
+ "Birds",
+ "Blue",
+ "Bridge",
+ "bright",
+ "cabana",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Jeffrey Stevens",
+ "medium blue",
+ "medium scale",
+ "Modern",
+ "Modern Tropics",
+ "Navy Blue",
+ "Non-Woven",
+ "novelty",
+ "Olive Green",
+ "overall",
+ "pagoda",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Red",
+ "red/orange",
+ "scenic",
+ "Series: York",
+ "Tan",
+ "Toile",
+ "Tomato Red",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahiti-scenic-wallpaper-trf-56820"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58053",
+ "handle": "sunset-stone-vinyl-dwx-58053",
+ "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-58053-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735205",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Bedroom",
+ "Chartreuse",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Olive Green",
+ "Embossed Texture",
+ "Faux Stone",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Lime",
+ "Living Room",
+ "Natural Look",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Stone",
+ "Stucco",
+ "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/sunset-stone-vinyl-dwx-58053"
+ },
+ {
+ "sku": "lucy-large-crocodile-wallpaper-hollywood-wallcoverings-1",
+ "handle": "lucy-large-crocodile-wallpaper-hollywood-wallcoverings-1",
+ "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-93018-SAMPLE-clean.jpg?v=1774486112",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal Print",
+ "Animal Skin",
+ "Animal/Insects",
+ "Architectural",
+ "Brick Red",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Embossed Texture",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Luxe",
+ "Luxurious",
+ "Mahogany",
+ "Ochre",
+ "Office",
+ "Paper Backed Vinyl",
+ "Red",
+ "Reptile",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 32.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-wallpaper-hollywood-wallcoverings-1"
+ },
+ {
+ "sku": "jonesport-sand-cabin-stripe-wallpaper-cca-83182",
+ "handle": "jonesport-sand-cabin-stripe-wallpaper-cca-83182",
+ "title": "Jonesport Sand Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c20b71a3a85987b65a583cbc5648c868.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-sand-cabin-stripe-wallpaper-cca-83182"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48563",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48563",
+ "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-48563-sample-clean.jpg?v=1774480602",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Moody",
+ "Solid",
+ "Textured",
+ "Ventnor Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48563"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2934",
+ "handle": "frank-s-faux-finish-fff-2934",
+ "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-2934-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714262",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Fabric",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2934"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9510-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9510-jpg",
+ "title": "SM9510 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9509.jpg?v=1733872509",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Silver",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9510-jpg"
+ },
+ {
+ "sku": "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": "eros-erotic-chandelier-nude-wall-paper-ero-1977",
+ "handle": "eros-erotic-chandelier-nude-wall-paper-ero-1977",
+ "title": "EROS - Erotic Chandelier Nude Wallcovering",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/20319258.jpg?v=1758052023",
+ "tags": [
+ "1950's",
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Black",
+ "Brick",
+ "Commercial",
+ "Erotica Wall Coverings",
+ "Moss",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eros-erotic-chandelier-nude-wall-paper-ero-1977"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72270",
+ "handle": "essone-durable-vinyl-dur-72270",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72270-sample-clean.jpg?v=1774484956",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72270"
+ },
+ {
+ "sku": "versace-plain-metallic-pink-wallcovering-versace",
+ "handle": "versace-plain-metallic-pink-wallcovering-versace",
+ "title": "Versace Plain Metallic Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/47413ebeaa8c17791fd641dc54701b52.jpg?v=1773706481",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Light Beige",
+ "Light Pink",
+ "Living Room",
+ "Luxury",
+ "Pale Pink",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Metallic",
+ "Versace Plain Metallic Pink Wallcovering",
+ "Versace VI",
+ "Wallcovering",
+ "Walnut Brown"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-metallic-pink-wallcovering-versace"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9493-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9493-jpg",
+ "title": "Lune - Noir | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9493.jpg?v=1762299398",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Lune",
+ "Noir",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9493-jpg"
+ },
+ {
+ "sku": "stonington-bone-awning-stripe-wallpaper-cca-83151",
+ "handle": "stonington-bone-awning-stripe-wallpaper-cca-83151",
+ "title": "Stonington Bone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/184079d2195e181d934e09177053a79e.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/stonington-bone-awning-stripe-wallpaper-cca-83151"
+ },
+ {
+ "sku": "eur-80366-ncw4353-designer-wallcoverings-los-angeles",
+ "handle": "eur-80366-ncw4353-designer-wallcoverings-los-angeles",
+ "title": "Colbert 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505529907.jpg?v=1775523633",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Colbert",
+ "Commercial",
+ "Contemporary",
+ "Dusty Rose",
+ "Leaf",
+ "LES INDIENNES",
+ "Light Blue",
+ "Living Room",
+ "NCW4353",
+ "NCW4353-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off White",
+ "Organic Modern",
+ "Pale Blue",
+ "Paper",
+ "Pink",
+ "Scandinavian",
+ "Serene",
+ "Taupe",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80366-ncw4353-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "steuben-grey-turf-stripe-wallpaper-cca-83170",
+ "handle": "steuben-grey-turf-stripe-wallpaper-cca-83170",
+ "title": "Steuben Grey Turf Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c878064273aa46bd1ea303c49d8d22b5.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Grey",
+ "LA Walls",
+ "Light Gray",
+ "Off-white",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Steuben Grey Turf Stripe Wallcovering",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-grey-turf-stripe-wallpaper-cca-83170"
+ },
+ {
+ "sku": "dwss-72530",
+ "handle": "dwss-72530",
+ "title": "Kaspar grey sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/522-31_image1.jpg?v=1646104564",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Kaspar",
+ "Kaspar grey sample",
+ "Light Gray",
+ "P522-31",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Scandinavian",
+ "Scenic",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72530"
+ },
+ {
+ "sku": "gianna-blackberry-texture-wallpaper-wallpaper-cca-82879",
+ "handle": "gianna-blackberry-texture-wallpaper-wallpaper-cca-82879",
+ "title": "Gianna Blackberry Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1b4ec75e87cefefd6dcbe8fcc21040a6.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Mauve",
+ "Pink",
+ "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-blackberry-texture-wallpaper-wallpaper-cca-82879"
+ },
+ {
+ "sku": "asha-pewter-lotus-texture-wallpaper-cca-83272",
+ "handle": "asha-pewter-lotus-texture-wallpaper-cca-83272",
+ "title": "Asha Pewter Lotus Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5163605d27172d2d524a7c302d647eba.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pewter-lotus-texture-wallpaper-cca-83272"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72405",
+ "handle": "rivo-dulce-durable-vinyl-dur-72405",
+ "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-72405-sample-clean.jpg?v=1774485400",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chrome",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72405"
+ },
+ {
+ "sku": "ncw4393-06",
+ "handle": "ncw4393-06",
+ "title": "Ashdown Benmore Blush/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_4497266114611.jpg?v=1775520803",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Leaf",
+ "Multi",
+ "NCW4393-06",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Peach",
+ "Tropical",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4393-06"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53288",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53288",
+ "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-53288-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710229",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53288"
+ },
+ {
+ "sku": "origami-by-innovations-usa-dwc-origami-7",
+ "handle": "origami-by-innovations-usa-dwc-origami-7",
+ "title": "Origami | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Origami-7.jpg?v=1736198889",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Innovations USA",
+ "Origami",
+ "Origami-7",
+ "Paper",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/origami-by-innovations-usa-dwc-origami-7"
+ },
+ {
+ "sku": "leena-pink-loopy-hoops-wallpaper-cca-83013",
+ "handle": "leena-pink-loopy-hoops-wallpaper-cca-83013",
+ "title": "Leena Pink Loopy Hoops Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7b306090182738e0a9d84612c4cbf500.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Lattice",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Texture",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leena-pink-loopy-hoops-wallpaper-cca-83013"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_zig-8856-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_zig-8856-jpg",
+ "title": "Zig Zag - Denim | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/zig-8856.jpg?v=1762312845",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Denim",
+ "Geometric",
+ "Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Zig Zag"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_zig-8856-jpg"
+ },
+ {
+ "sku": "love-large-mural-by-retro-walls-rtr-37224",
+ "handle": "love-large-mural-by-retro-walls-rtr-37224",
+ "title": "LOVE Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/eebd5205ac5f5de90a1ece71a1491ef0.jpg?v=1572309702",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "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",
+ "Pink",
+ "Text",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/love-large-mural-by-retro-walls-rtr-37224"
+ },
+ {
+ "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": "ncw4350-03",
+ "handle": "ncw4350-03",
+ "title": "Les Indiennes Les Indiennes Taupe/Aqua - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263525939.jpg?v=1775520451",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "NCW4350-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4350-03"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47104",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47104",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47104-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699774",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Russet",
+ "Rustic",
+ "Solid",
+ "Suede",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47104"
+ },
+ {
+ "sku": "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": "wilton-paintable-anaglytpa-original-wallpaper-gga-82665",
+ "handle": "wilton-paintable-anaglytpa-original-wallpaper-gga-82665",
+ "title": "Wilton Paintable Anaglytpa Original | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/066a3df3235d45f7468d29ec8c6575fc.jpg?v=1750790439",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Avocado",
+ "Basil",
+ "Botanical",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Fern",
+ "Floral",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Moss",
+ "Off-White",
+ "Paintable",
+ "Paper",
+ "Phasing-2026-04",
+ "Scrolls",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Unpasted",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "Wilton Paintable Anaglytpa Original"
+ ],
+ "max_price": 39.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wilton-paintable-anaglytpa-original-wallpaper-gga-82665"
+ },
+ {
+ "sku": "dwkk-127832",
+ "handle": "dwkk-127832",
+ "title": "Wonderlust Wp - Teal Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0136_03_CAC_cb823810-8af9-4186-92bb-17addff25b8a.jpg?v=1753321565",
+ "tags": [
+ "20.5In",
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Biophilic",
+ "Bird",
+ "Botanical",
+ "Branches",
+ "Champagne",
+ "Charcoal",
+ "Chartreuse",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Dramatic",
+ "Eclectic",
+ "Emerald Green",
+ "Fauna",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "Green",
+ "Ivory",
+ "Leaves",
+ "Leopard",
+ "Living Room",
+ "Maximalist",
+ "Moss",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Novelty",
+ "Paper",
+ "Pink",
+ "Print",
+ "Rose Quartz",
+ "Teal",
+ "Tropical",
+ "United Kingdom",
+ "W0136/03.Cac.0",
+ "Wallcovering",
+ "White",
+ "Wonderlust Wp",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127832"
+ },
+ {
+ "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": "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": "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": "zebra-drive-metal-and-wood-hlw-73088",
+ "handle": "zebra-drive-metal-and-wood-hlw-73088",
+ "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-73088-sample-clean.jpg?v=1774483433",
+ "tags": [
+ "Abstract",
+ "Animal Print",
+ "Aqua",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Wood",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Non-Woven",
+ "Office",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebra-drive-metal-and-wood-hlw-73088"
+ },
+ {
+ "sku": "eur-80165-ncw4155-designer-wallcoverings-los-angeles",
+ "handle": "eur-80165-ncw4155-designer-wallcoverings-los-angeles",
+ "title": "Kelburn 03 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498058803.jpg?v=1775522515",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Kelburn",
+ "Lattice",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "NCW4155",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "ROSSLYN",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80165-ncw4155-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72298",
+ "handle": "la-voltere-durable-vinyl-dur-72298",
+ "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-72298-sample-clean.jpg?v=1774485091",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "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/la-voltere-durable-vinyl-dur-72298"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44286",
+ "handle": "seeing-circles-wallcovering-xsc-44286",
+ "title": "Seeing Circles | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XSC-44286-sample-clean.jpg?v=1774479095",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mid-century",
+ "Mid-century Modern",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Terra Cotta",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44286"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blr-5020m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blr-5020m-jpg",
+ "title": "Ballari Mylar - Bronze | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5020M.jpg?v=1762288157",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Ballari Mylar",
+ "Black",
+ "Bronze",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Industrial",
+ "Metallic",
+ "Mylar",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5020m-jpg"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49317",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49317",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-coconut_tree_6fd77a8b-9d78-41d6-b89e-be4d8900ed7e.jpg?v=1777481139",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49317"
+ },
+ {
+ "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"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47949",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47949",
+ "title": "Maidstone - Mocha 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-47949-maidstone-mocha-type-ii-vinyl-hollywood.jpg?v=1775723443",
+ "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",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Stone Look",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47949"
+ },
+ {
+ "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": "castine-aqua-tuscan-stripe-wallpaper-cca-83208",
+ "handle": "castine-aqua-tuscan-stripe-wallpaper-cca-83208",
+ "title": "Castine Aqua Tuscan Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4c31a9b4223b98f277e793f409ab5111.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Marble",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/castine-aqua-tuscan-stripe-wallpaper-cca-83208"
+ },
+ {
+ "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": "versace-plain-glitter-white-cream-wallcovering-versace",
+ "handle": "versace-plain-glitter-white-cream-wallcovering-versace",
+ "title": "Versace Plain Glitter White, Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/f9027002e0b50bc987e02ec3dbe8beed.jpg?v=1773706477",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Cream Wallcovering",
+ "display_variant",
+ "Italian",
+ "Light Beige",
+ "Light Brown",
+ "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 Glitter",
+ "Versace Plain Glitter White",
+ "Versace VI",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-glitter-white-cream-wallcovering-versace"
+ },
+ {
+ "sku": "narcisse-noir-wallpaper-xa7-66455",
+ "handle": "narcisse-noir-wallpaper-xa7-66455",
+ "title": "Narcisse Noir Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/50339da2b9117c69f9f9a5c29fcb9165.jpg?v=1775123183",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "calcium carbonate/pulp",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fabric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Narcisse Noir Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 49.3,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/narcisse-noir-wallpaper-xa7-66455"
+ },
+ {
+ "sku": "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": "the-wheels-on-the-bus-large-mural-by-retro-walls-rtr-37256",
+ "handle": "the-wheels-on-the-bus-large-mural-by-retro-walls-rtr-37256",
+ "title": "The Wheels On The Bus Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2625dd4e20cfe150e796590c3b4aaec2.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Bus",
+ "Cat",
+ "Chicken",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dog",
+ "Elephant",
+ "Frog",
+ "Giraffe",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Light Blue",
+ "Monkey",
+ "Moose",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pig",
+ "Pink",
+ "Rabbit",
+ "Scenic",
+ "Sheep",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-wheels-on-the-bus-large-mural-by-retro-walls-rtr-37256"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48584",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48584",
+ "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-48584-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735812",
+ "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",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cork",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "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-48584"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825",
+ "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-faded_fresco.jpg?v=1777480693",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52825"
+ },
+ {
+ "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": "wiscasset-cream-farmhouse-stripe-wallpaper-cca-83200",
+ "handle": "wiscasset-cream-farmhouse-stripe-wallpaper-cca-83200",
+ "title": "Wiscasset Cream Farmhouse Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/676bbda185aff8d8334ca60778f6ad73.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Country",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Farmhouse",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wiscasset-cream-farmhouse-stripe-wallpaper-cca-83200"
+ },
+ {
+ "sku": "under-water-waves-xuw-44159",
+ "handle": "under-water-waves-xuw-44159",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44159-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735606",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Lightblue",
+ "Minimalist",
+ "Pale Blue",
+ "Sage Green",
+ "Scandinavian",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44159"
+ },
+ {
+ "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": "gibby-grey-leafy-scroll-wallpaper-wallpaper-cca-82850",
+ "handle": "gibby-grey-leafy-scroll-wallpaper-wallpaper-cca-82850",
+ "title": "Gibby Grey Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b5ae02c2fd1ec434999479c03ca0ce3c.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leaf",
+ "Off-White",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gibby-grey-leafy-scroll-wallpaper-wallpaper-cca-82850"
+ },
+ {
+ "sku": "leena-green-loopy-hoops-wallpaper-cca-83015",
+ "handle": "leena-green-loopy-hoops-wallpaper-cca-83015",
+ "title": "Leena Green Loopy Hoops Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/69a9095f1701028f34043dab7c490ada.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Lattice",
+ "Modern",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leena-green-loopy-hoops-wallpaper-cca-83015"
+ },
+ {
+ "sku": "splice-by-innovations-usa-dwc-splice-1",
+ "handle": "splice-by-innovations-usa-dwc-splice-1",
+ "title": "Splice | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Splice-1.jpg?v=1736199078",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Innovations USA",
+ "Purple",
+ "Splice-1",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/splice-by-innovations-usa-dwc-splice-1"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72406",
+ "handle": "rivo-dulce-durable-vinyl-dur-72406",
+ "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-72406-sample-clean.jpg?v=1774485406",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Sand",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "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-72406"
+ },
+ {
+ "sku": "ellsworth-espresso-sunny-stripe-wallpaper-cca-83149",
+ "handle": "ellsworth-espresso-sunny-stripe-wallpaper-cca-83149",
+ "title": "Ellsworth Espresso Sunny Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b068beeb5f88fec72e9720d6bf7f0675.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Country",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ellsworth-espresso-sunny-stripe-wallpaper-cca-83149"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_fdn-5408-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_fdn-5408-jpg",
+ "title": "Foundation - Ore | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5408.jpg?v=1762294432",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Foundation",
+ "Gray",
+ "Ore",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fdn-5408-jpg"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53465",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53465",
+ "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-53465-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715868",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53465"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47326",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47326",
+ "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-47326-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704766",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47326"
+ },
+ {
+ "sku": "eur-80402-ncw4393-designer-wallcoverings-los-angeles",
+ "handle": "eur-80402-ncw4393-designer-wallcoverings-los-angeles",
+ "title": "Benmore 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_7513506775091.jpg?v=1775523856",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bathroom",
+ "Bedroom",
+ "Benmore",
+ "Biophilic",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Green",
+ "Leaf",
+ "Lightblue",
+ "Lightgreen",
+ "Living Room",
+ "NCW4393",
+ "NCW4393-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-woven",
+ "Organic Modern",
+ "Pale Aqua",
+ "Paper",
+ "Sage Green",
+ "Seafoam Green",
+ "Serene",
+ "Tropical",
+ "Tropical Leaf",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80402-ncw4393-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47892",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47892",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47892-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722413",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Modern",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47892"
+ },
+ {
+ "sku": "panino-s-patina-squares-pps-44467",
+ "handle": "panino-s-patina-squares-pps-44467",
+ "title": "Panino's Patina Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/pps-44467-sample-panino-s-patina-squares-hollywood-wallcoverings.jpg?v=1775728850",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bathroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Panino's Patina Squares",
+ "Powder Room",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Tile",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 39.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/panino-s-patina-squares-pps-44467"
+ },
+ {
+ "sku": "barnes-rust-paisley-damask-wallpaper-cca-82911",
+ "handle": "barnes-rust-paisley-damask-wallpaper-cca-82911",
+ "title": "Barnes Rust Paisley Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce82d83043536140046b9e708813815a.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Modern",
+ "Orange",
+ "Paisley",
+ "Paper",
+ "Prepasted",
+ "Rust",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnes-rust-paisley-damask-wallpaper-cca-82911"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47634",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47634",
+ "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-47634-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710898",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47634"
+ },
+ {
+ "sku": "susie-pink-chevron-wallpaper-cca-83036",
+ "handle": "susie-pink-chevron-wallpaper-cca-83036",
+ "title": "Susie Pink Chevron Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/863936ee67c10001ceab04198d5994b6.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Chevron",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Kids",
+ "LA Walls",
+ "Light Green",
+ "Modern",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susie-pink-chevron-wallpaper-cca-83036"
+ },
+ {
+ "sku": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73272",
+ "handle": "caterina-embossed-vinyl-wallpaper-type-2-xwa-73272",
+ "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-73272-sample-caterina-embossed-vinyl-type-2-hollywood.jpg?v=1775707545",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Caterina Embossed Vinyl",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Goldenrodyellow",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Sand",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caterina-embossed-vinyl-wallpaper-type-2-xwa-73272"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58151",
+ "handle": "artisma-croco-vinyl-dwx-58151",
+ "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-58151-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699257",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Print",
+ "Animal Skin",
+ "Animals",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crocodile",
+ "Damask",
+ "Dark Brown",
+ "Durable",
+ "Easy To Clean",
+ "Embossed",
+ "Embossed Texture",
+ "Emerald Green",
+ "Faux Leather",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Modern",
+ "Navy Blue",
+ "Neutral",
+ "Paper",
+ "Regencycore",
+ "Restaurant",
+ "Scratch Resistant",
+ "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/artisma-croco-vinyl-dwx-58151"
+ },
+ {
+ "sku": "franko-faux-metallic-patina-ffm-44438",
+ "handle": "franko-faux-metallic-patina-ffm-44438",
+ "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-44438-sample-franko-faux-metallic-patina-hollywood-wallcoverings.jpg?v=1775714272",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Living Room",
+ "Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franko-faux-metallic-patina-ffm-44438"
+ },
+ {
+ "sku": "ncw4303-02",
+ "handle": "ncw4303-02",
+ "title": "Les Rêves Camille Green - Celadon Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262051379.jpg?v=1775520256",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Green",
+ "Light Green",
+ "NCW4303-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Trellis",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4303-02"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201077",
+ "handle": "hollywood-skyline-xhw-201077",
+ "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-carlisle.jpg?v=1777480940",
+ "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: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 62.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201077"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72165",
+ "handle": "st-silken-durable-vinyl-dur-72165",
+ "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-72165-sample-clean.jpg?v=1774484636",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Medium Gray",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72165"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66518",
+ "handle": "cody-couture-wallpaper-xb2-66518",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/89703cb2b7c087d28608eca46d62e489.jpg?v=1775128728",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Geometric",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66518"
+ },
+ {
+ "sku": "forsyth-embossed-contemporary-durable-walls-xwd-52157",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52157",
+ "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-quartz.jpg?v=1777480417",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Mfr-Image-Refreshed",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52157"
+ },
+ {
+ "sku": "amity-wheat-bleeding-heart-scroll-wallpaper-cca-83256",
+ "handle": "amity-wheat-bleeding-heart-scroll-wallpaper-cca-83256",
+ "title": "Amity Wheat Bleeding Heart Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d4a5b0693f467a0a0f2979deb091e9f4.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "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-wheat-bleeding-heart-scroll-wallpaper-cca-83256"
+ },
+ {
+ "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": "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": "norman-blue-medallion-wallpaper-cca-82950",
+ "handle": "norman-blue-medallion-wallpaper-cca-82950",
+ "title": "Norman Blue Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a0e9a2c306b1c0e4eb49c902bc180547.jpg?v=1572309963",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Fabric",
+ "Geometric",
+ "LA Walls",
+ "Masculine",
+ "Norman Blue Medallion Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-blue-medallion-wallpaper-cca-82950"
+ },
+ {
+ "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": "hardee-embossed-contemporary-durable-walls-xwy-53111",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53111",
+ "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53111-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716039",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53111"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53076",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53076",
+ "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-53076-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703587",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53076"
+ },
+ {
+ "sku": "carved-squares-wallcovering-xcs-44051",
+ "handle": "carved-squares-wallcovering-xcs-44051",
+ "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-44051-sample-carved-squares-hollywood-wallcoverings.jpg?v=1775707224",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 41.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carved-squares-wallcovering-xcs-44051"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2764",
+ "handle": "faux-leaf-squares-fls-2764",
+ "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-2764-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712042",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Off-white",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2764"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_for-5055-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5055-jpg",
+ "title": "Forge - Granite | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5055.jpg?v=1762294915",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Forge",
+ "Granite",
+ "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_for-5055-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2511",
+ "handle": "faux-leaf-squares-fls-2511",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2511-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711892",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Off-white",
+ "Rosy Brown",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2511"
+ },
+ {
+ "sku": "ncw4354-04",
+ "handle": "ncw4354-04",
+ "title": "Nina Campbell Wallcoverings - Chartreuse Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264869427.jpg?v=1775520607",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Geometric",
+ "Green",
+ "Limegreen",
+ "Mid-Century Modern",
+ "NCW4354-04",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4354-04"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st11391-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st11391-jpg",
+ "title": "ST11391 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11387.jpg?v=1733872120",
+ "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_st11391-jpg"
+ },
+ {
+ "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_gai-5001-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5001-jpg",
+ "title": "Grain Plus - Walnut | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5001.jpg?v=1762295198",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain Plus",
+ "RAMPART®",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5001-jpg"
+ },
+ {
+ "sku": "ncw4351-03",
+ "handle": "ncw4351-03",
+ "title": "Les Indiennes Baville Aqua/Ochre - 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_4497263886387.jpg?v=1775520484",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Multi",
+ "NCW4351-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paisley",
+ "Paper",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4351-03"
+ },
+ {
+ "sku": "versace-medal-grey-white-wallcovering-versace",
+ "handle": "versace-medal-grey-white-wallcovering-versace",
+ "title": "Versace Medal Grey, White Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/e7363a0c446bc441784b385a7c080e65.jpg?v=1773706435",
+ "tags": [
+ "A.S. Création",
+ "Animal/Insects",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Blue Gray",
+ "Butterfly",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Geometric",
+ "Glamorous",
+ "Grandmillennial",
+ "Gray",
+ "Greek Key",
+ "Italian",
+ "Light Beige",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Luxury",
+ "Medallion",
+ "Multi",
+ "Off-white",
+ "Pale Grey",
+ "Paste the wall",
+ "Sophisticated",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Medal",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 407.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-medal-grey-white-wallcovering-versace"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73156",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73156",
+ "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-73156-sample-clean.jpg?v=1774483783",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Orange",
+ "Burnt Umber",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Orange",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73156"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5100-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5100-jpg",
+ "title": "Kami - Bronze | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5100.jpg?v=1762298318",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Bronze",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Embossed",
+ "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-5100-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-433",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-433",
+ "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/2b1b3240fdde01226f2207bb2b4206b2_732d79c9-8082-43e5-9928-f3541b4a11dd.jpg?v=1745458264",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-433"
+ },
+ {
+ "sku": "groveland-vertical-durable-walls-xwt-53429",
+ "handle": "groveland-vertical-durable-walls-xwt-53429",
+ "title": "Groveland Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53429-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715109",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Blue",
+ "Light Blue Grey",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Slate Blue",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53429"
+ },
+ {
+ "sku": "flight-of-the-elephants-small-mural-by-retro-walls-rtr-37227",
+ "handle": "flight-of-the-elephants-small-mural-by-retro-walls-rtr-37227",
+ "title": "Flight Of The Elephants Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/86cc80d2baf90c0e3b9c889a19e6c496.jpg?v=1572309702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Elephant",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/flight-of-the-elephants-small-mural-by-retro-walls-rtr-37227"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_metm-576-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_metm-576-jpg",
+ "title": "Metamorphosis - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/metm-576.jpg?v=1762301094",
+ "tags": [
+ "39% Polyester",
+ "61% Olefin",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Metallic",
+ "Metamorphosis",
+ "Olefin",
+ "Silver",
+ "Textile",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_metm-576-jpg"
+ },
+ {
+ "sku": "ncw4350-02",
+ "handle": "ncw4350-02",
+ "title": "Les Indiennes Les Indiennes 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_4497263493171.jpg?v=1775520445",
+ "tags": [
+ "Arabesque",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "NCW4350-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paisley",
+ "Paper",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4350-02"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73068",
+ "handle": "reeds-drive-wild-grass-hlw-73068",
+ "title": "Reeds Drive - Wild Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73068-sample-clean.jpg?v=1774483316",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Forest Green",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73068"
+ },
+ {
+ "sku": "dwss-72644",
+ "handle": "dwss-72644",
+ "title": "Nils blue Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/704-66_image1_b77d4598-c29f-4197-a8a1-116d320c3a7d.jpg?v=1646104933",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Nils",
+ "Nils blue Sample",
+ "P704-66",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72644"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9497",
+ "handle": "chinese-fret-walls-cfw-9497",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9497-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708091",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Dark Brown",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9497"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72172",
+ "handle": "st-silken-durable-vinyl-dur-72172",
+ "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-72172-sample-clean.jpg?v=1774484661",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Sage",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Sage 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/st-silken-durable-vinyl-dur-72172"
+ },
+ {
+ "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": "floating-bubbles-vinyl-dwx-58114",
+ "handle": "floating-bubbles-vinyl-dwx-58114",
+ "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-58114-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713445",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "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-58114"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52076",
+ "handle": "canal-damask-durable-vinyl-xwa-52076",
+ "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-52076-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707045",
+ "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",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Pattern",
+ "Serene",
+ "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-52076"
+ },
+ {
+ "sku": "eur-80278-ncw4274-designer-wallcoverings-los-angeles",
+ "handle": "eur-80278-ncw4274-designer-wallcoverings-los-angeles",
+ "title": "Palmetto 02 - Pale Aqua Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502089267.jpg?v=1775523122",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Hallway",
+ "Light Blue",
+ "Minimalist",
+ "NCW4274",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Blue",
+ "Palmetto",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80278-ncw4274-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49331",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49331",
+ "title": "Oxford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xvg-49331-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728331",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Moss",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49331"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2863",
+ "handle": "peter-s-plastered-walls-ppw-2863",
+ "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-2863-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729026",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Light Gray",
+ "Mediterranean",
+ "Peter's Plastered",
+ "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-2863"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2866",
+ "handle": "peter-s-plastered-walls-ppw-2866",
+ "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-2866-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729035",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Green",
+ "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-2866"
+ },
+ {
+ "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": "dwkk-ge20640bc",
+ "handle": "dwkk-ge20640bc",
+ "title": "Kravet Design - W3492-52 Slate Commercial Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_52_34f04674-c640-442c-8be7-975f2b1bb93e.jpg?v=1753122293",
+ "tags": [
+ "36In",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Candice Olson Collection",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork - 100%",
+ "display_variant",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Korea",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Republic Of",
+ "Rustic",
+ "Silver",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Vinyl",
+ "W3492-52",
+ "W3492.52.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-ge20640bc"
+ },
+ {
+ "sku": "provence-durable-vinyl-dur-72027",
+ "handle": "provence-durable-vinyl-dur-72027",
+ "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-72027-sample-clean.jpg?v=1774484026",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Pale Beige",
+ "Provence Durable Vinyl",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/provence-durable-vinyl-dur-72027"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dpaw-460-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dpaw-460-jpg",
+ "title": "Pawpaw - Ginger | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DPAW-460_2021-02-18-235049.jpg?v=1762291377",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Cork",
+ "Dark Brown",
+ "Digital Curated",
+ "Ginger",
+ "Industrial",
+ "Light Brown",
+ "Pawpaw",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dpaw-460-jpg"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72450",
+ "handle": "via-del-marnie-durable-vinyl-dur-72450",
+ "title": "Via del Marnie Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72450-sample-clean.jpg?v=1774485625",
+ "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",
+ "Living Room",
+ "Sage",
+ "Seafoam Green",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72450"
+ },
+ {
+ "sku": "reeds-drive-wiki-wood-weave-hlw-73137",
+ "handle": "reeds-drive-wiki-wood-weave-hlw-73137",
+ "title": "Reeds Drive - Wiki Wood Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73137-sample-clean.jpg?v=1774483669",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Farmhouse",
+ "Faux Wood",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wiki-wood-weave-hlw-73137"
+ },
+ {
+ "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": "versace-floral-pastel-multicoloured-metallic-wallcovering-versace",
+ "handle": "versace-floral-pastel-multicoloured-metallic-wallcovering-versace",
+ "title": "Versace Floral Pastel Multicoloured, Metallic Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/a6f5aa0623799309964658ef4f3db170.jpg?v=1773706398",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blush Pink",
+ "Botanical",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Italian",
+ "Light Green",
+ "Light Pink",
+ "Light Yellow",
+ "Living Room",
+ "Luxury",
+ "Metallic Wallcovering",
+ "Multi",
+ "Multicoloured",
+ "Off-white",
+ "Pale Green",
+ "Pale Pink",
+ "Pale Yellow",
+ "Paper",
+ "Paste the wall",
+ "Pink",
+ "Seafoam Green",
+ "Serene",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Floral Pastel",
+ "Versace Floral Pastel Multicoloured",
+ "Versace Home",
+ "Versace VI",
+ "Victorian",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-floral-pastel-multicoloured-metallic-wallcovering-versace"
+ },
+ {
+ "sku": "under-water-waves-xuw-44160",
+ "handle": "under-water-waves-xuw-44160",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44160-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735609",
+ "tags": [
+ "Abstract",
+ "Aqua",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44160"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48455",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48455",
+ "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-48455-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735087",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Sand",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48455"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mru-3290_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3290_8-jpg",
+ "title": "Marlu - Cinnamon | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3290_8.jpg?v=1762301394",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Cinnamon",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Copper",
+ "Geometric",
+ "Marlu",
+ "Orange",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3290_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad9501-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad9501-jpg",
+ "title": "Ambient Design - AD9501 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9500.jpg?v=1733874163",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Beige",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9501-jpg"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72308",
+ "handle": "la-voltere-durable-vinyl-dur-72308",
+ "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-72308-sample-clean.jpg?v=1774485122",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Burgundy",
+ "Dining Room",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Maroon",
+ "Red",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72308"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010373",
+ "handle": "hollywood-contemporary-coast-xhw-2010373",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-redondo_e40b1b7d-ef03-4960-a33f-47220b3c2282.jpg?v=1777481075",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010373"
+ },
+ {
+ "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47707",
+ "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47707",
+ "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47707-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712695",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47707"
+ },
+ {
+ "sku": "eur-80343-ncw4308-designer-wallcoverings-los-angeles",
+ "handle": "eur-80343-ncw4308-designer-wallcoverings-los-angeles",
+ "title": "Portavo Damask 04 - Orange Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504874547.jpg?v=1775523504",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Damask",
+ "Dining Room",
+ "Eclectic",
+ "Geometric",
+ "Gray",
+ "LES REVES",
+ "Living Room",
+ "NCW4308",
+ "NCW4308-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Paper",
+ "Portavo Damask",
+ "Red",
+ "Silver",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80343-ncw4308-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5508-jpg",
+ "title": "Resham - Laurel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5508.jpg?v=1762304075",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Laurel",
+ "Light Gray",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5508-jpg"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47880",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47880",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47880-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722089",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47880"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010175",
+ "handle": "hollywood-tailored-xhw-2010175",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-poet_house.jpg?v=1777480967",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Lattice",
+ "Light Grey",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010175"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10204-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10204-jpg",
+ "title": "Smooth Pearl | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sp10204.jpg?v=1762307904",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Scuffmaster",
+ "Smooth Pearl",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10204-jpg"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72157",
+ "handle": "cote-marine-durable-vinyl-dur-72157",
+ "title": "Cote Marine Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72157-sample-clean.jpg?v=1774484607",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cote Marine Durable Vinyl",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72157"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52340",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52340",
+ "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-roost.jpg?v=1777480492",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52340"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10273b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10273b-jpg",
+ "title": "EM10273B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em10272b.jpg?v=1733873308",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM10273B",
+ "Light Brown",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10273b-jpg"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66827",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66827",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3caed51da7bfb563d67b1ef433c63a76.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Light Beige",
+ "Minimalist",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66827"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72219",
+ "handle": "saint-lore-durable-vinyl-dur-72219",
+ "title": "Soft 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-72219-sample-clean.jpg?v=1774484779",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72219"
+ },
+ {
+ "sku": "dwss-72650",
+ "handle": "dwss-72650",
+ "title": "Murgröna light grey Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/707-21_image1_bc2d5e08-5cfc-4035-9e6e-4a9048d9be80.jpg?v=1646104950",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Lattice",
+ "Light Gray",
+ "LIGHT GREY",
+ "Murgröna",
+ "Murgröna light grey Sample",
+ "P707-21",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72650"
+ },
+ {
+ "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": "ncw4390-02",
+ "handle": "ncw4390-02",
+ "title": "Nina Campbell Wallcoverings - Aqua Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265262643.jpg?v=1775520683",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "NCW4390-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Stripe",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4390-02"
+ },
+ {
+ "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": "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": "zebilini-wallpaper-xd6-66715",
+ "handle": "zebilini-wallpaper-xd6-66715",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/59df5d3afac50c60ff5532f0b50ce328.jpg?v=1775134707",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Circles",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Geometric",
+ "Gold",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-White",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66715"
+ },
+ {
+ "sku": "ncw4304-03",
+ "handle": "ncw4304-03",
+ "title": "Les Rêves Marguerite Pink/Grey - Coral Blush Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262313523.jpg?v=1775520296",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "Gray",
+ "NCW4304-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4304-03"
+ },
+ {
+ "sku": "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": "faux-leaf-squares-fls-2525",
+ "handle": "faux-leaf-squares-fls-2525",
+ "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-2525-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711939",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Yellow",
+ "Solid",
+ "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-2525"
+ },
+ {
+ "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": "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": "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": "eur-80212-ncw4186-designer-wallcoverings-los-angeles",
+ "handle": "eur-80212-ncw4186-designer-wallcoverings-los-angeles",
+ "title": "Khitan 09 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500057651.jpg?v=1775522783",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "CATHAY",
+ "Color: Grey",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Khitan",
+ "Light Grey",
+ "Living Room",
+ "NCW4186",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Paper",
+ "Silver",
+ "Sophisticated",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80212-ncw4186-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73056",
+ "handle": "coldwater-hills-panels-hlw-73056",
+ "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-73056-sample-clean.jpg?v=1774483248",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Coldwater Hills",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lavender",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Purple",
+ "Rustic",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73056"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_srp-5041-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_srp-5041-jpg",
+ "title": "Sparta - Shimmer | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/srp-5041.jpg?v=1762308799",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "RAMPART®",
+ "Shimmer",
+ "Sparta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_srp-5041-jpg"
+ },
+ {
+ "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": "freeport-metallic-contemporary-durable-walls-xwt-53415",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53415",
+ "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-temple.jpg?v=1777480836",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Sophisticated",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53415"
+ },
+ {
+ "sku": "dwc-1001637",
+ "handle": "dwc-1001637",
+ "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_4693309915187.jpg?v=1775521274",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Light Gray",
+ "NCW4352-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Non-woven",
+ "Steel",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001637"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2509",
+ "handle": "faux-leaf-squares-fls-2509",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2509-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711885",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2509"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwp-52596",
+ "handle": "vanderbilt-durable-walls-xwp-52596",
+ "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-banana_leaf.jpg?v=1777480644",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Off-White",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwp-52596"
+ },
+ {
+ "sku": "martin-s-metallic-grasscloth-vinyl-dwx-58169",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58169",
+ "title": "Martin's 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-58169-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724247",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58169"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ash-5085-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5085-jpg",
+ "title": "Ashlar - Ocean | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5085.jpg?v=1762287125",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Ocean",
+ "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-5085-jpg"
+ },
+ {
+ "sku": "eur-80303-ncw4300-designer-wallcoverings-los-angeles",
+ "handle": "eur-80303-ncw4300-designer-wallcoverings-los-angeles",
+ "title": "Collioure 05 - 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_7513502908467.jpg?v=1775523262",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Collioure",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Eclectic",
+ "Gray",
+ "Grey",
+ "LES REVES",
+ "Light Grey",
+ "Living Room",
+ "NCW4300",
+ "NCW4300-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Vases",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80303-ncw4300-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4391-03",
+ "handle": "ncw4391-03",
+ "title": "Ashdown Cloisters Green - 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_4497265590323.jpg?v=1775520724",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bohemian",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Green",
+ "Light Green",
+ "NCW4391-03",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4391-03"
+ },
+ {
+ "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52984",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52984",
+ "title": "Manatee Faux Vertical Stria Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gatehouse-cottonwood.jpg?v=1777480724",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52984"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_vrl001-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vrl001-jpg",
+ "title": "VRL001 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_VR008.jpg?v=1733872018",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vrl001-jpg"
+ },
+ {
+ "sku": "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": "dwkk-127666",
+ "handle": "dwkk-127666",
+ "title": "Echo - Pearl 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/W0055_04_CAC_6055ddb4-d71c-4f06-8b34-98fac6057728.jpg?v=1726037706",
+ "tags": [
+ "20.875In",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "contemporary",
+ "Cream",
+ "display_variant",
+ "Echo",
+ "Hallway",
+ "Living Room",
+ "Non-Woven",
+ "Off-white",
+ "Organic Modern",
+ "Pattern",
+ "Print",
+ "Serene",
+ "stripe",
+ "Taupe",
+ "textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "W0055/04.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 179.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127666"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73116",
+ "handle": "puna-drive-natural-grassweave-hlw-73116",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73116-sample-clean.jpg?v=1774483536",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dark Navy",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Puna Drive",
+ "Rustic",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73116"
+ },
+ {
+ "sku": "millinocket-fog-illusion-stripe-wallpaper-cca-83113",
+ "handle": "millinocket-fog-illusion-stripe-wallpaper-cca-83113",
+ "title": "Millinocket Fog Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f11d43a9aef56024d0ba8f9f66fa2d3d.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-fog-illusion-stripe-wallpaper-cca-83113"
+ },
+ {
+ "sku": "casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109",
+ "handle": "casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109",
+ "title": "Casco Bay Brown Ombre Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7d6dfb605161113e366c36293147740c.jpg?v=1572309969",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Casco Bay Brown Ombre Pinstripe Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Brown",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/casco-bay-brown-ombre-pinstripe-wallpaper-cca-83109"
+ },
+ {
+ "sku": "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": "wolfgordonwallcovering_dwwg_mya-9449-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mya-9449-jpg",
+ "title": "Maya - Catalina | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mya-9449.jpg?v=1762302475",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Blue",
+ "Catalina",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Maya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mya-9449-jpg"
+ },
+ {
+ "sku": "dwss-72653",
+ "handle": "dwss-72653",
+ "title": "Simons Ang white Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/708-01_image1_d560f694-babd-4b7d-a9f0-7fd580c05eaa.jpg?v=1646104958",
+ "tags": [
+ "AI-Analyzed-v2",
+ "ANG WHITE",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Green",
+ "P708-01",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sandberg",
+ "Simons",
+ "Simons Ang white Sample",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72653"
+ },
+ {
+ "sku": "dwkk-127820",
+ "handle": "dwkk-127820",
+ "title": "Sapphire Garden Wp - Mineral 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_02_CAC_7e46b29a-6e77-4fa1-beb9-5d4ab6e3b7fa.jpg?v=1753321585",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Chocolate Brown",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Living Room",
+ "Mineral",
+ "Mint",
+ "Monkey",
+ "Navy",
+ "Non Woven - 100%",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Red",
+ "Sapphire Garden Wp",
+ "Serene",
+ "Sky Blue",
+ "Traditional",
+ "Turquoise",
+ "United Kingdom",
+ "W0133/02.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127820"
+ },
+ {
+ "sku": "eur-80147-ncw4150-designer-wallcoverings-los-angeles",
+ "handle": "eur-80147-ncw4150-designer-wallcoverings-los-angeles",
+ "title": "Rosslyn 05 - 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_7513497337907.jpg?v=1775522390",
+ "tags": [
+ "1970s Retro",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Dining Room",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4150",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Rosslyn",
+ "Taupe",
+ "Traditional",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80147-ncw4150-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10429m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10429m-jpg",
+ "title": "ST10429M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10427m.jpg?v=1733872133",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Cyan",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10429m-jpg"
+ },
+ {
+ "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": "gironde-durable-vinyl-dur-72118",
+ "handle": "gironde-durable-vinyl-dur-72118",
+ "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-72118-sample-clean.jpg?v=1774484461",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Linen Texture",
+ "Living Room",
+ "Olive",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72118"
+ },
+ {
+ "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": "andrew-sky-ships-wallpaper-cca-82933",
+ "handle": "andrew-sky-ships-wallpaper-cca-82933",
+ "title": "Andrew Sky Ships Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0c86f3079a6bcc954c01ff133fe8d350.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Nautical",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Scenic",
+ "Series: Brewster",
+ "Ships",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/andrew-sky-ships-wallpaper-cca-82933"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ens-5574_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ens-5574_8-jpg",
+ "title": "Ennis - Lilac | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/QNT-5548.webp?v=1762294323",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Ennis",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ens-5574_8-jpg"
+ },
+ {
+ "sku": "geode-by-innovations-usa-dwc-geode-12",
+ "handle": "geode-by-innovations-usa-dwc-geode-12",
+ "title": "Geode | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Geode-12.jpg?v=1736199483",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Geode",
+ "Geode-12",
+ "Gold",
+ "Gray",
+ "Innovations USA",
+ "Paper",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/geode-by-innovations-usa-dwc-geode-12"
+ },
+ {
+ "sku": "dwc-1001647",
+ "handle": "dwc-1001647",
+ "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_4693310308403.jpg?v=1775521344",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "NCW4353-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Tan",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001647"
+ },
+ {
+ "sku": "dwc-1001656",
+ "handle": "dwc-1001656",
+ "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_4693310767155.jpg?v=1775521396",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "NCW4355-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001656"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73025",
+ "handle": "benedict-canyon-sisal-hlw-73025",
+ "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-73025-sample-clean.jpg?v=1774483088",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73025"
+ },
+ {
+ "sku": "austin-blue-plaid-wallpaper-cca-82965",
+ "handle": "austin-blue-plaid-wallpaper-cca-82965",
+ "title": "Austin Blue Plaid Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bab73402eccf680bae3abdc59704d58e.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Paper",
+ "Plaid",
+ "Plaids",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/austin-blue-plaid-wallpaper-cca-82965"
+ },
+ {
+ "sku": "komo-diamond-bamboo-wallpaper-trf-56825",
+ "handle": "komo-diamond-bamboo-wallpaper-trf-56825",
+ "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/c8b2b09ecf5a7f3da249889d800377e6.jpg?v=1750789756",
+ "tags": [
+ "arbor",
+ "Architectural",
+ "Asian",
+ "bamboo",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Coral",
+ "Cream",
+ "diamond",
+ "Discontinued",
+ "frame work",
+ "Geometric",
+ "grille",
+ "Jeffrey Stevens",
+ "lattice",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "Red",
+ "screen",
+ "Series: York",
+ "Textured",
+ "Traditional",
+ "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-56825"
+ },
+ {
+ "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": "rustic-glam-vinyl-gpr-76644",
+ "handle": "rustic-glam-vinyl-gpr-76644",
+ "title": "Rustic Glam Vinyl",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GPR-76644-sample-clean.jpg?v=1774479041",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bling",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Farmhouse",
+ "Glass Bead",
+ "Hallway",
+ "Hand Crafted",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Maroon",
+ "Mural",
+ "Red",
+ "Rustic",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76644"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52938",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52938",
+ "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-52938-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734567",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Sand",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52938"
+ },
+ {
+ "sku": "asha-aquamarine-lotus-damask-wallpaper-cca-83235",
+ "handle": "asha-aquamarine-lotus-damask-wallpaper-cca-83235",
+ "title": "Asha Aquamarine Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5ad04c0b85e5b43cc3d95ba58565a6cf.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Glitter",
+ "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-aquamarine-lotus-damask-wallpaper-cca-83235"
+ },
+ {
+ "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": "floating-bubbles-vinyl-dwx-58125",
+ "handle": "floating-bubbles-vinyl-dwx-58125",
+ "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-58125-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713746",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bubbles",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Silver",
+ "Subtle",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58125"
+ },
+ {
+ "sku": "eur-80176-ncw4181-designer-wallcoverings-los-angeles",
+ "handle": "eur-80176-ncw4181-designer-wallcoverings-los-angeles",
+ "title": "Sansui 03 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498484787.jpg?v=1775522585",
+ "tags": [
+ "Architectural",
+ "CATHAY",
+ "Chinoiserie",
+ "Color: Green",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Fretwork",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Lattice",
+ "Living Room",
+ "NCW4181",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pale Green",
+ "Paper",
+ "Sansui",
+ "Serene",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80176-ncw4181-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53479",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53479",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53479-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715928",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Oatmeal",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53479"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5076-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5076-jpg",
+ "title": "Acute - Platinum | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5076.jpg?v=1762283527",
+ "tags": [
+ "100% Vinyl",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dark Gray",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Paper",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5076-jpg"
+ },
+ {
+ "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": "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": "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": "dwkk-129225",
+ "handle": "dwkk-129225",
+ "title": "W3781-8 Black | Kravet Design | Tropical Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3781_8_5b00cf05-6974-4e8c-a088-d2772076723b.jpg?v=1753291932",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Black",
+ "Botanical",
+ "Commercial",
+ "display_variant",
+ "Gray",
+ "Green",
+ "Ivy",
+ "Kravet",
+ "Kravet Design",
+ "Leaf",
+ "Moss",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Thyme",
+ "Tropical",
+ "United States",
+ "W3781-8",
+ "W3781.8.0",
+ "Wallcovering",
+ "Willow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129225"
+ },
+ {
+ "sku": "delilah-wheat-tulip-damask-wallpaper-cca-83238",
+ "handle": "delilah-wheat-tulip-damask-wallpaper-cca-83238",
+ "title": "Delilah Wheat Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/349eb190727830a8295723f1b7f4151d.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-wheat-tulip-damask-wallpaper-cca-83238"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52089",
+ "handle": "canal-texture-durable-walls-xwa-52089",
+ "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-oatmeal.jpg?v=1777480390",
+ "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",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52089"
+ },
+ {
+ "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": "henna-horizontal-grasscloth-wallpaper-trf-56882",
+ "handle": "henna-horizontal-grasscloth-wallpaper-trf-56882",
+ "title": "Henna Horizontal Faux Grasscloth | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fb8f0ada7503388068310a9678f92d74.jpg?v=1750789683",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "Light Beige",
+ "Light Green",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Sage Green",
+ "Scandinavian",
+ "Series: York",
+ "Stripe",
+ "Tan",
+ "textured",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/henna-horizontal-grasscloth-wallpaper-trf-56882"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52330",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52330",
+ "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-windswept.jpg?v=1777480477",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52330"
+ },
+ {
+ "sku": "dwc-1001687",
+ "handle": "dwc-1001687",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693312438323.jpg?v=1775521602",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Floral",
+ "NCW4395-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Teal",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001687"
+ },
+ {
+ "sku": "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": "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": "wolfgordonwallcovering_dwwg_lyr-3375_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3375_8-jpg",
+ "title": "Lyra - Tea Rose | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3375_8.jpg?v=1762299795",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Lyra",
+ "Pink",
+ "Rose",
+ "Stripe",
+ "Tea Rose",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3375_8-jpg"
+ },
+ {
+ "sku": "modulo-pampas-romo",
+ "handle": "modulo-pampas-romo",
+ "title": "Modulo Pampas | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W967-01-modulo-wallcovering-pampas_04.jpg?v=1776485158",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "Contemporary",
+ "Embossed Wallcovering",
+ "Geometric",
+ "Hotel",
+ "Kabu Wallcoverings",
+ "Medium",
+ "Modulo",
+ "Non-Woven",
+ "off-white",
+ "Office",
+ "Retail",
+ "Romo",
+ "Scandinavian",
+ "Soft White",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "W967/01",
+ "Wallcovering",
+ "Warm Beige"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/modulo-pampas-romo"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47887",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47887",
+ "title": "Loftus Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlz-47887-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722274",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Luxe",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47887"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_vapor-vr003-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_vapor-vr003-jpg",
+ "title": "Vapor | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/vapor-vr003.jpg?v=1762311619",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Gray",
+ "Scuffmaster",
+ "Textured",
+ "Vapor",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_vapor-vr003-jpg"
+ },
+ {
+ "sku": "dwc-1001661",
+ "handle": "dwc-1001661",
+ "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_4693310930995.jpg?v=1775521428",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "NCW4356-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Silver",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001661"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72268",
+ "handle": "essone-durable-vinyl-dur-72268",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72268-sample-clean.jpg?v=1774484946",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Serene",
+ "Silver",
+ "Slate Blue",
+ "Steel Blue",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72268"
+ },
+ {
+ "sku": "dwkk-128416",
+ "handle": "dwkk-128416",
+ "title": "Mirage - Denim Slate | Kravet Design | Sarah Richardson Wallpaper |Modern Ikat/Southwest/Kilims Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3509_513_9e2e753f-55f6-40f4-b779-b8418092389e.jpg?v=1753292768",
+ "tags": [
+ "20.5In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Cellulose - 50%;Other - 30%;Polyester - 20%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Denim",
+ "display_variant",
+ "Ikat",
+ "Ikat/Southwest/Kilims",
+ "Kravet",
+ "Kravet Design",
+ "Light Gray",
+ "Light Green",
+ "Light Grey",
+ "Living Room",
+ "Mirage",
+ "Modern",
+ "Non-Woven",
+ "Organic Modern",
+ "Pale Green",
+ "Pattern",
+ "Print",
+ "Sarah Richardson Wallcovering",
+ "Serene",
+ "Sky Blue",
+ "Textured",
+ "Transitional",
+ "United Kingdom",
+ "W3509.513.0",
+ "Wallcovering",
+ "Watercolor",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128416"
+ },
+ {
+ "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": "hanover-faux-embossed-faux-linen-walls-xwy-53175",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53175",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-indigo.jpg?v=1777480795",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Teal",
+ "Bedroom",
+ "Blue",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53175"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010381",
+ "handle": "hollywood-contemporary-coast-xhw-2010381",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/surf-tahiti_1dd87b41-7250-4d47-a48f-d135a9004f3a.jpg?v=1777481090",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Gray",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Pale Taupe",
+ "Samantha",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010381"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58045",
+ "handle": "sunset-stone-vinyl-dwx-58045",
+ "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-58045-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735121",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Natural Look",
+ "Off-white",
+ "Pale Beige",
+ "Serene",
+ "Stone",
+ "Stucco",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58045"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72448",
+ "handle": "via-del-marnie-durable-vinyl-dur-72448",
+ "title": "Via del Marnie Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72448-sample-clean.jpg?v=1774485615",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72448"
+ },
+ {
+ "sku": "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": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "handle": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "title": "Dylan Beige Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/17cb5ce99e864c47c875e18e6b43763a.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dylan-beige-candy-stripe-wallpaper-cca-82977"
+ },
+ {
+ "sku": "sullivan-purple-ombre-vine-trail-wallpaper-wallpaper-cca-82902",
+ "handle": "sullivan-purple-ombre-vine-trail-wallpaper-wallpaper-cca-82902",
+ "title": "Sullivan Purple Ombre Vine Trail Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bd88e64c8d8541d8f98e4955f447cff8.jpg?v=1572309961",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Strippable",
+ "Sullivan Purple Ombre Vine Trail Wallcovering Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sullivan-purple-ombre-vine-trail-wallpaper-wallpaper-cca-82902"
+ },
+ {
+ "sku": "ethan-sky-star-wallpaper-cca-83034",
+ "handle": "ethan-sky-star-wallpaper-cca-83034",
+ "title": "Ethan Sky Star Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c47fa5829c3b343f7b56c3e4556343d2.jpg?v=1572309966",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stars",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ethan-sky-star-wallpaper-cca-83034"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ros-4146-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ros-4146-jpg",
+ "title": "Rossana - True Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ros-4146.jpg?v=1762304939",
+ "tags": [
+ "100% Mylar",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Metallic",
+ "Mylar",
+ "Rossana",
+ "Silver",
+ "Textured",
+ "True Silver",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ros-4146-jpg"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72147",
+ "handle": "cote-marine-durable-vinyl-dur-72147",
+ "title": "Cote Marine Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72147-sample-clean.jpg?v=1774484565",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "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 Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72147"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2885_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2885_8-jpg",
+ "title": "Grove - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2885_8.jpg?v=1762295987",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Grove",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2885_8-jpg"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53158",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53158",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/loom-flax.jpg?v=1777480768",
+ "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: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53158"
+ },
+ {
+ "sku": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82849",
+ "handle": "gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82849",
+ "title": "Gibby Purple Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/88fd9b7372678c41808b5659967b5762.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Leaf",
+ "Prepasted",
+ "Purple",
+ "Scroll",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gibby-purple-leafy-scroll-wallpaper-wallpaper-cca-82849"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dug-5470-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5470-jpg",
+ "title": "Douglas - Beech | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5470.jpg?v=1762292862",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beech",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Cream",
+ "Douglas",
+ "Paper",
+ "RAMPART®",
+ "Scandinavian",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5470-jpg"
+ },
+ {
+ "sku": "dwss-72540",
+ "handle": "dwss-72540",
+ "title": "Sten offwhite Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/583-01_image1_2f51e757-e301-4401-94fd-b980eecf4c33.jpg?v=1646104592",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Ivory",
+ "Minimalist",
+ "OFFWHITE",
+ "P583-01",
+ "Paper",
+ "Sandberg",
+ "Solid",
+ "Sten",
+ "Sten offwhite Sample",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72540"
+ },
+ {
+ "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": "dwkk-127710",
+ "handle": "dwkk-127710",
+ "title": "Tree Bark - Antique By Clarke And Clarke | Clarke & Clarke Reflections |Solid Texture Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0062_01_CAC_0e57882d-c181-43ce-8200-71a630c6b6fe.jpg?v=1726037821",
+ "tags": [
+ "20.875In",
+ "Antique",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Taupe",
+ "display_variant",
+ "Green",
+ "Hallway",
+ "Living Room",
+ "Non-Woven",
+ "Olive",
+ "Print",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tree Bark",
+ "United Kingdom",
+ "Vinyl",
+ "W0062/01.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 184.47,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127710"
+ },
+ {
+ "sku": "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": "sumatra-by-innovations-usa-dwc-sumatra-9",
+ "handle": "sumatra-by-innovations-usa-dwc-sumatra-9",
+ "title": "Sumatra | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-9.jpg?v=1736198814",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Grasscloth",
+ "Innovations USA",
+ "Light Gray",
+ "Sumatra",
+ "Sumatra-9",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-9"
+ },
+ {
+ "sku": "ncw4354-05",
+ "handle": "ncw4354-05",
+ "title": "Les Indiennes Garance Black - Black Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264902195.jpg?v=1775520614",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Medallion",
+ "NCW4354-05",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4354-05"
+ },
+ {
+ "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": "kiligano-libra-wallpaper-xg4-66917",
+ "handle": "kiligano-libra-wallpaper-xg4-66917",
+ "title": "Kiligano Libra Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9cb6f670de9b86460cb06dc1aa252edc.jpg?v=1572309571",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Kiligano Libra Wallcovering",
+ "Light Beige",
+ "Light Brown",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kiligano-libra-wallpaper-xg4-66917"
+ },
+ {
+ "sku": "ncw4395-02",
+ "handle": "ncw4395-02",
+ "title": "Nina Campbell Wallcoverings - Umber Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497266802739.jpg?v=1775520851",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "NCW4395-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4395-02"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66473",
+ "handle": "mr-diorio-wallpaper-xa8-66473",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f5817a28c06edd333c9e5194570882cb.jpg?v=1775125310",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hotel Lobby",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "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-66473"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-418",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-418",
+ "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/5a514203239288f1c79da0acb56c0272_8150ec29-5d1e-4ccf-a5de-c799d8c9d67e.jpg?v=1745458303",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Light Brown",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-418"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73033",
+ "handle": "benedict-canyon-sisal-hlw-73033",
+ "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-73033-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703755",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73033"
+ },
+ {
+ "sku": "edgware-type-ii-vinyl-wallcovering-xlb-47640",
+ "handle": "edgware-type-ii-vinyl-wallcovering-xlb-47640",
+ "title": "Edgware Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47640-sample-edgware-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775711022",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Edgware Type 2 Vinyl Wallcovering",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Red",
+ "Terra Cotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/edgware-type-ii-vinyl-wallcovering-xlb-47640"
+ },
+ {
+ "sku": "dwc-1001607",
+ "handle": "dwc-1001607",
+ "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_4693307916339.jpg?v=1775521083",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Light Gray",
+ "NCW4305-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001607"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72062",
+ "handle": "saint-helene-durable-vinyl-dur-72062",
+ "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-72062-sample-clean.jpg?v=1774484218",
+ "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",
+ "Living Room",
+ "Minimalist",
+ "Pale Turquoise",
+ "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-72062"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3325_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3325_8-jpg",
+ "title": "Hugo - Steel | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3325_8.jpg?v=1762297681",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Paper",
+ "Silver",
+ "Steel",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3325_8-jpg"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73001",
+ "handle": "benedict-canyon-sisal-hlw-73001",
+ "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-73001-sample-clean.jpg?v=1774482978",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73001"
+ },
+ {
+ "sku": "fukaura-durable-vinyl-xrm-34133",
+ "handle": "fukaura-durable-vinyl-xrm-34133",
+ "title": "Fukaura Durable Vinyl",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8fd341de233cc91097f7c8cbaa58c101_a5b8cbb9-f95e-45b7-854d-d80cc8489439.jpg?v=1572310410",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "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-34133"
+ },
+ {
+ "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": "eur-80462-ncw4498-designer-wallcoverings-los-angeles",
+ "handle": "eur-80462-ncw4498-designer-wallcoverings-los-angeles",
+ "title": "Poiteau Bamboo Ferns 03 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508905011.jpg?v=1775524247",
+ "tags": [
+ "Architectural",
+ "Bamboo",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Ferns",
+ "Green",
+ "Hallway",
+ "Japonisme",
+ "Leaf",
+ "Living Room",
+ "NCW4498",
+ "NCW4498-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Poiteau Bamboo Ferns",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80462-ncw4498-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2743",
+ "handle": "faux-leaf-squares-fls-2743",
+ "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-2743-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711978",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Minimalist",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2743"
+ },
+ {
+ "sku": "eur-80255-ncw4207-designer-wallcoverings-los-angeles",
+ "handle": "eur-80255-ncw4207-designer-wallcoverings-los-angeles",
+ "title": "Fontibre 02 - Warm 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_7513501171763.jpg?v=1775522989",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Fontibre",
+ "Hallway",
+ "Leaf",
+ "Light Teal",
+ "Living Room",
+ "NCW4207",
+ "NCW4207-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Red",
+ "Seafoam Green",
+ "Serene",
+ "Taupe",
+ "Teal",
+ "Transitional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80255-ncw4207-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2747",
+ "handle": "faux-leaf-squares-fls-2747",
+ "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-2747-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711991",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Commercial",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2747"
+ },
+ {
+ "sku": "cooper-white-cabin-stripe-wallpaper-cca-82967",
+ "handle": "cooper-white-cabin-stripe-wallpaper-cca-82967",
+ "title": "Cooper White Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/efd60abce6daa49257357cf255eb9def.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cooper-white-cabin-stripe-wallpaper-cca-82967"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-402",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-402",
+ "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/7c568202ffa306066192d775735e4dbb_cfd34e15-1132-4b9b-88b2-73b7cb0bdf3b.jpg?v=1745458352",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-402"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53466",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53466",
+ "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-53466-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715872",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53466"
+ },
+ {
+ "sku": "asha-pearl-lotus-texture-wallpaper-cca-83274",
+ "handle": "asha-pearl-lotus-texture-wallpaper-cca-83274",
+ "title": "Asha Pearl Lotus Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/05be3c8ff17cd44c99b5c5482a6410a9.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Non-Woven",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pearl-lotus-texture-wallpaper-cca-83274"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9408-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9408-jpg",
+ "title": "ST9408 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9407.jpg?v=1733872273",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Orange",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9408-jpg"
+ },
+ {
+ "sku": "susie-brown-chevron-wallpaper-cca-83038",
+ "handle": "susie-brown-chevron-wallpaper-cca-83038",
+ "title": "Susie Brown Chevron Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/670d2d4595e526a8571526228d461c4e.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chevron",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susie-brown-chevron-wallpaper-cca-83038"
+ },
+ {
+ "sku": "dwss-72655",
+ "handle": "dwss-72655",
+ "title": "Hassel green Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/709-38_image1_34fb3273-c334-4a52-9264-d237d23363fd.jpg?v=1646104963",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Green",
+ "Hassel",
+ "Hassel green Sample",
+ "P709-38",
+ "Paper",
+ "Pattern",
+ "Sandberg",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72655"
+ },
+ {
+ "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": "sudbury-type-ii-vinyl-wallcovering-xqe-48454",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48454",
+ "title": "Sudbury Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqe-48454-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735083",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Slate Gray",
+ "Sophisticated",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48454"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47953",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47953",
+ "title": "Maidstone - Dusk 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-47953-sample-maidstone-dusk-type-ii-vinyl-hollywood.jpg?v=1775723337",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Olive",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Office",
+ "Organic Modern",
+ "Sage Green",
+ "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\"",
+ "Yellow"
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47953"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53530",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53530",
+ "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-bamboo.jpg?v=1777480853",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Flax",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic",
+ "Organic Modern",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wheat",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53530"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52358",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52358",
+ "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-bluebird_09182fd1-7571-4faa-8adb-0f9b0ad06d2b.jpg?v=1777481174",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Teal",
+ "Bedroom",
+ "Blue",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Teal",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Organic Modern",
+ "Seafoam Green",
+ "Serene",
+ "Teal",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "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-52358"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10370-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10370-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/ar10370.jpg?v=1762285880",
+ "tags": [
+ "Architectural",
+ "Armor",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Scuffmaster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10370-jpg"
+ },
+ {
+ "sku": "dwc-1001594",
+ "handle": "dwc-1001594",
+ "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_4693307129907.jpg?v=1775520994",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Light Green",
+ "NCW4302-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001594"
+ },
+ {
+ "sku": "mason-haze-stripe-texture-wallpaper-cca-82921",
+ "handle": "mason-haze-stripe-texture-wallpaper-cca-82921",
+ "title": "Mason Haze Stripe Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/37c034fe9c5ded1715aa00d12f799a48.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Haze",
+ "LA Walls",
+ "Light Gray",
+ "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-haze-stripe-texture-wallpaper-cca-82921"
+ },
+ {
+ "sku": "dwjs-16520",
+ "handle": "dwjs-16520",
+ "title": "Robert Moses Charcoal Wallcovering | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SS2589.jpg?v=1740772738",
+ "tags": [
+ "Abstract",
+ "Animal Print",
+ "Animal/Insects",
+ "Animals/Insects",
+ "Architectural",
+ "Asian Inspired",
+ "Bird",
+ "Birds",
+ "Black",
+ "Botanical",
+ "Branches",
+ "Charcoal",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Floral",
+ "Flowers",
+ "Grasscloth",
+ "Imperial Blossoms Branch",
+ "Jeffrey Stevens",
+ "Light",
+ "Light Duty",
+ "Light Traffic",
+ "Non-Woven",
+ "Paper",
+ "Pattern",
+ "Prepasted",
+ "SS2589",
+ "Strippable",
+ "Traditional",
+ "United States",
+ "vintage",
+ "Wallcovering",
+ "Warm",
+ "Washable",
+ "White",
+ "Whites & Off-Whites"
+ ],
+ "max_price": 93.14,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwjs-16520"
+ },
+ {
+ "sku": "dwc-1001684",
+ "handle": "dwc-1001684",
+ "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_4693312241715.jpg?v=1775521582",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Light Blue",
+ "NCW4394-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001684"
+ },
+ {
+ "sku": "gia-lavender-soft-stripe-wallpaper-cca-83054",
+ "handle": "gia-lavender-soft-stripe-wallpaper-cca-83054",
+ "title": "Gia Lavender Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7c6c431782b8ab65f3662b6f8fb5d3c7.jpg?v=1572309967",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Lavender",
+ "Non-Woven",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gia-lavender-soft-stripe-wallpaper-cca-83054"
+ },
+ {
+ "sku": "halifax-specialty-wallcovering-xlk-47776",
+ "handle": "halifax-specialty-wallcovering-xlk-47776",
+ "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-47776-sample-halifax-specialty-hollywood-wallcoverings.jpg?v=1775715774",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glamorous",
+ "Halifax Specialty Wallcovering",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Modern",
+ "Orange",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halifax-specialty-wallcovering-xlk-47776"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5511-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5511-jpg",
+ "title": "Resham - Glacier Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5511.jpg?v=1762304178",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Gray",
+ "Glacier Gray",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5511-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10416-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10416-jpg",
+ "title": "ST10416 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ST10415.jpg?v=1733872157",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gray",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10416-jpg"
+ },
+ {
+ "sku": "xanadu-s-retro-geometric-scr-8034",
+ "handle": "xanadu-s-retro-geometric-scr-8034",
+ "title": "Xanadu's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9e1efb5ed3cb7a3fb2c890e9f36998e7.jpg?v=1572309105",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Designer Wallcoverings",
+ "Geometric",
+ "Gray",
+ "Luxury Screen Printed Wallpapers",
+ "Mid-Century Modern",
+ "Paper",
+ "Screen Print",
+ "Turquoise",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1"
+ ],
+ "max_price": 271.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/xanadu-s-retro-geometric-scr-8034"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47954",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47954",
+ "title": "Maidstone - Storm 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-47954-sample-maidstone-storm-type-ii-vinyl-hollywood.jpg?v=1775723632",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Art Deco",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "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-47954"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10240-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10240-jpg",
+ "title": "SM10240 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_SM10239.jpg?v=1733872479",
+ "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_sm10240-jpg"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72152",
+ "handle": "cote-marine-durable-vinyl-dur-72152",
+ "title": "Cote Marine Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72152-sample-clean.jpg?v=1774484586",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72152"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st11387-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st11387-jpg",
+ "title": "ST11387 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st11386m.jpg?v=1733872122",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st11387-jpg"
+ },
+ {
+ "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": "grass-galore-specialty-grasscloth-wallpaper-grs-98614",
+ "handle": "grass-galore-specialty-grasscloth-wallpaper-grs-98614",
+ "title": "Grass Galore Specialty Grasscloth | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b296ce8734c98e09806160b25e22b324.jpg?v=1775081911",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Off-White",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Solid/Textural",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 39.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grass-galore-specialty-grasscloth-wallpaper-grs-98614"
+ },
+ {
+ "sku": "horse-shoe-contemporary-bay-durable-walls-xje-53722",
+ "handle": "horse-shoe-contemporary-bay-durable-walls-xje-53722",
+ "title": "Horse Shoe Contemporary Bay Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53722-sample-horse-shoe-contemporary-bay-durable-hollywood-wallcoverings.jpg?v=1775719216",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Pale Blue",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Year of the Horse"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/horse-shoe-contemporary-bay-durable-walls-xje-53722"
+ },
+ {
+ "sku": "harpswell-celery-herringbone-awning-stripe-wallpaper-cca-83155",
+ "handle": "harpswell-celery-herringbone-awning-stripe-wallpaper-cca-83155",
+ "title": "Harpswell Celery Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3e23f57ba913a2a09d1a32719597cb06_b97df9f8-be34-4448-bc96-92a8b2ab2437.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Celery",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Herringbone",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-celery-herringbone-awning-stripe-wallpaper-cca-83155"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dech-490-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dech-490-jpg",
+ "title": "Digital Echo - Soft Gray | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dech-490.jpg?v=1762290971",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Chevron",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Digital Echo",
+ "Geometric",
+ "Light Gray",
+ "Mylar",
+ "Paper",
+ "Silver",
+ "Soft Gray",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dech-490-jpg"
+ },
+ {
+ "sku": "robertocavalliwallpaper_dwrc16046-jpg",
+ "handle": "robertocavalliwallpaper_dwrc16046-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_dwrc16046.jpg?v=1587153720",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "European",
+ "Gray",
+ "Imported",
+ "Italian",
+ "Non-Woven",
+ "Purple",
+ "Roberto Cavalli Wallcovering",
+ "Texture",
+ "Textured",
+ "Volume 5",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/robertocavalliwallpaper_dwrc16046-jpg"
+ },
+ {
+ "sku": "cumberland-brown-wood-texture-wallpaper-cca-82905",
+ "handle": "cumberland-brown-wood-texture-wallpaper-cca-82905",
+ "title": "Cumberland Brown Wood Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/85fea40e7e6825d2c8d6e129e7794501.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Farmhouse",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Masculine",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Wood",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cumberland-brown-wood-texture-wallpaper-cca-82905"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49313",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49313",
+ "title": "Newcastle Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/belize-salt_water_9de91a37-3593-49bd-acee-801ce0cd1c8e.jpg?v=1777480335",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Organic Modern",
+ "Pale Gold",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49313"
+ },
+ {
+ "sku": "cloud-watching-small-mural-by-retro-walls-rtr-37229",
+ "handle": "cloud-watching-small-mural-by-retro-walls-rtr-37229",
+ "title": "Cloud Watching Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9d0716f86b09b58fe671f369ecb258f2.jpg?v=1572309702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Clouds",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Giraffe",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Ostrich",
+ "Paper",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cloud-watching-small-mural-by-retro-walls-rtr-37229"
+ },
+ {
+ "sku": "hollywood-modern-wood-xhw-2010213",
+ "handle": "hollywood-modern-wood-xhw-2010213",
+ "title": "Hollywood Modern Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/intarsia-engrave.jpg?v=1777481012",
+ "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",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Brown",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Grain",
+ "Wood Look"
+ ],
+ "max_price": 50.75,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-wood-xhw-2010213"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+ "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-58162-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725617",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Ecru",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Off-white",
+ "Organic Modern",
+ "Pale Blue",
+ "Pale Grey",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58162"
+ },
+ {
+ "sku": "dwkk-129769",
+ "handle": "dwkk-129769",
+ "title": "W3928 - 817 Black | Kravet Design | Ronald Redding Arts & Crafts | Botanical & Floral Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3928_817_fb3e22ce-ef33-4765-a717-2a47d6c3c7de.jpg?v=1753322313",
+ "tags": [
+ "27In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Botanical",
+ "Botanical & Floral",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Ronald Redding Arts & Crafts",
+ "Rose",
+ "Sage Green",
+ "Traditional",
+ "United States",
+ "W3928",
+ "W3928.817.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129769"
+ },
+ {
+ "sku": "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": "lovela-faux-vertical-durable-walls-xwo-53603",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53603",
+ "title": "Mansion Marble - Florencia Marble Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-jojoba.jpg?v=1777480885",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53603"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_sp9500-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp9500-jpg",
+ "title": "SP9500 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp9400.jpg?v=1733872429",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp9500-jpg"
+ },
+ {
+ "sku": "versace-metallic-stripe-cream-grey-wallcovering-versace",
+ "handle": "versace-metallic-stripe-cream-grey-wallcovering-versace",
+ "title": "Versace Metallic Stripe Cream, Grey Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/9652f61a0ded456208a3f8dd4d527555.jpg?v=1773706443",
+ "tags": [
+ "A.S. Création",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Italian",
+ "Living Room",
+ "Luxury",
+ "Paste the wall",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Metallic Stripe",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-metallic-stripe-cream-grey-wallcovering-versace"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93031",
+ "handle": "lucy-large-crocodile-croca-93031",
+ "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CROCA-93031-sample-clean_cead575a-9cb5-4606-884d-8b7fdd3f22a0.jpg?v=1774479224",
+ "tags": [
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "Jade",
+ "Light Gray",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Modern",
+ "Ocean",
+ "Office",
+ "Paper Backed Vinyl",
+ "Smoke",
+ "Solid",
+ "Sophisticated",
+ "Steel",
+ "Storm",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 37.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93031"
+ },
+ {
+ "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": "dwss-72765",
+ "handle": "dwss-72765",
+ "title": "Louis(border) Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/901-01_image1_47217ec6-fcb8-43b4-9963-0602c5085f8f.jpg?v=1646105368",
+ "tags": [
+ "Architectural",
+ "Black",
+ "Commercial",
+ "Geometric",
+ "Gray",
+ "Louis(border)",
+ "Louis(border) Sample",
+ "P901-01",
+ "Paper",
+ "Pattern",
+ "SAMPLE",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72765"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwk-52501",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwk-52501",
+ "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-52501-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733214",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwk-52501"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53392",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53392",
+ "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-vintage_28b3e393-7418-45ea-9cb7-d2444f317ac9.jpg?v=1777481331",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Coffee",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Luxe",
+ "Mahogany",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Rustic",
+ "Saddle Brown",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53392"
+ },
+ {
+ "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": "montpelier-wallpaper-xp4-68085",
+ "handle": "montpelier-wallpaper-xp4-68085",
+ "title": "Montpelier | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e779d0f252c8634abe32d7fd92d92d3f.jpg?v=1733882440",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Montpelier",
+ "Moody",
+ "Phillip Romano Commercial",
+ "Polyester",
+ "Rustic",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "wood pulp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68085"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5514-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5514-jpg",
+ "title": "Resham - Aquamarine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5514.jpg?v=1762304283",
+ "tags": [
+ "100% Vinyl",
+ "Aquamarine",
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "RAMPART®",
+ "Resham",
+ "Teal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5514-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm8008-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm8008-jpg",
+ "title": "SM8008 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm8007.jpg?v=1733872545",
+ "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_sm8008-jpg"
+ },
+ {
+ "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": "cottondale-contemporary-durable-vinyl-walls-xwp-52654",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52654",
+ "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-52654-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709279",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Estimated Type: Paper",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mid-century",
+ "Mid-century Modern",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52654"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10361-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10361-jpg",
+ "title": "Ambient Design - AD10361 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10360.jpg?v=1733874060",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10361-jpg"
+ },
+ {
+ "sku": "eloise-light-pink-damask-wallpaper-cca-82998",
+ "handle": "eloise-light-pink-damask-wallpaper-cca-82998",
+ "title": "Eloise Light Pink Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8367644df78d600386fb5fd48bd3f882.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Embossed Texture",
+ "Floral",
+ "LA Walls",
+ "Light Pink",
+ "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/eloise-light-pink-damask-wallpaper-cca-82998"
+ },
+ {
+ "sku": "sag-harbor-tussar-silk-wallcovering-phillipe-romano",
+ "handle": "sag-harbor-tussar-silk-wallcovering-phillipe-romano",
+ "title": "Sag Harbor - Tussar Silk Wallcovering | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Commercial Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mjvSsihP42D0NbrT9bdEWAn9DU53Pp5z1Dvszkry.jpg?v=1776190060",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim",
+ "Fire Rated",
+ "Full Roll",
+ "Geometric",
+ "Gray",
+ "Hollywood Vinyls Vol. 1",
+ "mfr:DWHV-101108",
+ "Mid-century Modern",
+ "Phillipe Romano",
+ "Sag Harbor",
+ "Vinyl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sag-harbor-tussar-silk-wallcovering-phillipe-romano"
+ },
+ {
+ "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": "eur-80307-ncw4301-designer-wallcoverings-los-angeles",
+ "handle": "eur-80307-ncw4301-designer-wallcoverings-los-angeles",
+ "title": "Beau Rivage 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_7513503105075.jpg?v=1775523281",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beau Rivage",
+ "Bedroom",
+ "Brown",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "LES REVES",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "NCW4301",
+ "NCW4301-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Taupe",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80307-ncw4301-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53387",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53387",
+ "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-harvest_0d68efa5-085b-4f6b-9490-4bb05b300f50.jpg?v=1777481543",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53387"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10353-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10353-jpg",
+ "title": "Ambient Design - AD10353 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10350.jpg?v=1733874084",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10353-jpg"
+ },
+ {
+ "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": "gironde-durable-vinyl-dur-72105",
+ "handle": "gironde-durable-vinyl-dur-72105",
+ "title": "Gironde Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72105-sample-clean.jpg?v=1774484407",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72105"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em10271b-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em10271b-jpg",
+ "title": "EM10271B | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_EM10270B.jpg?v=1733873311",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "EM10271B",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em10271b-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2759",
+ "handle": "faux-leaf-squares-fls-2759",
+ "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-2759-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712027",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2759"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47616",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47616",
+ "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-47616-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710448",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Earby Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Solid",
+ "Suede",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47616"
+ },
+ {
+ "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": "tommy-s-trees-tre200",
+ "handle": "tommy-s-trees-tre200",
+ "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/tre200-sample-tommy-s-trees-wallcovering-hollywood-wallcoverings.jpg?v=1775735296",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Scenic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Tree",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tommy-s-trees-tre200"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwp-52604",
+ "handle": "vanderbilt-durable-walls-xwp-52604",
+ "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-orchid.jpg?v=1777480658",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwp-52604"
+ },
+ {
+ "sku": "dwkk-128364",
+ "handle": "dwkk-128364",
+ "title": "Kravet Design - Steel Blue Commercial Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_15_0c57a7fa-6d88-42ca-a734-4b4607971c55.jpg?v=1753122301",
+ "tags": [
+ "36In",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Candice Olson Collection",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork",
+ "Cork - 100%",
+ "display_variant",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Korea",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Republic Of",
+ "Rustic",
+ "Texture",
+ "Textured",
+ "W3492-15",
+ "W3492.15.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128364"
+ },
+ {
+ "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": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+ "handle": "kent-sky-faux-grasscloth-wallpaper-cca-82927",
+ "title": "Kent Sky Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/09bbfba5dcb27d4e36cf2740877057cf.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Light Gray",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 44.11,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-sky-faux-grasscloth-wallpaper-cca-82927"
+ },
+ {
+ "sku": "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": "dwc-1001657",
+ "handle": "dwc-1001657",
+ "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_4693310799923.jpg?v=1775521403",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gold",
+ "NCW4356-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001657"
+ },
+ {
+ "sku": "eur-80114-ncw4120-designer-wallcoverings-los-angeles",
+ "handle": "eur-80114-ncw4120-designer-wallcoverings-los-angeles",
+ "title": "Holmwood 03 | Nina Campbell Europe",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496256563.jpg?v=1775522201",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Color: White",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Holmwood",
+ "Living Room",
+ "NCW4120",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Scroll",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80114-ncw4120-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dchy-562-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dchy-562-jpg",
+ "title": "Chrysocolla - Purple Quartz | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dchy-562.jpg?v=1762290900",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Chrysocolla",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Paper",
+ "Pink",
+ "Purple Quartz",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dchy-562-jpg"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72272",
+ "handle": "essone-durable-vinyl-dur-72272",
+ "title": "Essone Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72272-sample-clean.jpg?v=1774484966",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72272"
+ },
+ {
+ "sku": "eur-80170-ncw4156-designer-wallcoverings-los-angeles",
+ "handle": "eur-80170-ncw4156-designer-wallcoverings-los-angeles",
+ "title": "Montrose 05 - Pale Chartreuse Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498255411.jpg?v=1775522549",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Montrose",
+ "NCW4156",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Paper",
+ "ROSSLYN",
+ "Sage Green",
+ "Scroll",
+ "Sophisticated",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80170-ncw4156-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58092",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58092",
+ "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-58092-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734233",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Brown",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Brown",
+ "Dark Goldenrod",
+ "Dining Room",
+ "Embossed Texture",
+ "Geometric",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Living Room",
+ "Rustic",
+ "Scrim",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58092"
+ },
+ {
+ "sku": "constantino-crackle-vinyl-dwx-58082",
+ "handle": "constantino-crackle-vinyl-dwx-58082",
+ "title": "Constantino Crackle Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58082-sample-constantino-crackle-vinyl-hollywood-wallcoverings.jpg?v=1775708892",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Crackle",
+ "Distressed",
+ "Gray",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Modern",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/constantino-crackle-vinyl-dwx-58082"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48558",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48558",
+ "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-48558-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735694",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Ventnor Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48558"
+ },
+ {
+ "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": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47942",
+ "title": "Maidstone - Sand Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-grey_star.jpg?v=1777480137",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Silver",
+ "Stone Look",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47942"
+ },
+ {
+ "sku": "grimsby-type-ii-vinyl-wallcovering-xlh-47749",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47749",
+ "title": "Grimsby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlh-47749-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715011",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Slate Gray",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47749"
+ },
+ {
+ "sku": "dwss-72694",
+ "handle": "dwss-72694",
+ "title": "Margareta powder blue Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/811-26_image1_476bc423-2586-41e7-a4af-bd2065a7a94a.jpg?v=1646105100",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Nouveau",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Geometric",
+ "Light Gray",
+ "Margareta",
+ "Margareta powder blue Sample",
+ "P811-26",
+ "Paper",
+ "POWDER BLUE",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72694"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48114",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48114",
+ "title": "Olney Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmy-48114-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727705",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Olney Type 2 Vinyl",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48114"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72051",
+ "handle": "saint-helene-durable-vinyl-dur-72051",
+ "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-72051-sample-clean.jpg?v=1774484151",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72051"
+ },
+ {
+ "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": "jumping-small-mural-by-retro-walls-rtr-37251",
+ "handle": "jumping-small-mural-by-retro-walls-rtr-37251",
+ "title": "Jumping Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/fe09c14c08faf6ae322afac216d4b122.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Blue",
+ "Boy",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Horse",
+ "Insect",
+ "Multi",
+ "Mural",
+ "Orange",
+ "Scenic",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jumping-small-mural-by-retro-walls-rtr-37251"
+ },
+ {
+ "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": "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": "verwood-type-ii-vinyl-wallcovering-xqr-48580",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48580",
+ "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-48580-sample-clean.jpg?v=1774480659",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Black",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Concrete",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Grey",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Industrial",
+ "Living Room",
+ "Moody",
+ "Office",
+ "Rustic",
+ "Slate Grey",
+ "Solid",
+ "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-48580"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_grv-2899_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2899_8-jpg",
+ "title": "Grove - Wisteria | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2899_8.jpg?v=1762296488",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Grove",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wisteria",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2899_8-jpg"
+ },
+ {
+ "sku": "allen-grey-texture-wallpaper-wallpaper-cca-82899",
+ "handle": "allen-grey-texture-wallpaper-wallpaper-cca-82899",
+ "title": "Allen Grey Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/708a7c1958ec8e0d4d7efc3a86e12b05.jpg?v=1572309961",
+ "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/allen-grey-texture-wallpaper-wallpaper-cca-82899"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad9504-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad9504-jpg",
+ "title": "Ambient Design - AD9504 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9503.jpg?v=1733874158",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Industrial",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad9504-jpg"
+ },
+ {
+ "sku": "tere-trente-durable-vinyl-dur-72388",
+ "handle": "tere-trente-durable-vinyl-dur-72388",
+ "title": "Tere Trente Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72388-sample-clean.jpg?v=1774485325",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Tere Trente Durable Vinyl",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tere-trente-durable-vinyl-dur-72388"
+ },
+ {
+ "sku": "frank-s-faux-finish-fff-2933",
+ "handle": "frank-s-faux-finish-fff-2933",
+ "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-2933-sample-frank-s-faux-finish-wallpaper-hollywood-wallcoverings.jpg?v=1775714258",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Faux Finish",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Light Goldenrodyellow",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 36.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/frank-s-faux-finish-fff-2933"
+ },
+ {
+ "sku": "dwc-1001645",
+ "handle": "dwc-1001645",
+ "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_4693310210099.jpg?v=1775521331",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gold",
+ "NCW4353-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001645"
+ },
+ {
+ "sku": "minetta-contemporary-durable-vinyl-xwj-52461",
+ "handle": "minetta-contemporary-durable-vinyl-xwj-52461",
+ "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ruche-modern_fold.jpg?v=1777480623",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Mid-century",
+ "Mid-century Modern",
+ "Modern",
+ "Office",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52461"
+ },
+ {
+ "sku": "gianna-yellow-texture-wallpaper-wallpaper-cca-82881",
+ "handle": "gianna-yellow-texture-wallpaper-wallpaper-cca-82881",
+ "title": "Gianna Yellow Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/22babebda83573ef71e483c618bbc18a.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gianna-yellow-texture-wallpaper-wallpaper-cca-82881"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47227",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47227",
+ "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-47227-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702520",
+ "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",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47227"
+ },
+ {
+ "sku": "kittery-black-affinity-stria-wallpaper-cca-83138",
+ "handle": "kittery-black-affinity-stria-wallpaper-cca-83138",
+ "title": "Kittery Black Affinity Stria Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bee0f61feaa9b56559a566beece4fc89.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dark Gray",
+ "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/kittery-black-affinity-stria-wallpaper-cca-83138"
+ },
+ {
+ "sku": "dwss-72654",
+ "handle": "dwss-72654",
+ "title": "Simons Ang brown Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/708-89_image1_1e2ae305-849e-485a-bda7-c24cb9722fd6.jpg?v=1646104961",
+ "tags": [
+ "AI-Analyzed-v2",
+ "ANG BROWN",
+ "Architectural",
+ "Art Nouveau",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "P708-89",
+ "Paper",
+ "Pattern",
+ "Red",
+ "Sandberg",
+ "Simons",
+ "Simons Ang brown Sample",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72654"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53469",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53469",
+ "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-53469-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715887",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53469"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5020-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5020-jpg",
+ "title": "Shift - Stone | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5020.jpg?v=1762305965",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Light Brown",
+ "RAMPART®",
+ "Shift",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5020-jpg"
+ },
+ {
+ "sku": "faux-wild-rice-fwr-9368",
+ "handle": "faux-wild-rice-fwr-9368",
+ "title": "Faux Wild Rice | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fwr-9368-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712081",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 31.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9368"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58052",
+ "handle": "sunset-stone-vinyl-dwx-58052",
+ "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-58052-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735177",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Gray",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Faux Stone",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gray",
+ "Living Room",
+ "Natural Look",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Pale Beige",
+ "Rustic",
+ "Sage",
+ "Stone",
+ "Stucco",
+ "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/sunset-stone-vinyl-dwx-58052"
+ },
+ {
+ "sku": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+ "handle": "camila-moss-modern-damask-wallpaper-wallpaper-cca-82844",
+ "title": "Camila Moss Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f732d6dcd610b98c6c3fc5ab2da0a651.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Gold",
+ "Gray",
+ "LA Walls",
+ "Metallic",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Silver",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-moss-modern-damask-wallpaper-wallpaper-cca-82844"
+ },
+ {
+ "sku": "dwc-1001643",
+ "handle": "dwc-1001643",
+ "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_4693310144563.jpg?v=1775521318",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Gray",
+ "NCW4353-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001643"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47306",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47306",
+ "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-47306-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704239",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Orange",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47306"
+ },
+ {
+ "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": "gabriella-purple-ogge-busy-toss-wallpaper-wallpaper-cca-82865",
+ "handle": "gabriella-purple-ogge-busy-toss-wallpaper-wallpaper-cca-82865",
+ "title": "Gabriella Purple Ogge Busy Toss Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8635df56ece2d5742d4ee1247b5cb1a7.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leopard",
+ "Modern",
+ "Ogee",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gabriella-purple-ogge-busy-toss-wallpaper-wallpaper-cca-82865"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72223",
+ "handle": "saint-lore-durable-vinyl-dur-72223",
+ "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-72223-sample-clean.jpg?v=1774484800",
+ "tags": [
+ "Abstract",
+ "Aqua",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Turquoise",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72223"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_gai-5003-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_gai-5003-jpg",
+ "title": "Grain Plus - Silver Birch | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gai-5003.jpg?v=1762295271",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grain Plus",
+ "Light Gray",
+ "RAMPART®",
+ "Silver Birch",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_gai-5003-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9511-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9511-jpg",
+ "title": "ST9511 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9510.jpg?v=1733872240",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Paper",
+ "Red",
+ "ST9511",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9511-jpg"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47145",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47145",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47145-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775700894",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Ashbourne Type 2 Vinyl",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Khaki",
+ "Living Room",
+ "Minimalist",
+ "Pale Yellow",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47145"
+ },
+ {
+ "sku": "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": "eur-80200-ncw4185-designer-wallcoverings-los-angeles",
+ "handle": "eur-80200-ncw4185-designer-wallcoverings-los-angeles",
+ "title": "Mahayana 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_7513499435059.jpg?v=1775522720",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Light Silver",
+ "Living Room",
+ "Mahayana",
+ "Minimalist",
+ "Modern",
+ "NCW4185",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-Woven",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80200-ncw4185-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ikeley-type-ii-vinyl-wallcovering-xls-47823",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47823",
+ "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-47823-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719452",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Ivory",
+ "Living Room",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47823"
+ },
+ {
+ "sku": "dwkk-140664",
+ "handle": "dwkk-140664",
+ "title": "Little Magnolia - Emerald Green By G P & J Baker | Originals Wallcovering |Botanical & Floral Wallcovering",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP-BW45121_1_1cfbba7d-6829-4153-a178-3b6387845463.jpg?v=1753294515",
+ "tags": [
+ "20.488In",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Birds",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Butterflies",
+ "Chinoiserie",
+ "Chintz",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "G P & J Baker",
+ "GP & J Baker",
+ "Grandmillennial",
+ "Green",
+ "Light Green",
+ "Little Magnolia",
+ "Living Room",
+ "Mustard Yellow",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Red",
+ "Sage Green",
+ "Sp-Bw45121.1.0",
+ "Teal",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140664"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47092",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47092",
+ "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-47092-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699458",
+ "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",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47092"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53273",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53273",
+ "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-53273-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710169",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Tan",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53273"
+ },
+ {
+ "sku": "anahi-light-pink-forest-fauna-wallpaper-cca-82985",
+ "handle": "anahi-light-pink-forest-fauna-wallpaper-cca-82985",
+ "title": "Anahi Light Pink Forest Fauna Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8a4bc515949001796aa5e3fdc6fe8a04.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bird",
+ "Botanical",
+ "Commercial",
+ "Deer",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Flowers",
+ "LA Walls",
+ "Light Pink",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Rabbit",
+ "Series: Brewster",
+ "Strippable",
+ "Trees",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anahi-light-pink-forest-fauna-wallpaper-cca-82985"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52911",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52911",
+ "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-52911-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734453",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52911"
+ },
+ {
+ "sku": "jonesport-denim-cabin-stripe-wallpaper-cca-83180",
+ "handle": "jonesport-denim-cabin-stripe-wallpaper-cca-83180",
+ "title": "Jonesport Denim Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4e21c368c8681eb3d362d70e8382e903.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-denim-cabin-stripe-wallpaper-cca-83180"
+ },
+ {
+ "sku": "dwc-1001625",
+ "handle": "dwc-1001625",
+ "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_4693309227059.jpg?v=1775521197",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Medallion",
+ "NCW4350-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paisley",
+ "Paper",
+ "Red",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001625"
+ },
+ {
+ "sku": "camila-black-modern-damask-wallpaper-wallpaper-cca-82845",
+ "handle": "camila-black-modern-damask-wallpaper-wallpaper-cca-82845",
+ "title": "Camila Black Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b2b960498e0ed9d8d628cb4a9ed18e7.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Dark Olive",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Modern",
+ "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/camila-black-modern-damask-wallpaper-wallpaper-cca-82845"
+ },
+ {
+ "sku": "dwc-1001626",
+ "handle": "dwc-1001626",
+ "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_4693309259827.jpg?v=1775521204",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Light Gray",
+ "NCW4350-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001626"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72014",
+ "handle": "marseilles-durable-vinyl-dur-72014",
+ "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-72014-sample-clean.jpg?v=1774483977",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "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-72014"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kam-5107-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kam-5107-jpg",
+ "title": "Kami - Iron | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kam-5107.jpg?v=1762298572",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Gray",
+ "Iron",
+ "Kami",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kam-5107-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_fdn-5409-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_fdn-5409-jpg",
+ "title": "Foundation - Alabaster | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fdn-5409.jpg?v=1762294468",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Alabaster",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Foundation",
+ "Gray",
+ "Light Gray",
+ "RAMPART®",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_fdn-5409-jpg"
+ },
+ {
+ "sku": "ncw4304-04",
+ "handle": "ncw4304-04",
+ "title": "Les Rêves Marguerite Chocolate/Orange - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262346291.jpg?v=1775520302",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "Multi",
+ "NCW4304-04",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Orange",
+ "Paper",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4304-04"
+ },
+ {
+ "sku": "cesare-acoustical-walls-act-73255",
+ "handle": "cesare-acoustical-walls-act-73255",
+ "title": "Cesare Acoustical Walls",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/88a674e21f6df68315b8d8cb0396deae.jpg?v=1572309803",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Cesare Acoustical Walls",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Brown",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Rustic",
+ "Sand",
+ "Solid",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-act-73255"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47648",
+ "handle": "fairford-vinyl-wallcovering-xlb-47648",
+ "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-47648-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711362",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47648"
+ },
+ {
+ "sku": "route-66-car-wallpaper-scr-7923",
+ "handle": "route-66-car-wallpaper-scr-7923",
+ "title": "Route 66 Car Wallcovering",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4ba93629c619d6a45a0975b13990731b.jpg?v=1572309084",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Greens White",
+ "Light Green",
+ "Paper",
+ "Route 66 Car Wallcovering",
+ "Scenic",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/route-66-car-wallpaper-scr-7923"
+ },
+ {
+ "sku": "pauline-s-retro-geometric-scr-8006",
+ "handle": "pauline-s-retro-geometric-scr-8006",
+ "title": "Pauline's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/44b5e21c2389e4f3126e32e35763be1b.jpg?v=1572309104",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Floral",
+ "Geometric",
+ "Light Gray",
+ "Mid-Century Modern",
+ "Paper",
+ "Pauline's Retro Geometric",
+ "Screen Print",
+ "Silver",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White",
+ "White Silver"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pauline-s-retro-geometric-scr-8006"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48280",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48280",
+ "title": "Rushden Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/roanoke-dove_844be81c-cbe9-45ab-9715-b27cb2eca298.jpg?v=1777481236",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Grey",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Pale Grey",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48280"
+ },
+ {
+ "sku": "eur-80370-ncw4353-designer-wallcoverings-los-angeles",
+ "handle": "eur-80370-ncw4353-designer-wallcoverings-los-angeles",
+ "title": "Colbert 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_7513505693747.jpg?v=1775523659",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Colbert",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "LES INDIENNES",
+ "Multi",
+ "NCW4353",
+ "NCW4353-06",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Taupe",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80370-ncw4353-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73076",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73076",
+ "title": "Waterlily Drive - Metal and Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73076-sample-clean.jpg?v=1774483358",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Wood",
+ "Floral",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73076"
+ },
+ {
+ "sku": "kingston-watercolor-jacobean-wallpaper-trf-56810",
+ "handle": "kingston-watercolor-jacobean-wallpaper-trf-56810",
+ "title": "Kingston Watercolor Jacobean | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/967ae46990a02cafdd06ecae711e4ea8.jpg?v=1750789778",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "blue/green",
+ "Botanical",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Green",
+ "dark teal",
+ "Discontinued",
+ "exotic",
+ "floral",
+ "flower",
+ "Green",
+ "Jacobean",
+ "Jeffrey Stevens",
+ "large scale",
+ "leaf",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "off white",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "Sage Green",
+ "Series: York",
+ "Teal",
+ "Traditional",
+ "tropical",
+ "USA",
+ "vine",
+ "Wallcovering",
+ "watercolor",
+ "YB-Discontinued-2026-04",
+ "yellow green"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kingston-watercolor-jacobean-wallpaper-trf-56810"
+ },
+ {
+ "sku": "vanessa-white-henna-brocade-wallpaper-wallpaper-cca-82836",
+ "handle": "vanessa-white-henna-brocade-wallpaper-wallpaper-cca-82836",
+ "title": "Vanessa White Henna Brocade Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/45766882022ade37d5794a6580198513.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Kids",
+ "LA Walls",
+ "Modern",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanessa-white-henna-brocade-wallpaper-wallpaper-cca-82836"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st10418m-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st10418m-jpg",
+ "title": "ST10418M | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st10416.jpg?v=1733872155",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st10418m-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ar10393xl-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ar10393xl-jpg",
+ "title": "Armor Paint XL - AR10393XL | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ar10392xl.jpg?v=1733873818",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ar10393xl-jpg"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47387",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47387",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/858bf2aef3f6d89b6cbecbfa5bb2f0f0.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Polyester",
+ "Serene",
+ "Smoke Gray",
+ "Stripe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47387"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53464",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53464",
+ "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-53464-sample-clean.jpg?v=1774482092",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Sienna",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53464"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72055",
+ "handle": "saint-helene-durable-vinyl-dur-72055",
+ "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-72055-sample-clean.jpg?v=1774484174",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72055"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53207",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53207",
+ "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53207-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710082",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Daytona Faux Contemporary Durable",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Blue",
+ "Living Room",
+ "Pale Blue",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53207"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832",
+ "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-bronze_age.jpg?v=1777480703",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52832"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73010",
+ "handle": "benedict-canyon-sisal-hlw-73010",
+ "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-73010-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703736",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Oatmeal",
+ "Organic Modern",
+ "Sage",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73010"
+ },
+ {
+ "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": "hardee-embossed-contemporary-durable-walls-xwy-53112",
+ "handle": "hardee-embossed-contemporary-durable-walls-xwy-53112",
+ "title": "Hardee Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwy-53112-sample-hardee-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775716043",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hardee-embossed-contemporary-durable-walls-xwy-53112"
+ },
+ {
+ "sku": "dwc-1001634",
+ "handle": "dwc-1001634",
+ "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_4693309751347.jpg?v=1775521255",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Green",
+ "NCW4351-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001634"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_act-5071-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_act-5071-jpg",
+ "title": "Acute - Gold | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/act-5071.jpg?v=1762357908",
+ "tags": [
+ "100% Vinyl",
+ "Acute",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Geometric",
+ "Goldenrod",
+ "Khaki",
+ "Lattice",
+ "Paper",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_act-5071-jpg"
+ },
+ {
+ "sku": "eur-80295-ncw4277-designer-wallcoverings-los-angeles",
+ "handle": "eur-80295-ncw4277-designer-wallcoverings-los-angeles",
+ "title": "Meredith 05 - Celadon Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502613555.jpg?v=1775523218",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "COROMANDEL",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Light Sage",
+ "Living Room",
+ "Meredith",
+ "NCW4277",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Green",
+ "Paper",
+ "Sage",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80295-ncw4277-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "palazzo-lane-wood-metal-chevron-hlw-73066",
+ "handle": "palazzo-lane-wood-metal-chevron-hlw-73066",
+ "title": "Palazzo Lane - Wood & Metal Chevron | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73066-sample-clean.jpg?v=1774483307",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux Wood",
+ "Geometric",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturally Glamorous",
+ "Palazzo Lane",
+ "Serene",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 31.09,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/palazzo-lane-wood-metal-chevron-hlw-73066"
+ },
+ {
+ "sku": "corsham-acoustical-wallcovering-xku-47548",
+ "handle": "corsham-acoustical-wallcovering-xku-47548",
+ "title": "Corsham Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/eb9313b68f2b5fcdb49a0933d1321f42.jpg?v=1572310057",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fabric",
+ "Fabric-backed Vinyl",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Organic Modern",
+ "Polyester",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corsham-acoustical-wallcovering-xku-47548"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..2dd7117
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,852 @@
+{
+ "name": "hotelwallcoverings",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "hotelwallcoverings",
+ "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..3f6f871
--- /dev/null
+++ b/package.json
@@ -0,0 +1,13 @@
+{
+ "name": "hotelwallcoverings",
+ "version": "0.1.0",
+ "description": "HOTEL WALLCOVERINGS — 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..0edfd2b
--- /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">H</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..d67a6d2
--- /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>HOTEL WALLCOVERINGS — The room speaks</title>
+<meta name="description" content="HOTEL WALLCOVERINGS · The room speaks. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0a0a14">
+<link rel="canonical" href="https://hotelwallcoverings.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: #0a0a14;
+ --paper: #ffffff;
+ --muted: #a89a82;
+ --line: rgba(255,255,255,0.10);
+ --accent: #d4a847;
+ --bg-soft: #141828;
+ --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('hotel_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">Hospitality-Grade</div>
+ <div class="center-mark">HOTEL WALLCOVERINGS<span class="tm">.</span><span class="sub">The room speaks</span></div>
+ <div class="meta-line">Hotel · Lobby · Guestroom · Mural<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">Hotel · Lobby · Guestroom · Mural</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">HOTEL WALLCOVERINGS</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated hotel · lobby · guestroom · mural from heritage mills, fulfilled through the DW trade channel — memo samples ship free.</p>
+ <p class="footer-text" style="margin-top:14px;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;font-weight:600;color:var(--paper);opacity:0.7">DesignerWallcoverings.com — Authorized Trade Channel</p>
+ </div>
+ <div class="footer-col">
+ <h4>Aesthetic</h4>
+ <div id="footerFacets"></div>
+ </div>
+ <div class="footer-col">
+ <h4>Trade</h4>
+ <button onclick="dwmOpen('Inquiry')">Project Inquiry</button>
+ <button onclick="dwmOpen('Sample')">Request Sample</button>
+ <button onclick="dwmOpen('Contact')">Contact</button>
+ </div>
+ </div>
+ <!-- mini-constellation: every storefront shows its position in the family -->
+ <div style="max-width:1400px;margin:0 auto 24px;padding:32px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)">
+ <div style="display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:12px;margin-bottom:18px">
+ <div>
+ <div style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:6px">★ DW FAMILY · 43 niches</div>
+ <div style="font-family:'Playfair Display',Georgia,serif;font-style:italic;font-size:18px;color:var(--paper);letter-spacing:0.01em">You're on <span style="color:var(--accent);font-weight:500">hotelwallcoverings</span>. Hover any star to leap.</div>
+ </div>
+ <a href="https://retrowalls.com/universe/" target="_blank" rel="noopener" style="font-size:10px;letter-spacing:0.32em;text-transform:uppercase;color:var(--accent);font-weight:600;text-decoration:none;border:1px solid var(--accent);padding:8px 14px">DW Universe →</a>
+ </div>
+ <svg id="miniConst" viewBox="0 0 1080 200" style="width:100%;height:200px;display:block" role="img" aria-label="DW family constellation: 43 niche sites; current site highlighted">
+ <defs>
+ <pattern id="dna-mat" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(45)"><line x1="0" y1="0" x2="0" y2="5" stroke="#c9b687" stroke-width="0.6"/></pattern>
+ <pattern id="dna-dec" width="8" height="5" patternUnits="userSpaceOnUse"><polyline points="0,4 4,1 8,4" stroke="#b86a4a" stroke-width="0.6" fill="none"/></pattern>
+ <pattern id="dna-cra" width="5" height="5" patternUnits="userSpaceOnUse" patternTransform="rotate(-30)"><line x1="0" y1="2.5" x2="5" y2="2.5" stroke="#6b8e6f" stroke-width="0.5" stroke-dasharray="1.4 1.2"/></pattern>
+ <pattern id="dna-use" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M0 0 L4 0 M0 0 L0 4" stroke="#4a6b8e" stroke-width="0.4" fill="none"/></pattern>
+ </defs>
+ </svg>
+ <div style="display:flex;justify-content:space-between;font-size:9px;letter-spacing:0.32em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:6px;padding:0 8px">
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#c9b687;border-radius:50%"></i>Material</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#b86a4a;border-radius:50%"></i>Decade</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#6b8e6f;border-radius:50%"></i>Craft</span>
+ <span style="display:flex;align-items:center;gap:5px"><i style="display:inline-block;width:6px;height:6px;background:#4a6b8e;border-radius:50%"></i>Use-case</span>
+ </div>
+ </div>
+
+ <div class="footer-bottom">
+ <span>hotelwallcoverings.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 = "hotelwallcoverings";
+ const NICHES = [
+ ['silkwallpaper','Silk','mat'],['silkwallcoverings','Silk W/C','mat'],['linenwallpaper','Linen','mat'],
+ ['jutewallpaper','Jute','mat'],['raffiawallcoverings','Raffia W/C','mat'],['raffiawalls','Raffia Walls','mat'],
+ ['corkwallcovering','Cork','mat'],['fabricwallpaper','Fabric','mat'],['textilewallpaper','Textile','mat'],
+ ['metallicwallpaper','Metallic','mat'],['silverleafwallpaper','Silver Leaf','mat'],['vinylwallpaper','Vinyl','mat'],
+ ['micawallpaper','Mica','mat'],['madagascarwallpaper','Madagascar','mat'],['mylarwallpaper','Mylar','mat'],
+ ['suedewallpaper','Suede','mat'],
+ ['1800swallpaper','1800s','dec'],['1890swallpaper','1890s','dec'],['1900swallpaper','1900s','dec'],
+ ['1920swallpaper','1920s','dec'],['1930swallpaper','1930s','dec'],['1940swallpaper','1940s','dec'],
+ ['1950swallpaper','1950s','dec'],['1960swallpaper','1960s','dec'],['1970swallpaper','1970s','dec'],
+ ['1980swallpaper','1980s','dec'],['retrowalls','Retro','dec'],['wallpapersback','W. Back','dec'],
+ ['agedwallpaper','Aged','cra'],['handcraftedwallpaper','Handcrafted','cra'],['museumwallpaper','Museum','cra'],
+ ['restorationwallpaper','Restoration','cra'],['pastelwallpaper','Pastel','cra'],['glitterwalls','Glitter','cra'],
+ ['greenwallcoverings','Green','cra'],['naturalwallcoverings','Natural','cra'],['saloonwallpaper','Saloon','cra'],
+ ['contractwallpaper','Contract','use'],['hotelwallcoverings','Hotel','use'],['hospitalitywallpaper','Hospitality','use'],
+ ['healthcarewallpaper','Healthcare','use'],['restaurantwallpaper','Restaurant','use'],['architecturalwallcoverings','Architectural','use']
+ ];
+ const COLOR = { mat:'#c9b687', dec:'#b86a4a', cra:'#6b8e6f', use:'#4a6b8e' };
+ const W = 1080, H = 200, BANDS = ['mat','dec','cra','use'];
+ const groups = { mat:[], dec:[], cra:[], use:[] };
+ for (const n of NICHES) groups[n[2]].push(n);
+ const svg = document.getElementById('miniConst');
+ if (!svg) return;
+ const bandW = W / BANDS.length;
+ let nodes = '';
+ BANDS.forEach((band, bi) => {
+ const list = groups[band];
+ const cx = bi * bandW + bandW / 2;
+ list.forEach((n, i) => {
+ const t = list.length === 1 ? 0.5 : i / (list.length - 1);
+ // deterministic jitter per slug
+ let h = 0; for (let k = 0; k < n[0].length; k++) h = (h * 31 + n[0].charCodeAt(k)) | 0;
+ const jx = ((h & 0xff) / 255 - 0.5) * (bandW * 0.5);
+ const jy = (((h >> 8) & 0xff) / 255 - 0.5) * 14;
+ const x = cx + jx, y = 28 + t * (H - 56) + jy;
+ const isCurrent = n[0] === SLUG;
+ const r = isCurrent ? 8 : 4;
+ const op = isCurrent ? 1 : 0.55;
+ nodes += `<g class="mc-node" data-slug="${n[0]}" data-label="${n[1]}" style="cursor:pointer">
+ <circle cx="${x}" cy="${y}" r="${r}" fill="url(#dna-${band})" fill-opacity="${op}" stroke="${COLOR[band]}" stroke-opacity="${isCurrent?1:0.7}" stroke-width="${isCurrent?2:1}">
+ <title>${n[1]} — ${n[0]}.com</title>
+ </circle>
+ ${isCurrent ? `<circle cx="${x}" cy="${y}" r="${r+5}" fill="none" stroke="${COLOR[band]}" stroke-opacity="0.4" stroke-width="1"><animate attributeName="r" values="${r+5};${r+12};${r+5}" dur="2.4s" repeatCount="indefinite"/><animate attributeName="stroke-opacity" values="0.4;0;0.4" dur="2.4s" repeatCount="indefinite"/></circle>` : ''}
+ </g>`;
+ });
+ });
+ // append nodes after defs
+ svg.insertAdjacentHTML('beforeend', nodes);
+ svg.querySelectorAll('.mc-node').forEach(n => {
+ n.addEventListener('mouseenter', () => n.querySelector('circle').setAttribute('fill-opacity', '1'));
+ n.addEventListener('mouseleave', e => {
+ const isCurrent = n.dataset.slug === SLUG;
+ n.querySelector('circle').setAttribute('fill-opacity', isCurrent ? '1' : '0.55');
+ });
+ n.addEventListener('click', () => window.open('https://' + n.dataset.slug + '.com', '_blank'));
+ });
+})();
+</script>
+
+<script>
+const state = { q:'', facet:'all', page:1, pages:1, total:0, loading:false, exhausted:false };
+const LABELS = {"all":"All"};
+
+function escAttr(s) { return String(s == null ? '' : s).replace(/[&<>"']/g, c => ({ '&':'&','<':'<','>':'>','"':'"',"'":''' }[c])); }
+// Image-URL allowlist: only DW Shopify CDN + designerwallcoverings.com (defends against XSS via crafted products.json)
+function safeImg(u) { return /^https:\/\/(?:cdn\.shopify\.com|designerwallcoverings\.com)\//.test(u || '') ? u : '/hero-bg.jpg'; }
+function cardHTML(p) {
+ return '<img loading="lazy" src="' + escAttr(safeImg(p.image_url)) + '" alt="' + escAttr(p.title) + '">'
+ + '<div class="overlay">'
+ + '<div class="pat">' + escAttr(p.pattern_name || p.title) + '</div>'
+ + '<div class="ven">' + escAttr((p.vendor || '').replace(/-/g, ' ')) + '</div>'
+ + '<div class="actions">'
+ + '<button class="sample-btn" onclick="event.stopPropagation();dwmOpen(\'Sample\',' + JSON.stringify({sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}).replace(/"/g,'"') + ')">Sample</button>'
+ + '</div></div>';
+}
+
+async function loadFacets() {
+ let f;
+ try {
+ const r = await fetch('/api/facets');
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ f = await r.json();
+ } catch (e) { console.error('loadFacets failed:', e); return; }
+ const el = document.getElementById('facets');
+ for (const [k, v] of Object.entries(f.aesthetics).sort((a,b) => b[1] - a[1])) {
+ const b = document.createElement('button');
+ b.className = 'chip'; b.dataset.facet = k;
+ b.innerHTML = (LABELS[k] || k) + ' <span style="opacity:.55;font-weight:500;margin-left:4px">' + v + '</span>';
+ el.appendChild(b);
+ }
+ el.addEventListener('click', e => {
+ if (e.target.tagName !== 'BUTTON') return;
+ document.querySelectorAll('#facets button').forEach(b => b.classList.remove('active'));
+ e.target.classList.add('active');
+ state.facet = e.target.dataset.facet;
+ resetGrid();
+ });
+ document.getElementById('totalCount').textContent = f.total;
+ document.getElementById('footerStat').textContent = f.total + ' patterns · live archive';
+ // Footer aesthetic links
+ const footerEl = document.getElementById('footerFacets');
+ for (const [k] of Object.entries(f.aesthetics)) {
+ const b = document.createElement('button');
+ b.textContent = LABELS[k] || k;
+ b.onclick = () => { state.facet = k; resetGrid(); document.querySelectorAll('#facets button').forEach(x => x.classList.toggle('active', x.dataset.facet === k)); document.getElementById('shop').scrollIntoView({behavior:'smooth'}); };
+ footerEl.appendChild(b);
+ }
+}
+
+function resetGrid() {
+ state.page = 1; state.exhausted = false;
+ document.getElementById('grid').innerHTML = '';
+ document.getElementById('loading').textContent = 'Loading…';
+ loadGridPage();
+}
+
+async function loadGridPage() {
+ if (state.loading || state.exhausted) return;
+ state.loading = true;
+ const params = new URLSearchParams({ page:state.page, limit:24 });
+ if (state.q) params.set('q', state.q);
+ if (state.facet !== 'all') params.set('aesthetic', state.facet);
+ let data;
+ try {
+ const r = await fetch('/api/products?' + params);
+ if (!r.ok) throw new Error('HTTP ' + r.status);
+ data = await r.json();
+ } catch (e) {
+ console.error('loadGridPage failed:', e);
+ document.getElementById('loading').textContent = '— offline — refresh to retry —';
+ state.loading = false;
+ return;
+ }
+ state.total = data.total; state.pages = data.pages;
+
+ if (state.page === 1) {
+ document.getElementById('statLine').textContent = data.total + ' patterns · ' + (state.facet === 'all' ? 'all aesthetics' : (LABELS[state.facet] || state.facet)) + (state.q ? ' · matching "' + state.q + '"' : '');
+ }
+ const grid = document.getElementById('grid');
+ for (const p of data.items) {
+ const a = document.createElement('a');
+ a.className = 'card'; a.href = '#'; a.onclick = (e) => { e.preventDefault(); dwmOpen('Sample',{sku:p.sku||p.handle, title:p.title, image_url:safeImg(p.image_url)}); };
+ a.innerHTML = cardHTML(p);
+ grid.appendChild(a);
+ }
+ if (state.page >= state.pages || data.items.length === 0) {
+ state.exhausted = true;
+ document.getElementById('loading').textContent = state.total > 0 ? '— end of archive · ' + state.total + ' patterns —' : '';
+ } else state.page++;
+ state.loading = false;
+}
+
+const io = new IntersectionObserver(es => { for (const e of es) if (e.isIntersecting) loadGridPage(); }, { rootMargin:'600px 0px' });
+io.observe(document.getElementById('sentinel'));
+
+document.getElementById('searchInput').addEventListener('input', e => {
+ state.q = e.target.value.trim();
+ clearTimeout(window._t);
+ window._t = setTimeout(resetGrid, 220);
+});
+
+// Density slider
+const slider = document.getElementById('densitySlider');
+const dlabel = document.getElementById('densityLabel');
+function setDensity(n) {
+ document.documentElement.style.setProperty('--cols', n);
+ dlabel.textContent = n + ' cols';
+ try { localStorage.setItem('hotel_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('hotel_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('hotel_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..75c51fb
--- /dev/null
+++ b/server.js
@@ -0,0 +1,110 @@
+/**
+ * HOTEL WALLCOVERINGS — 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 || 9851;
+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: "Hotel Wallcoverings", zdColor: "#d4a847", zdPosition: 'right' });
+require('./_universal-auth')(app, { siteName: "hotelwallcoverings" });
+
+app.use(express.static(path.join(__dirname, 'public')));
+
+app.get('/api/products', (req, res) => {
+ const { q, aesthetic, vendor, page = 1, limit = 24 } = req.query;
+ let list = PRODUCTS;
+ if (q) {
+ const needle = q.toLowerCase();
+ list = list.filter(p => (p.title || '').toLowerCase().includes(needle) || (p.tags || []).some(t => t.toLowerCase().includes(needle)));
+ }
+ if (aesthetic && aesthetic !== 'all') list = list.filter(p => p.aesthetic === aesthetic);
+ if (vendor && vendor !== 'all') list = list.filter(p => p.vendor === vendor);
+ const total = list.length;
+ const pageNum = Math.max(1, parseInt(page) || 1);
+ const lim = Math.min(60, parseInt(limit) || 24);
+ const start = (pageNum - 1) * lim;
+ res.json({ total, page: pageNum, limit: lim, pages: Math.ceil(total / lim), items: list.slice(start, start + lim) });
+});
+
+app.get('/api/sliders', (req, res) => {
+ const SLIDER_AESTHETICS = ["mural","jungle","chinoiserie","deco","botanical","metallic"];
+ 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://hotelwallcoverings.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://hotelwallcoverings.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(`hotelwallcoverings listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..34e5d00
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,21 @@
+{
+ "slug": "hotelwallcoverings",
+ "siteName": "Hotel Wallcoverings",
+ "domain": "hotelwallcoverings.com",
+ "nicheKeyword": "hotel",
+ "tagline": "Guestroom and lobby wallcoverings.",
+ "heroHeadline": "HOTEL WALLCOVERINGS",
+ "heroSub": "Guestroom and lobby wallcoverings.",
+ "theme": {
+ "accent": "#d4a847"
+ },
+ "rails": [
+ "lobby",
+ "guestroom",
+ "suite",
+ "corridor",
+ "spa",
+ "contract"
+ ],
+ "port": 9910
+}
(oldest)
·
back to Hotelwallcoverings
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero 58da5e9 →