← back to Greenwallcoverings
initial scaffold (gitify-all 2026-05-06)
09b9d235a230b7c3ab7bc98b74f86b77744db5c5 · 2026-05-06 10:25:30 -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 09b9d235a230b7c3ab7bc98b74f86b77744db5c5
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:30 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 | 24740 ++++++++++++++++++++++++++++++++++++++++++++++++
package-lock.json | 865 ++
package.json | 14 +
public/favicon.svg | 4 +
public/hero-bg.jpg | Bin 0 -> 372450 bytes
public/index.html | 613 ++
server.js | 107 +
site.config.json | 20 +
11 files changed, 26671 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..149ccf7
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,24740 @@
+[
+ {
+ "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": "puna-drive-natural-grassweave-hlw-73126",
+ "handle": "puna-drive-natural-grassweave-hlw-73126",
+ "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-73126-sample-clean.jpg?v=1774483590",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73126"
+ },
+ {
+ "sku": "kent-red-faux-grasscloth-wallpaper-cca-82928",
+ "handle": "kent-red-faux-grasscloth-wallpaper-cca-82928",
+ "title": "Kent Red Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0445bac5a661010bacc56a05dc844cc9.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "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-red-faux-grasscloth-wallpaper-cca-82928"
+ },
+ {
+ "sku": "dwkk-115518",
+ "handle": "dwkk-115518",
+ "title": "Newton - Linen | Kravet Couture | Andrew Martin Navigator | Novelty Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AMW10044_16_ef2f8e24-41d2-4842-8334-7cadaf46988e.jpg?v=1753123155",
+ "tags": [
+ "20.5In",
+ "Amw10044.16.0",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Brown",
+ "Champagne",
+ "Commercial",
+ "Dark Academia",
+ "display_variant",
+ "Eclectic",
+ "Geometric",
+ "Hallway",
+ "Italy",
+ "Kravet",
+ "Kravet Couture",
+ "Linen",
+ "Living Room",
+ "Newton",
+ "Novelty",
+ "Office",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Sophisticated",
+ "Taupe",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-115518"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52115",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52115",
+ "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-52115-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707121",
+ "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",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Beige",
+ "Linear",
+ "Living Room",
+ "Olive Green",
+ "Organic Modern",
+ "Pale Beige",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "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-stripe-texture-durable-walls-xwd-52115"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53314",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53314",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53314-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710784",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53314"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44003",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44003",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44003-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701944",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44003"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44014",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44014",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44014-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701982",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44014"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52113",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52113",
+ "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-52113-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707114",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linear",
+ "Living Room",
+ "Pattern",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52113"
+ },
+ {
+ "sku": "chinese-fret-walls-cfw-9487",
+ "handle": "chinese-fret-walls-cfw-9487",
+ "title": "Chinese Fret | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cfw-9487-sample-chinese-fret-hollywood-wallcoverings.jpg?v=1775708056",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Elegant Vinyls Vol. 1",
+ "Fretwork",
+ "Geometric",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Tan",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chinese-fret-walls-cfw-9487"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53316",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53316",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53316-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710801",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53316"
+ },
+ {
+ "sku": "marelle-jasper-white-romo",
+ "handle": "marelle-jasper-white-romo",
+ "title": "Marelle Jasper White | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW163-01-marelle-wallcovering-jasper-white_01.jpg?v=1776398680",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Collage IV",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Lobby",
+ "Marelle",
+ "Medium",
+ "MW163/01",
+ "Natural",
+ "Office",
+ "Reception Area",
+ "Romo",
+ "Soft White",
+ "Stripe",
+ "tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm Taupe",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marelle-jasper-white-romo"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2900_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2900_8-jpg",
+ "title": "Grove - Taupe | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2900_8.jpg?v=1762296526",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Grasscloth",
+ "Grove",
+ "Light Brown",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2900_8-jpg"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53614",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53614",
+ "title": "Lovela Faux Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-painted_desert.jpg?v=1777480902",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Rustic",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53614"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72158",
+ "handle": "st-silken-durable-vinyl-dur-72158",
+ "title": "St. Silken Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72158-sample-clean.jpg?v=1774484612",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72158"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6204",
+ "handle": "le-embossed-faux-grasscloth-xgr-6204",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6204-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721640",
+ "tags": [
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6204"
+ },
+ {
+ "sku": "faux-wild-rice-fwr-9370",
+ "handle": "faux-wild-rice-fwr-9370",
+ "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-9370-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712087",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Faux Finish",
+ "Faux Wild Rice",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Textured",
+ "vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 31.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9370"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53602",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53602",
+ "title": "Mansion Marble - Purple Majesty Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53602-sample-lovela-faux-vertical-durable-hollywood-wallcoverings.jpg?v=1775723097",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53602"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73059",
+ "handle": "coldwater-hills-panels-hlw-73059",
+ "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-73059-sample-clean.jpg?v=1774483263",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Brown",
+ "Brushstroke",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Non-woven",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Watercolor",
+ "Zen"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73059"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53062",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53062",
+ "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-53062-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703542",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53062"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201074",
+ "handle": "hollywood-skyline-xhw-201074",
+ "title": "Hollywood Skyline | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/bentley-verdant.jpg?v=1777480934",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Gray",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 62.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201074"
+ },
+ {
+ "sku": "locatoca-durable-vinyl-dur-72452",
+ "handle": "locatoca-durable-vinyl-dur-72452",
+ "title": "Locatoca Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72452-sample-clean.jpg?v=1774485635",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/locatoca-durable-vinyl-dur-72452"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53161",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53161",
+ "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-coconut_0b1d474f-6793-4daa-a5c4-df273162d2be.jpg?v=1777481119",
+ "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",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Ivory",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-White",
+ "Organic Modern",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "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": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53161"
+ },
+ {
+ "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": "benedict-canyon-sisal-hlw-73023",
+ "handle": "benedict-canyon-sisal-hlw-73023",
+ "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-73023-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703748",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal Gray",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73023"
+ },
+ {
+ "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": "la-roche-durable-vinyl-dur-72074",
+ "handle": "la-roche-durable-vinyl-dur-72074",
+ "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-72074-sample-clean.jpg?v=1774484291",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "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",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Silver Gray",
+ "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-72074"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52224",
+ "handle": "jones-faux-grass-durable-walls-xwf-52224",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52224-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719961",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52224"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52091",
+ "handle": "canal-texture-durable-walls-xwa-52091",
+ "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-maize.jpg?v=1777480393",
+ "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",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52091"
+ },
+ {
+ "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": "steuben-navy-turf-stripe-wallpaper-cca-83173",
+ "handle": "steuben-navy-turf-stripe-wallpaper-cca-83173",
+ "title": "Steuben Navy Turf Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/766f75af44f34600aec8b45f23f75a5a.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Linen",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Steuben Navy Turf Stripe Wallcovering",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-navy-turf-stripe-wallpaper-cca-83173"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52223",
+ "handle": "jones-faux-grass-durable-walls-xwf-52223",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52223-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719954",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52223"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72005",
+ "handle": "marseilles-durable-vinyl-dur-72005",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72005-sample-clean.jpg?v=1774483926",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Green",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Deep Olive Green",
+ "Durable Type 2 Vinyl",
+ "Forest Green",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Organic",
+ "Organic Modern",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72005"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47659",
+ "handle": "fairford-vinyl-wallcovering-xlb-47659",
+ "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-47659-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711655",
+ "tags": [
+ "Architectural",
+ "Auburn",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wheat",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47659"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52268",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52268",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52268-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721818",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52268"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72156",
+ "handle": "cote-marine-durable-vinyl-dur-72156",
+ "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-72156-sample-clean.jpg?v=1774484602",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cote Marine Durable Vinyl",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "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-72156"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47940",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47940",
+ "title": "Maidstone - Oyster Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/marquise-diamond_ad034a20-61e7-43da-99f1-a50cd75bd4c8.jpg?v=1777481198",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stone Look",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47940"
+ },
+ {
+ "sku": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+ "handle": "ellsworth-denim-sunny-stripe-wallpaper-cca-83145",
+ "title": "Ellsworth Denim Sunny Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/851ee956abdc1c04e60d8a7222c57316.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Linen",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ellsworth-denim-sunny-stripe-wallpaper-cca-83145"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53320",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53320",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53320-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710834",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53320"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52230",
+ "handle": "jones-faux-grass-durable-walls-xwf-52230",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52230-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775720010",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52230"
+ },
+ {
+ "sku": "necker-island-black",
+ "handle": "necker-island-black",
+ "title": "Native - Black Sustainable Bio-Based | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Aire-Bio_Native_Black.jpg?v=1772569988",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bio-Based",
+ "Black",
+ "Bleach Cleanable",
+ "CA TB 117 Compliant",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Black",
+ "Commercial",
+ "Contemporary",
+ "Contract Grade",
+ "Dark Tones",
+ "Deep",
+ "DWHQ",
+ "Ebony",
+ "Eco-Friendly",
+ "Fabric",
+ "Finish",
+ "FR Additives Free",
+ "Gray",
+ "Green Building",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "IMO 8.2 Certified",
+ "IMO Marine Grade",
+ "LEED Compatible",
+ "Living Room",
+ "Matte",
+ "Minimalist",
+ "Modern",
+ "Moody",
+ "NFPA 260 Compliant",
+ "Onyx",
+ "Performance Fabric",
+ "PFAS-Free",
+ "Phthalate-Free",
+ "Polyester Blend",
+ "PVC-Free",
+ "Smooth",
+ "Solid",
+ "Solid Color",
+ "Texture",
+ "Textured",
+ "Uniform Texture",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/necker-island-black"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5049-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5049-jpg",
+ "title": "Dasma - Aquamarine | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5049.jpg?v=1762292057",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Aquamarine",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Blue",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5049-jpg"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49326",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49326",
+ "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-49326-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728314",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Oxford Type 2 Vinyl Wallcovering",
+ "Sand",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49326"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73113",
+ "handle": "puna-drive-natural-grassweave-hlw-73113",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73113-sample-clean.jpg?v=1774483521",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Slate Gray",
+ "Deep Navy",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Navy",
+ "Office",
+ "Organic Modern",
+ "Puna Drive",
+ "Serene",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73113"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53306",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53306",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53306-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710715",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53306"
+ },
+ {
+ "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": "rushden-type-ii-vinyl-wallcovering-xpq-48276",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48276",
+ "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/xpq-48276-sample-rushden-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731453",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Taupe",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48276"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52207",
+ "handle": "jones-faux-grass-durable-walls-xwf-52207",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52207-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719827",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52207"
+ },
+ {
+ "sku": "rushden-type-ii-vinyl-wallcovering-xpq-48273",
+ "handle": "rushden-type-ii-vinyl-wallcovering-xpq-48273",
+ "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-sea_salt.jpg?v=1777480152",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Rushden Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rushden-type-ii-vinyl-wallcovering-xpq-48273"
+ },
+ {
+ "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": "laurel-hills-panels-hlw-73140",
+ "handle": "laurel-hills-panels-hlw-73140",
+ "title": "Laurel Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73140-sample-clean.jpg?v=1774483694",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Charcoal Grey",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Japonisme",
+ "Laurel Hills",
+ "Light Gray",
+ "Living Room",
+ "Mural",
+ "Natural",
+ "Naturally Glamorous",
+ "Paper",
+ "Sage Green",
+ "Scenic",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Zen"
+ ],
+ "max_price": 130.83,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/laurel-hills-panels-hlw-73140"
+ },
+ {
+ "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": "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": "batley-type-ii-vinyl-wallcovering-xjr-47258",
+ "handle": "batley-type-ii-vinyl-wallcovering-xjr-47258",
+ "title": "Batley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjr-47258-sample-batley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702943",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/batley-type-ii-vinyl-wallcovering-xjr-47258"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47328",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47328",
+ "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-47328-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704820",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47328"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52211",
+ "handle": "jones-faux-grass-durable-walls-xwf-52211",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52211-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719857",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52211"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53308",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53308",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53308-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710732",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53308"
+ },
+ {
+ "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": "canal-stripe-texture-durable-walls-xwd-52106",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52106",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52106-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707089",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Brown",
+ "Linear",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52106"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44016",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44016",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44016-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701990",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44016"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47332",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47332",
+ "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-47332-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704927",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47332"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52094",
+ "handle": "canal-texture-durable-walls-xwa-52094",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-spice.jpg?v=1777480398",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Golden Brown",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52094"
+ },
+ {
+ "sku": "sumatra-by-innovations-usa-dwc-sumatra-2",
+ "handle": "sumatra-by-innovations-usa-dwc-sumatra-2",
+ "title": "Sumatra | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-2.jpg?v=1736198828",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Almond",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Innovations USA",
+ "Latte",
+ "Light Beige",
+ "Linen",
+ "Off-white",
+ "Stripe",
+ "Sumatra",
+ "Sumatra-2",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-2"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53222",
+ "handle": "doral-faux-silk-durable-walls-xwc-53222",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53222-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710293",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53222"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53622",
+ "title": "Pippy's Peacock - Teal Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53622-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716638",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Silver Gray",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53622"
+ },
+ {
+ "sku": "partition-paprika-romo",
+ "handle": "partition-paprika-romo",
+ "title": "Partition Paprika | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW171-04-partition-wallcovering-paprika_01.jpg?v=1776398843",
+ "tags": [
+ "Architectural",
+ "Background Color brown",
+ "brown",
+ "Burnt Sienna",
+ "Coastal",
+ "Collage IV",
+ "Commercial",
+ "Conference Room",
+ "dark brown",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Light Beige",
+ "Lobby",
+ "MW171/04",
+ "Natural",
+ "Office",
+ "Partition",
+ "Romo",
+ "Rustic",
+ "Small",
+ "Stripe",
+ "tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/partition-paprika-romo"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53304",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53304",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53304-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710700",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53304"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73014",
+ "handle": "benedict-canyon-sisal-hlw-73014",
+ "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-73014-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703744",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Blue",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Sisal",
+ "Teal",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73014"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58129",
+ "handle": "jutely-vinyl-dwx-58129",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58129-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720277",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Beige",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58129"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwj-52489",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwj-52489",
+ "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-52489-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733154",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Taupe",
+ "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-xwj-52489"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6209",
+ "handle": "le-embossed-faux-grasscloth-xgr-6209",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6209-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721658",
+ "tags": [
+ "Commercially Cleanable",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6209"
+ },
+ {
+ "sku": "eur-80183-ncw4182-designer-wallcoverings-los-angeles",
+ "handle": "eur-80183-ncw4182-designer-wallcoverings-los-angeles",
+ "title": "Penglai 01 - Pastel 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_7513498714163.jpg?v=1775522617",
+ "tags": [
+ "Almond",
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Army",
+ "Bedroom",
+ "bird",
+ "Birds",
+ "Botanical",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Denim",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Greige",
+ "Lavender",
+ "Light Grey",
+ "Linen",
+ "Living Room",
+ "Maize",
+ "Moss",
+ "Mustard Yellow",
+ "NCW4182",
+ "NCW4182 -01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off-white",
+ "Olive Green",
+ "Orange",
+ "Organic Modern",
+ "Pale Peach",
+ "Paper",
+ "Penglai",
+ "Purple",
+ "Putty",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "Walnut",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80183-ncw4182-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48206",
+ "title": "Ramsey Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xph-48206-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729926",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48206"
+ },
+ {
+ "sku": "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": "wolfgordonwallcovering_dwwg_reh-5506-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5506-jpg",
+ "title": "Resham - Sunbeam | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5506.jpg?v=1762304005",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "RAMPART®",
+ "Resham",
+ "Sunbeam",
+ "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-5506-jpg"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52087",
+ "handle": "canal-texture-durable-walls-xwa-52087",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-cream.jpg?v=1777480386",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52087"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52316",
+ "handle": "marketfield-faux-durable-walls-xwh-52316",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-portobello.jpg?v=1777480455",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52316"
+ },
+ {
+ "sku": "montgomery-metallic-cubed-durable-walls-xwp-52676",
+ "handle": "montgomery-metallic-cubed-durable-walls-xwp-52676",
+ "title": "Montgomery Metallic Cubed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52676-sample-montgomery-metallic-cubed-durable-hollywood-wallcoverings.jpg?v=1775726378",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montgomery-metallic-cubed-durable-walls-xwp-52676"
+ },
+ {
+ "sku": "tressage-bark-romo",
+ "handle": "tressage-bark-romo",
+ "title": "Tressage Bark | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW165-01-tressage-wallcovering-bark_01.jpg?v=1776398735",
+ "tags": [
+ "Architectural",
+ "Background Color brown",
+ "beige",
+ "brown",
+ "Burnished Bronze",
+ "Coastal",
+ "Collage IV",
+ "Commercial",
+ "dark brown",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Lobby",
+ "Medium",
+ "MW165/01",
+ "Natural",
+ "Office",
+ "Restaurant",
+ "Romo",
+ "Rustic",
+ "Texture",
+ "Textured",
+ "Tressage",
+ "Tropical",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tressage-bark-romo"
+ },
+ {
+ "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": "canal-texture-durable-walls-xwa-52088",
+ "handle": "canal-texture-durable-walls-xwa-52088",
+ "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-butter.jpg?v=1777480388",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52088"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53075",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53075",
+ "title": "Bellaire Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xww-53075-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703583",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53075"
+ },
+ {
+ "sku": "fringe-double-jute-contemporary-wallpaper-5",
+ "handle": "fringe-double-jute-contemporary-wallpaper-5",
+ "title": "Fringe Double Jute Contemporary Wallcovering",
+ "vendor": "Arte International",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/40323-K50C.jpg?v=1573800215",
+ "tags": [
+ "Brown",
+ "Burnt Orange",
+ "Contemporary",
+ "Grasscloth",
+ "Interior Designer",
+ "Light Beige",
+ "Orange",
+ "Pattern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fringe-double-jute-contemporary-wallpaper-5"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66594",
+ "handle": "patoa-librato-wallpaper-xb7-66594",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/33c65608daa9ca2955755ec91ce78102.jpg?v=1775130914",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "cellulose",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Entryway",
+ "Grasscloth",
+ "Light Brown",
+ "Living Room",
+ "Natural Wallcovering",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66594"
+ },
+ {
+ "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": "seres-pampas-romo",
+ "handle": "seres-pampas-romo",
+ "title": "Seres Pampas | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-01-seres-wallcovering-pampas_01.jpg?v=1776485658",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "cream",
+ "Embossed Wallcovering",
+ "Grasscloth",
+ "Hotel Room",
+ "Ivory",
+ "Kabu Wallcoverings",
+ "light brown",
+ "Lobby",
+ "Natural",
+ "Non-Woven",
+ "Office",
+ "Romo",
+ "Scandinavian",
+ "Seres",
+ "Small",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W969/01",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seres-pampas-romo"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72180",
+ "handle": "st-silkey-durable-vinyl-dur-72180",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72180-sample-clean.jpg?v=1774484695",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Pale Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72180"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72115",
+ "handle": "gironde-durable-vinyl-dur-72115",
+ "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-72115-sample-clean.jpg?v=1774484447",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Serene",
+ "Stripe",
+ "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-72115"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49306",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49306",
+ "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-maize_4f4c62a9-c84d-4177-bfde-0dcb4b68f092.jpg?v=1777480324",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49306"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010186",
+ "handle": "hollywood-tailored-xhw-2010186",
+ "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-carrere.jpg?v=1777480984",
+ "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",
+ "Ecru",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Timeless",
+ "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": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010186"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_qnt-5543-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_qnt-5543-jpg",
+ "title": "Quinault - Autumn | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/qnt-5543.jpg?v=1762303399",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Autumn",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "Quinault",
+ "RAMPART®",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_qnt-5543-jpg"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52345",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52345",
+ "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-tan.jpg?v=1777480502",
+ "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",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Gold",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Organic Modern",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52345"
+ },
+ {
+ "sku": "cesare-acoustical-walls-act-73261",
+ "handle": "cesare-acoustical-walls-act-73261",
+ "title": "Cesare Acoustical Walls",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1d8df893faecd5614bc4203f94b66ac6.jpg?v=1572309803",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Burgundy",
+ "Cesare Acoustical Walls",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Red",
+ "Deep Maroon",
+ "Dining Room",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Maroon",
+ "Phillip Romano Commercial",
+ "Red",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-act-73261"
+ },
+ {
+ "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": "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": "martin-s-metallic-grasscloth-vinyl-dwx-58173",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58173",
+ "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-58173-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724352",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Metallic",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Navy Blue",
+ "Neoclassical",
+ "Olive Green",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/martin-s-metallic-grasscloth-vinyl-dwx-58173"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73114",
+ "handle": "puna-drive-natural-grassweave-hlw-73114",
+ "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-73114-sample-clean.jpg?v=1774483526",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Puna Drive",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73114"
+ },
+ {
+ "sku": "vaticano-durable-vinyl-dur-72384",
+ "handle": "vaticano-durable-vinyl-dur-72384",
+ "title": "Vaticano Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72384-sample-clean.jpg?v=1774485305",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Living Room",
+ "Sophisticated",
+ "Taupe",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vaticano Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vaticano-durable-vinyl-dur-72384"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47333",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47333",
+ "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-47333-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704954",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Forest Green",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Minimalist",
+ "Off-white",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Tomato",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47333"
+ },
+ {
+ "sku": "avea-impressions-wallpaper-trf-56864",
+ "handle": "avea-impressions-wallpaper-trf-56864",
+ "title": "Avea Impressions | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/31f767dfb93e4e1dcdd1211a13875719.jpg?v=1750789724",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "Avea Impressions",
+ "beach",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Jeffrey Stevens",
+ "Light Gray",
+ "Minimalist",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "Non-Woven",
+ "organic",
+ "Pale Beige",
+ "Scandinavian",
+ "Series: York",
+ "Soft White",
+ "Stripe",
+ "textural",
+ "Texture",
+ "Textured",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "White",
+ "woven"
+ ],
+ "max_price": 196.08,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/avea-impressions-wallpaper-trf-56864"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52349",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52349",
+ "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-gold.jpg?v=1777480509",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Basketweave",
+ "Bedroom",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Pale Gold",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52349"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6213",
+ "handle": "le-embossed-faux-grasscloth-xgr-6213",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6213-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721672",
+ "tags": [
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Madagascar",
+ "Madagascar Naturals",
+ "Madagascar Yellow Corn",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6213"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53771",
+ "handle": "juno-faux-silk-durable-walls-xje-53771",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XJE-53771-sample-clean.jpg?v=1774482305",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Copper",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Orange",
+ "Russet",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53771"
+ },
+ {
+ "sku": "braid-mosaic-natural-romo",
+ "handle": "braid-mosaic-natural-romo",
+ "title": "Braid Mosaic Natural | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW174-01-braid-mosaic-wallcovering-natural_01.jpg?v=1776398897",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Braid Mosaic",
+ "Coastal",
+ "Collage IV",
+ "Commercial",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "light brown",
+ "Lobby",
+ "Medium",
+ "MW174/01",
+ "Natural",
+ "Oatmeal",
+ "Office",
+ "Reception Area",
+ "Romo",
+ "Rustic",
+ "Scandinavian",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/braid-mosaic-natural-romo"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52104",
+ "handle": "canal-texture-durable-walls-xwd-52104",
+ "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-navy.jpg?v=1777480416",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Blue",
+ "Bedroom",
+ "Blue",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Denim Blue",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Slate Blue",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "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-texture-durable-walls-xwd-52104"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-426",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-426",
+ "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/21a6b3dbfe330c4fe0dcbe1da557ed94_37f701ee-e365-4d15-bdb8-b0d4c9a2abb4.jpg?v=1745458282",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Lattice",
+ "Maroon",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Red",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-426"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-205-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-205-jpg",
+ "title": "WonderWood® - Teak Fc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-205f.jpg?v=1762312241",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Dark Brown",
+ "Linen",
+ "Natural",
+ "Reconstituted",
+ "Stripe",
+ "Teak Fc",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-205-jpg"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72188",
+ "handle": "st-silkey-durable-vinyl-dur-72188",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72188-sample-clean.jpg?v=1774484724",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72188"
+ },
+ {
+ "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": "jones-faux-grass-durable-walls-xwf-52229",
+ "handle": "jones-faux-grass-durable-walls-xwf-52229",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52229-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775720002",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52229"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47307",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47307",
+ "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-47307-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704266",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47307"
+ },
+ {
+ "sku": "yucatan-sisal-wallpaper-trf-56863",
+ "handle": "yucatan-sisal-wallpaper-trf-56863",
+ "title": "Yucatan Sisal | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c995a0c96a97fab6795cf41cb6301b32.jpg?v=1750789726",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "deep blue",
+ "Denim Blue",
+ "Discontinued",
+ "fine texture",
+ "gleam",
+ "glow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "Light Beige",
+ "Light Blue",
+ "Modern",
+ "Modern Tropics",
+ "natural",
+ "organic",
+ "Scandinavian",
+ "Series: York",
+ "Sisal",
+ "Smoke",
+ "Steel",
+ "textural",
+ "Textured",
+ "tropical",
+ "Unpasted - Washable - Strippable",
+ "USA",
+ "Wallcovering",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 153.28,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yucatan-sisal-wallpaper-trf-56863"
+ },
+ {
+ "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52987",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52987",
+ "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-chamomile.jpg?v=1777480730",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52987"
+ },
+ {
+ "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": "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": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47329",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47329-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704847",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47329"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831",
+ "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-cappuccino.jpg?v=1777480703",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52831"
+ },
+ {
+ "sku": "modena-gold-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "modena-gold-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Modena Gold Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27570.jpg?v=1776879826",
+ "tags": [
+ "Basketweave",
+ "Fentucci",
+ "Gold",
+ "Grasscloth",
+ "Modena",
+ "new-onboard",
+ "sample-only",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/modena-gold-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010409",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010409",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-smooth_satin_35ae9a7d-ee5a-444b-ad40-83ac2d23ad16.jpg?v=1777481094",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Stone Gray",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010409"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73070",
+ "handle": "reeds-drive-wild-grass-hlw-73070",
+ "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-73070-sample-clean.jpg?v=1774483329",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Medium Brown",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Tropical",
+ "Wabi-sabi",
+ "Wallcovering",
+ "Zen"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73070"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72066",
+ "handle": "la-roche-durable-vinyl-dur-72066",
+ "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-72066-sample-clean.jpg?v=1774484242",
+ "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",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72066"
+ },
+ {
+ "sku": "velluto-wheat-metallic-grasscloth-wallcovering-fentucci",
+ "handle": "velluto-wheat-metallic-grasscloth-wallcovering-fentucci",
+ "title": "Velluto Wheat Metallic Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26570.jpg?v=1776879780",
+ "tags": [
+ "Fentucci",
+ "Grasscloth",
+ "Metallic",
+ "new-onboard",
+ "sample-only",
+ "Texture",
+ "Velluto",
+ "Wallcovering",
+ "Wheat"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/velluto-wheat-metallic-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "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": "saint-helene-durable-vinyl-dur-72044",
+ "handle": "saint-helene-durable-vinyl-dur-72044",
+ "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-72044-sample-clean.jpg?v=1774484109",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72044"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52209",
+ "handle": "jones-faux-grass-durable-walls-xwf-52209",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52209-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719842",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52209"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53216",
+ "handle": "doral-faux-silk-durable-walls-xwc-53216",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53216-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710270",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53216"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72404",
+ "handle": "rivo-dulce-durable-vinyl-dur-72404",
+ "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-72404-sample-clean.jpg?v=1774485396",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Oatmeal",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Sand",
+ "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-72404"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-420",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-420",
+ "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/b48f9a7bd655df7337477408441c7382_9ee1cf3f-7c51-4501-a609-f72292e4bc85.jpg?v=1745458298",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Gray",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-420"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010182",
+ "handle": "hollywood-tailored-xhw-2010182",
+ "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-hudson.jpg?v=1777480980",
+ "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",
+ "Cream",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010182"
+ },
+ {
+ "sku": "harrison-type-ii-vinyl-wallcovering-xlg-47724",
+ "handle": "harrison-type-ii-vinyl-wallcovering-xlg-47724",
+ "title": "Harrison Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlg-47724-sample-harrison-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775716139",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Harrison Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage Green",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harrison-type-ii-vinyl-wallcovering-xlg-47724"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72170",
+ "handle": "st-silken-durable-vinyl-dur-72170",
+ "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-72170-sample-clean.jpg?v=1774484651",
+ "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",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Tan",
+ "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/st-silken-durable-vinyl-dur-72170"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58160",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58160-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725567",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Metallic",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Neoclassical",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58160"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47657",
+ "handle": "fairford-vinyl-wallcovering-xlb-47657",
+ "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-47657-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711603",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Grandmillennial",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Olive Green",
+ "Orange",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47657"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58132",
+ "handle": "jutely-vinyl-dwx-58132",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58132-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720359",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Durable",
+ "Easy To Clean",
+ "Embossed",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Faux Grasscloth",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel",
+ "Hotel Lobby",
+ "Jute",
+ "Lattice",
+ "Light Brown",
+ "Luxe",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Navy Blue",
+ "Neutral",
+ "Office",
+ "Regencycore",
+ "Sophisticated",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58132"
+ },
+ {
+ "sku": "how-to-hang-grasscloth-wallpaper-video-100002",
+ "handle": "how-to-hang-grasscloth-wallpaper-video-100002",
+ "title": "How to Hang Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/video-100002-how-to-hang-grasscloth-hollywood-wallcoverings.jpg?v=1775719318",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "How to Hang Grasscloth",
+ "Living Room",
+ "Natural",
+ "Natural Fiber",
+ "Natural Texture",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/how-to-hang-grasscloth-wallpaper-video-100002"
+ },
+ {
+ "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": "maidstone-type-ii-vinyl-wallcovering-xmh-47952",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47952",
+ "title": "Maidstone - Cloud 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-47952-sample-maidstone-cloud-type-ii-vinyl-hollywood.jpg?v=1775723309",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Green",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stone Look",
+ "Stripe",
+ "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-47952"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52342",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52342",
+ "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-taupe_34e263cb-ce02-49cc-9028-8d38dfee2be5.jpg?v=1777481155",
+ "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",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52342"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52359",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52359",
+ "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-bark.jpg?v=1777480527",
+ "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",
+ "Bronze",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Rustic",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52359"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73030",
+ "handle": "benedict-canyon-sisal-hlw-73030",
+ "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-73030-sample-clean.jpg?v=1774483119",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Denim Blue",
+ "Farmhouse",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73030"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53461",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53461",
+ "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-53461-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715858",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53461"
+ },
+ {
+ "sku": "dwkk-128161",
+ "handle": "dwkk-128161",
+ "title": "W3289-4 Gold | Kravet Design | Grasscloth Iii |Check/Houndstooth Metallic Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3289_4_1495b53c-ed35-41ce-9f24-95d4ce724801.jpg?v=1753292819",
+ "tags": [
+ "36In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Check/Houndstooth",
+ "China",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "grasscloth",
+ "Grasscloth Iii",
+ "Grasscloth Texture",
+ "Grasscloth Weave",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Light Gray",
+ "Living Room",
+ "Paper - 100%",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W3289",
+ "W3289-4",
+ "W3289.4.0",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128161"
+ },
+ {
+ "sku": "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": "glen-ridge-embossed-vertical-durable-walls-xwl-53538",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53538",
+ "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-sprout.jpg?v=1777480868",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Yellow",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Yellow",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53538"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47655",
+ "handle": "fairford-vinyl-wallcovering-xlb-47655",
+ "title": "Fairford Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47655-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711552",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47655"
+ },
+ {
+ "sku": "brooker-contemporary-durable-walls-xww-52997",
+ "handle": "brooker-contemporary-durable-walls-xww-52997",
+ "title": "Brooker Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gramercy-wire_glass.jpg?v=1777480747",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brooker-contemporary-durable-walls-xww-52997"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47654",
+ "handle": "fairford-vinyl-wallcovering-xlb-47654",
+ "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-47654-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711526",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47654"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-417",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-417",
+ "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/177993a0d06a5a4520a6609468863495_f0747aaf-87fa-485a-9e43-8168e6f4d83b.jpg?v=1745458309",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-417"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66408",
+ "handle": "jolie-madam-wallpaper-xa1-66408",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1418572057bedda375f1929c9eec3c99.jpg?v=1775120513",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66408"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53462",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53462",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53462-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715861",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53462"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010184",
+ "handle": "hollywood-tailored-xhw-2010184",
+ "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-tamarind.jpg?v=1777480981",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Red",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Farmhouse",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Red",
+ "Rustic",
+ "Terra Cotta",
+ "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\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010184"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73106",
+ "handle": "puna-drive-natural-grassweave-hlw-73106",
+ "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-73106-sample-clean.jpg?v=1774483466",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73106"
+ },
+ {
+ "sku": "dwjs-16523",
+ "handle": "dwjs-16523",
+ "title": "Fire Island Cream Wallcovering | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SS2592.jpg?v=1740772749",
+ "tags": [
+ "Abstract",
+ "Animal Print",
+ "Animal/Insects",
+ "Animals/Insects",
+ "Architectural",
+ "Art Deco",
+ "Bird",
+ "Blue",
+ "Blues",
+ "Botanical",
+ "Branches",
+ "Chinoiserie",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dark Blue",
+ "Floral",
+ "Flowers",
+ "Grasscloth",
+ "Imperial Blossoms Branch",
+ "Jeffrey Stevens",
+ "Light",
+ "Light Duty",
+ "Light Traffic",
+ "Muted",
+ "Navy",
+ "Non-Woven",
+ "Off-White",
+ "Paper",
+ "Pattern",
+ "Prepasted",
+ "SS2592",
+ "Strippable",
+ "Texture",
+ "Traditional",
+ "Transitional",
+ "United States",
+ "Wallcovering",
+ "Warm",
+ "Washable",
+ "White"
+ ],
+ "max_price": 93.14,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwjs-16523"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66404",
+ "handle": "jolie-madam-wallpaper-xa1-66404",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bd71b8cbc0eb292c8a5bd770fdabc8d8.jpg?v=1775120048",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Entryway",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66404"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52213",
+ "handle": "jones-faux-grass-durable-walls-xwf-52213",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52213-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719873",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52213"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53163",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53163",
+ "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-safflower.jpg?v=1777480775",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wheat",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53163"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73018",
+ "handle": "benedict-canyon-sisal-hlw-73018",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73018-sample-clean.jpg?v=1774483055",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Sisal",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73018"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52216",
+ "handle": "jones-faux-grass-durable-walls-xwf-52216",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52216-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719898",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52216"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72169",
+ "handle": "st-silken-durable-vinyl-dur-72169",
+ "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-72169-sample-clean.jpg?v=1774484646",
+ "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",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Tan",
+ "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/st-silken-durable-vinyl-dur-72169"
+ },
+ {
+ "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": "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": "durante-diamonds-hlw-73053",
+ "handle": "durante-diamonds-hlw-73053",
+ "title": "Durante Diamonds | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73053-sample-durante-diamonds-hollywood-wallcoverings.jpg?v=1775710364",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durante Diamonds",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/durante-diamonds-hlw-73053"
+ },
+ {
+ "sku": "vernon-durable-walls-xwr-52696",
+ "handle": "vernon-durable-walls-xwr-52696",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52696-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735778",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vernon Durable",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52696"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52918",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52918",
+ "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-52918-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734482",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Lemon",
+ "Living Room",
+ "Modern",
+ "Navy",
+ "Sophisticated",
+ "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-52918"
+ },
+ {
+ "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": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52915",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52915",
+ "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-52915-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734472",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Sand",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52915"
+ },
+ {
+ "sku": "dwtt-71978-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71978-designer-wallcoverings-los-angeles",
+ "title": "Wallcoverings Natural | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10060_cf532b0a-d446-4aae-90c4-29401cc089ea.jpg?v=1733893030",
+ "tags": [
+ "Bedroom",
+ "Beige",
+ "Calm",
+ "Damask",
+ "Dining Room",
+ "Gold",
+ "Grasscloth",
+ "Ivory",
+ "Living Room",
+ "Medium Scale",
+ "Metallic",
+ "Natural",
+ "Pattern",
+ "REVIEW",
+ "Sophisticated",
+ "T10060",
+ "Thibaut",
+ "Thibaut Wallcoverings",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71978-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47223",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47223",
+ "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-47223-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702419",
+ "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",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Solid",
+ "Tan",
+ "Taupe",
+ "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\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47223"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwk-52499",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwk-52499",
+ "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-52499-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733202",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwk-52499"
+ },
+ {
+ "sku": "boca-faux-finish-durable-walls-xww-53058",
+ "handle": "boca-faux-finish-durable-walls-xww-53058",
+ "title": "Boca Faux Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hanami-rattan_a3734e54-d04e-436f-ac4b-ef23d270f559.jpg?v=1777480912",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Lemon",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Slate Blue",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/boca-faux-finish-durable-walls-xww-53058"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66507",
+ "handle": "cody-couture-wallpaper-xb2-66507",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f8e5fc427d7389a92a7f2a51b0759c4d.jpg?v=1775127703",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66507"
+ },
+ {
+ "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": "decorator-grasscloth-vol-2-by-phillipe-romano-488-427",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-427",
+ "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/df17d36a880da0ecf941d29c92a6c7f1_6499a96a-0999-41e3-a78d-c5ce3bc20a49.jpg?v=1745458279",
+ "tags": [
+ "Alabaster",
+ "Almond",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coffee",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Greige",
+ "Latte",
+ "Mink",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Putty",
+ "Shell",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-427"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58131",
+ "handle": "jutely-vinyl-dwx-58131",
+ "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-58131-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720329",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58131"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53167",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53167",
+ "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-sisal.jpg?v=1777480782",
+ "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",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "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 Brown",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Sand",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53167"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010191",
+ "handle": "hollywood-tailored-xhw-2010191",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-esplande.jpg?v=1777480991",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Khaki",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dark Khaki",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Healthcare",
+ "Hollywood Tailored",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Khaki",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Pale Yellow",
+ "Sage",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010191"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72306",
+ "handle": "la-voltere-durable-vinyl-dur-72306",
+ "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-72306-sample-clean.jpg?v=1774485117",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72306"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sdy-3352_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sdy-3352_8-jpg",
+ "title": "Sadeya - Wheat | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sdy-3352_8.jpg?v=1762305539",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Grasscloth",
+ "Sadeya",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wheat",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sdy-3352_8-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_reh-5504-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5504-jpg",
+ "title": "Resham - Jute | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5504.jpg?v=1762303937",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Grasscloth",
+ "Jute",
+ "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-5504-jpg"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72112",
+ "handle": "gironde-durable-vinyl-dur-72112",
+ "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-72112-sample-clean.jpg?v=1774484437",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Rustic",
+ "Sand",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72112"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5042-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5042-jpg",
+ "title": "Dasma - Copper | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5042.jpg?v=1762291795",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dark Brown",
+ "Dasma",
+ "Gold",
+ "Grasscloth",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5042-jpg"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52318",
+ "handle": "marketfield-faux-durable-walls-xwh-52318",
+ "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/xwh-52318-sample-marketfield-faux-durable-hollywood-wallcoverings.jpg?v=1775724159",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Golden Tan",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52318"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73037",
+ "handle": "benedict-canyon-sisal-hlw-73037",
+ "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-73037-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703758",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Sage Green",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73037"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72297",
+ "handle": "la-voltere-durable-vinyl-dur-72297",
+ "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72297-sample-clean.jpg?v=1774485086",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72297"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52343",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52343",
+ "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-gray_efdc6a70-c773-4289-9247-e5f604287987.jpg?v=1777481170",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal Gray",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Serene",
+ "Silver",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52343"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72232",
+ "handle": "saint-lore-durable-vinyl-dur-72232",
+ "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-72232-sample-clean.jpg?v=1774484845",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Sophisticated",
+ "Taupe",
+ "textured",
+ "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-72232"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73129",
+ "handle": "hilo-highway-diamond-grass-hlw-73129",
+ "title": "Hilo Highway - Diamond Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73129-sample-clean.jpg?v=1774483613",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73129"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72149",
+ "handle": "cote-marine-durable-vinyl-dur-72149",
+ "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-72149-sample-clean.jpg?v=1774484576",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72149"
+ },
+ {
+ "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": "la-roche-durable-vinyl-dur-72079",
+ "handle": "la-roche-durable-vinyl-dur-72079",
+ "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-72079-sample-clean.jpg?v=1774484315",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72079"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5040-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5040-jpg",
+ "title": "Dasma - Fawn | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5040.jpg?v=1762291717",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Light Brown",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5040-jpg"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72083",
+ "handle": "la-roche-durable-vinyl-dur-72083",
+ "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-72083-sample-clean.jpg?v=1774484341",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "La Roche Durable Vinyl",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Pink",
+ "Rose Taupe",
+ "Rustic",
+ "Silk",
+ "Silk Texture",
+ "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/la-roche-durable-vinyl-dur-72083"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52102",
+ "handle": "canal-texture-durable-walls-xwd-52102",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-port.jpg?v=1777480412",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Rustic",
+ "Sienna",
+ "Solid",
+ "Terracotta",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52102"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72181",
+ "handle": "st-silkey-durable-vinyl-dur-72181",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72181-sample-clean.jpg?v=1774484700",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "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/st-silkey-durable-vinyl-dur-72181"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53535",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53535",
+ "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-linen_8b75e907-010c-49b7-93fe-03b7589f4634.jpg?v=1777481403",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53535"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72065",
+ "handle": "la-roche-durable-vinyl-dur-72065",
+ "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-72065-sample-clean.jpg?v=1774484237",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "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",
+ "Pale Beige",
+ "Serene",
+ "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-72065"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58138",
+ "handle": "jutely-vinyl-dwx-58138",
+ "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-58138-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720511",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Blue",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58138"
+ },
+ {
+ "sku": "synamay-stitch-atlantic-romo",
+ "handle": "synamay-stitch-atlantic-romo",
+ "title": "Synamay Stitch Atlantic | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW167-03-synamay-stitch-wallcovering-atlantic_00.jpg?v=1776398479",
+ "tags": [
+ "Antique Brass",
+ "Architectural",
+ "Background Color dark blue",
+ "beige",
+ "brown",
+ "Coastal",
+ "Collage IV",
+ "Commercial",
+ "dark blue",
+ "Eclectic",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Hotel Room",
+ "Lobby",
+ "Medium",
+ "Midnight Navy",
+ "MW167/03",
+ "Natural",
+ "Office",
+ "Romo",
+ "Rustic",
+ "Synamay Stitch",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/synamay-stitch-atlantic-romo"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48164",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48164",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48164-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728364",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48164"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-403",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-403",
+ "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/39fd3f04e0dbe6087d906940b22b685f_1fa58687-34a3-4501-926e-7eaf115f20cf.jpg?v=1745458349",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Green",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-403"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47652",
+ "handle": "fairford-vinyl-wallcovering-xlb-47652",
+ "title": "Fairford Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlb-47652-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711465",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47652"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52347",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52347",
+ "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-beige_9ec5ac4e-0891-40fb-81cc-7700f8a5e948.jpg?v=1777481176",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Pale Gold",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52347"
+ },
+ {
+ "sku": "dwkk-140155",
+ "handle": "dwkk-140155",
+ "title": "Mali Grasscloth - Indigo Blue By Lee Jofa | Blithfield | Global Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3529_50_9fb07d72-f27d-4680-9fdb-a62cb90a19ad.jpg?v=1753291853",
+ "tags": [
+ "33.46In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Blue",
+ "Commercial",
+ "Dark Blue",
+ "display_variant",
+ "Geometric",
+ "Global",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hemp - 100%",
+ "Lee Jofa",
+ "Luxury",
+ "Mali Grasscloth",
+ "Pbfc-3529.50.0",
+ "Print",
+ "Texture",
+ "Textured",
+ "United Kingdom",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140155"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72173",
+ "handle": "st-silken-durable-vinyl-dur-72173",
+ "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-72173-sample-clean.jpg?v=1774484666",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Sage",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage Green",
+ "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-72173"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6210",
+ "handle": "le-embossed-faux-grasscloth-xgr-6210",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6210-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721661",
+ "tags": [
+ "Blue",
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6210"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73020",
+ "handle": "benedict-canyon-sisal-hlw-73020",
+ "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-73020-sample-clean.jpg?v=1774483064",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73020"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47885",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47885",
+ "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-47885-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722225",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Eggplant",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Ivory",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Luxe",
+ "Luxurious",
+ "Mahogany",
+ "Olive",
+ "Purple",
+ "Regencycore",
+ "Solid",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47885"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72101",
+ "handle": "gironde-durable-vinyl-dur-72101",
+ "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-72101-sample-clean.jpg?v=1774484398",
+ "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",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72101"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72276",
+ "handle": "essone-durable-vinyl-dur-72276",
+ "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-72276-sample-clean.jpg?v=1774484986",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Sand",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72276"
+ },
+ {
+ "sku": "i-love-baroque-medusa-stripe-white-linen-wallcovering-versace-1",
+ "handle": "i-love-baroque-medusa-stripe-white-linen-wallcovering-versace-1",
+ "title": "I Love Baroque Medusa Stripe White Linen Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/522e5849c0f09262a5c7745fa4648102.jpg?v=1773710383",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Brown",
+ "Charcoal Gray",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Dusty Rose",
+ "Gray",
+ "I Love Baroque Medusa Stripe",
+ "I Love Baroque Medusa Stripe White Linen Wallcovering",
+ "Italian",
+ "Light Wood",
+ "Linen",
+ "Living Room",
+ "Luxury",
+ "Minimalist",
+ "Needs-Image",
+ "Office",
+ "Paper",
+ "Paste the wall",
+ "Peach",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Wallcovering",
+ "White Linen"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/i-love-baroque-medusa-stripe-white-linen-wallcovering-versace-1"
+ },
+ {
+ "sku": "dwkk-139803",
+ "handle": "dwkk-139803",
+ "title": "Pennycross Paper - Dove Beige By Lee Jofa | Merkato | Diamond Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2017107_101_8cf46867-556c-4741-8c11-c344352c3052.jpg?v=1753291253",
+ "tags": [
+ "34In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Commercial",
+ "Diamond",
+ "display_variant",
+ "Dove",
+ "Fabric",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Greek Key",
+ "Lee Jofa",
+ "Luxury",
+ "Merkato",
+ "Non-Wallcovering",
+ "P2017107.101.0",
+ "Paper",
+ "Pennycross Paper",
+ "Print",
+ "Sisal - 90%;Cotton - 10%",
+ "Textured",
+ "United States",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139803"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49310",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49310",
+ "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-sea_almond_71a67f34-74e6-4fbd-9a42-ae42ba51de7c.jpg?v=1777481421",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Newcastle Type 2 Vinyl Wallcovering",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49310"
+ },
+ {
+ "sku": "vernon-durable-walls-xwr-52698",
+ "handle": "vernon-durable-walls-xwr-52698",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52698-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735785",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dark Olive Green",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Olive Green",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vernon Durable",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52698"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010414",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010414",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-samite.jpg?v=1777481101",
+ "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",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sand",
+ "Silk Texture",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Woven Look"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010414"
+ },
+ {
+ "sku": "gregory-diamonds-drive-hlw-73043",
+ "handle": "gregory-diamonds-drive-hlw-73043",
+ "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-73043-sample-clean.jpg?v=1774483179",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Chevron",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Wheat",
+ "Woven"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gregory-diamonds-drive-hlw-73043"
+ },
+ {
+ "sku": "dwkk-g2b817173",
+ "handle": "dwkk-g2b817173",
+ "title": "Malatesta - Silver Silver By Lee Jofa | | Damask Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2014100_11_dd836987-ecc0-4368-8896-cb7af39196cd.jpg?v=1753291353",
+ "tags": [
+ "34In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "China",
+ "Commercial",
+ "Damask",
+ "display_variant",
+ "Fabric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Lee Jofa",
+ "Luxury",
+ "Malatesta",
+ "Non-Wallcovering",
+ "P2014100.11.0",
+ "Paper",
+ "Print",
+ "Silver",
+ "Sisal - 85%;Cotton - 15%",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g2b817173"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73002",
+ "handle": "benedict-canyon-sisal-hlw-73002",
+ "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-73002-sample-clean.jpg?v=1774482983",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73002"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52326",
+ "handle": "marketfield-faux-durable-walls-xwh-52326",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-hawthorn.jpg?v=1777480469",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Silver",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52326"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58128",
+ "handle": "jutely-vinyl-dwx-58128",
+ "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-58128-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720249",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58128"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52283",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52283",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52283-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721938",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Stain Repellant",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52283"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-431",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-431",
+ "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/bac9bab8319c6e530b2227084d175633_7b78eabd-17c9-4b41-91ae-e2a039e397fa.jpg?v=1745458269",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Lemon",
+ "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-431"
+ },
+ {
+ "sku": "hollywood-faux-woven-textile-wall-xhw-2010413",
+ "handle": "hollywood-faux-woven-textile-wall-xhw-2010413",
+ "title": "Hollywood Faux Woven Textile Wall | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulle-tussah.jpg?v=1777481100",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Light Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Faux Woven Textile Wall",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Gray",
+ "Light Taupe",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven Look",
+ "Yellow"
+ ],
+ "max_price": 53.21,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-faux-woven-textile-wall-xhw-2010413"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53460",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53460",
+ "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-53460-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715854",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53460"
+ },
+ {
+ "sku": "flagler-embossed-durable-walls-xwq-52979",
+ "handle": "flagler-embossed-durable-walls-xwq-52979",
+ "title": "Flagler Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52979-sample-flagler-embossed-durable-hollywood-wallcoverings.jpg?v=1775713355",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Pale Green",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/flagler-embossed-durable-walls-xwq-52979"
+ },
+ {
+ "sku": "dwc-1001630",
+ "handle": "dwc-1001630",
+ "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_4693309489203.jpg?v=1775521230",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Almond",
+ "Arabesque",
+ "Architectural",
+ "Beige",
+ "Black",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Greige",
+ "Linen",
+ "NCW4350-06",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001630"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58087",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58087",
+ "title": "Sophie's Scrim | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58087-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734095",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Living Room",
+ "Organic Modern",
+ "Scrim",
+ "Serene",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58087"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66597",
+ "handle": "patoa-librato-wallpaper-xb7-66597",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b67862400cae02aadcc93598198061ab.jpg?v=1775131258",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "cellulose",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Gray",
+ "Hotel Lobby",
+ "Light Gray",
+ "Living Room",
+ "Natural Wallcovering",
+ "Neutral",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66597"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58104",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58104",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58104-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715287",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Easy-clean",
+ "Embossed Texture",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Green",
+ "Gunny Sack",
+ "Hallway",
+ "High-traffic",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Neutral",
+ "Orange",
+ "Red",
+ "Regencycore",
+ "Tan",
+ "Terracotta",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58104"
+ },
+ {
+ "sku": "test1-xbg-44000",
+ "handle": "test1-xbg-44000",
+ "title": "test1 | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44000-sample-test1-hollywood-wallcoverings.jpg?v=1775735292",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Brown",
+ "Clock",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Natural",
+ "Paper",
+ "Solid",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/test1-xbg-44000"
+ },
+ {
+ "sku": "dwkk-129102",
+ "handle": "dwkk-129102",
+ "title": "W3732-5 Light Blue | Kravet Design | Ronald Redding | Solid Texture Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3732_5_8efd05d8-a6fb-4bf7-b13d-ed1c6022f9f0.jpg?v=1753121556",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Fabric",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Light Blue",
+ "Light Gray",
+ "Linen",
+ "Minimalist",
+ "Pale Aqua",
+ "Paper - 100%",
+ "Ronald Redding",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "United States",
+ "W3732-5",
+ "W3732.5.0",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129102"
+ },
+ {
+ "sku": "floating-fibers-dwx-58181",
+ "handle": "floating-fibers-dwx-58181",
+ "title": "Floating Fibers | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58181-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714000",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Fiber",
+ "Floating Fibers",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Ivory",
+ "Living Room",
+ "Luxe",
+ "Minimalist",
+ "Modern",
+ "Natural Look",
+ "Neutral",
+ "Orange",
+ "Organic",
+ "Regencycore",
+ "Residential",
+ "Solid",
+ "Sophisticated",
+ "Subtle",
+ "Taupe",
+ "Terracotta",
+ "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/floating-fibers-dwx-58181"
+ },
+ {
+ "sku": "cesare-acoustical-walls-act-73260",
+ "handle": "cesare-acoustical-walls-act-73260",
+ "title": "Cesare Acoustical Walls",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/64df95d5427dfad88ae9cdd95118bfe7.jpg?v=1572309803",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Cesare Acoustical Walls",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-act-73260"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52441",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52441",
+ "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-52441-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730738",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52441"
+ },
+ {
+ "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": "kent-navy-faux-grasscloth-wallpaper-cca-82924",
+ "handle": "kent-navy-faux-grasscloth-wallpaper-cca-82924",
+ "title": "Kent Navy Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/602f1da269ec884cbdea75a699afa14e.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Navy",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-navy-faux-grasscloth-wallpaper-cca-82924"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49330",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49330",
+ "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-49330-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728327",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Beige",
+ "Living Room",
+ "Oxford Type 2 Vinyl Wallcovering",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49330"
+ },
+ {
+ "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52985",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52985",
+ "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-rock_cress.jpg?v=1777480726",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Light Taupe",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52985"
+ },
+ {
+ "sku": "amalfi-wheat-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "amalfi-wheat-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Amalfi Wheat Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26050.jpg?v=1776879762",
+ "tags": [
+ "Amalfi",
+ "Basketweave",
+ "Fentucci",
+ "Grasscloth",
+ "new-onboard",
+ "sample-only",
+ "Texture",
+ "Wallcovering",
+ "Wheat"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amalfi-wheat-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72222",
+ "handle": "saint-lore-durable-vinyl-dur-72222",
+ "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-72222-sample-clean.jpg?v=1774484795",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72222"
+ },
+ {
+ "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": "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": "sophie-s-scrim-wallcovering-dwx-58094",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58094",
+ "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-58094-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734286",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Geometric",
+ "Gold",
+ "Golden Brown",
+ "Grandmillennial",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Ivory",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Regencycore",
+ "Scrim",
+ "Textile Weave",
+ "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/sophie-s-scrim-wallcovering-dwx-58094"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44009",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44009",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44009-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701965",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44009"
+ },
+ {
+ "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": "narcisse-noir-wallpaper-xa7-66458",
+ "handle": "narcisse-noir-wallpaper-xa7-66458",
+ "title": "Narcisse Noir Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/466b584e2aa46393b3f3473c743e5fa4.jpg?v=1775123697",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "calcium carbonate/pulp",
+ "Class A Fire Rated",
+ "Commercial",
+ "Entryway",
+ "Grasscloth",
+ "Light Coral",
+ "Living Room",
+ "Narcisse Noir Wallcovering",
+ "Natural Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Rosybrown",
+ "Rust",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Terracotta",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 49.3,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/narcisse-noir-wallpaper-xa7-66458"
+ },
+ {
+ "sku": "moroccan-cream-basketweave-wbs-39658",
+ "handle": "moroccan-cream-basketweave-wbs-39658",
+ "title": "Moroccan Cream Basketweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39658-sample-moroccan-cream-basketweave-hollywood-wallcoverings.jpg?v=1775726481",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Wallcoverings",
+ "Warm",
+ "Wood",
+ "Woven"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-cream-basketweave-wbs-39658"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6212",
+ "handle": "le-embossed-faux-grasscloth-xgr-6212",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6212-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721669",
+ "tags": [
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Light Yellow Corn",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6212"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72190",
+ "handle": "st-silkey-durable-vinyl-dur-72190",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72190-sample-clean.jpg?v=1774484734",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Orange",
+ "Peach",
+ "Salmon",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72190"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72108",
+ "handle": "gironde-durable-vinyl-dur-72108",
+ "title": "Raked Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72108-sample-clean.jpg?v=1774484417",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Green",
+ "Dark Teal",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72108"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73072",
+ "handle": "reeds-drive-wild-grass-hlw-73072",
+ "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-73072-sample-clean.jpg?v=1774483339",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Espresso",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Lodge",
+ "Natural",
+ "Naturally Glamorous",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73072"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58097",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58097",
+ "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-58097-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734363",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Basketweave",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Copper",
+ "Dining Room",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Tan",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Scrim",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58097"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52837",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52837",
+ "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-hillside_villa.jpg?v=1777480719",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Chataqua Metallic Contemporary Durable Vinyl",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Seagreen",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Sage Green",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52837"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52228",
+ "handle": "jones-faux-grass-durable-walls-xwf-52228",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52228-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719992",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52228"
+ },
+ {
+ "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": "fairford-vinyl-wallcovering-xlb-47660",
+ "handle": "fairford-vinyl-wallcovering-xlb-47660",
+ "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-47660-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711683",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47660"
+ },
+ {
+ "sku": "marseilles-wallpaper-xp3-68072",
+ "handle": "marseilles-wallpaper-xp3-68072",
+ "title": "Marseilles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0a77a5c40eab6e27df32d81639c331aa.jpg?v=1733882130",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Marseilles Vinyl",
+ "Organic Modern",
+ "Phillip Romano Commercial",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-wallpaper-xp3-68072"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72415",
+ "handle": "rivo-dulce-durable-vinyl-dur-72415",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72415-sample-clean.jpg?v=1774485450",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72415"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66515",
+ "handle": "cody-couture-wallpaper-xb2-66515",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/83211010141ece507343d15855fb2743.jpg?v=1775128355",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Grasscloth",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Solid/Textural",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66515"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52274",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52274",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52274-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721866",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52274"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52939",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52939",
+ "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-52939-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734570",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "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-52939"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010177",
+ "handle": "hollywood-tailored-xhw-2010177",
+ "title": "Hollywood Tailored | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/harrison-park_row.jpg?v=1777480970",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gray",
+ "Grey",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Medium Gray",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010177"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73024",
+ "handle": "benedict-canyon-sisal-hlw-73024",
+ "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-73024-sample-clean.jpg?v=1774483080",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "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": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73024"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48129",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48129",
+ "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-48129-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728133",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Organic Modern",
+ "Pale Yellow",
+ "Serene",
+ "Solid",
+ "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-48129"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833",
+ "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-dark_leather.jpg?v=1777480706",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52833"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48117",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48117",
+ "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-48117-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727763",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Tan",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Mustard Yellow",
+ "Olney Type 2 Vinyl",
+ "Olney Type 2 Vinyl Wallcovering",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48117"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53527",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53527",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-sunshine.jpg?v=1777480850",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53527"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72299",
+ "handle": "la-voltere-durable-vinyl-dur-72299",
+ "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-72299-sample-clean.jpg?v=1774485096",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72299"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58164",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58164",
+ "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-58164-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725666",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gray",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58164"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52266",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52266",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52266-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721801",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52266"
+ },
+ {
+ "sku": "kia-island-palm-shadow-wallpaper-trf-56859",
+ "handle": "kia-island-palm-shadow-wallpaper-trf-56859",
+ "title": "Kia Island Palm Shadow | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76803e2cfd46d3f536df2bbe58106757.jpg?v=1750789731",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Jeffrey Stevens",
+ "jungle",
+ "large scale",
+ "leaf",
+ "medium green",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Pale Beige",
+ "palm",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "rain forest",
+ "Sage Green",
+ "Series: York",
+ "Textured",
+ "trees",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kia-island-palm-shadow-wallpaper-trf-56859"
+ },
+ {
+ "sku": "kia-island-palm-shadow-wallpaper-trf-56858",
+ "handle": "kia-island-palm-shadow-wallpaper-trf-56858",
+ "title": "Kia Island Palm Shadow | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9d29dc5f11982d34892d18f757d270b6.jpg?v=1750789732",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Gold",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "jungle",
+ "large scale",
+ "leaf",
+ "medium brown",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "palm",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "rain forest",
+ "Scenic",
+ "Series: York",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "trees",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kia-island-palm-shadow-wallpaper-trf-56858"
+ },
+ {
+ "sku": "oliva-khaki-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "oliva-khaki-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Oliva Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27580.jpg?v=1776879830",
+ "tags": [
+ "Basketweave",
+ "Fentucci",
+ "Grasscloth",
+ "Khaki",
+ "new-onboard",
+ "Oliva",
+ "sample-only",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oliva-khaki-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52270",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52270",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52270-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721833",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52270"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br11059-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br11059-jpg",
+ "title": "BR11059 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br11055.jpg?v=1733873623",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "BR11059",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Lemon",
+ "Light Gray",
+ "Linen",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br11059-jpg"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-428",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-428",
+ "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/017d4b556db005a3ddffdfac666657a8_1bab2185-7d2a-49ae-b19c-5c1abd9cf1b7.jpg?v=1745458276",
+ "tags": [
+ "Architectural",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-428"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-416",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-416",
+ "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/eb2b7945639766536a4f4c9cfa2a4f38_d38874d6-db40-47d6-901a-9e9c01b0b56e.jpg?v=1745458312",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-416"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53772",
+ "handle": "juno-faux-silk-durable-walls-xje-53772",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53772-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720170",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53772"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72293",
+ "handle": "la-voltere-durable-vinyl-dur-72293",
+ "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-72293-sample-clean.jpg?v=1774485070",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Slate Gray",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72293"
+ },
+ {
+ "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": "glen-ridge-embossed-vertical-durable-walls-xwl-53525",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53525",
+ "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-adobe.jpg?v=1777480847",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53525"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44017",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44017",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44017-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701993",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44017"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-415",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-415",
+ "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/78ed30dbbecaed5201122c401aa3e9e4_b2a0dd7a-ea21-4d47-858e-22f889abbbab.jpg?v=1745458314",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Red",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-415"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48212",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48212",
+ "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-48212-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730072",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48212"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52322",
+ "handle": "marketfield-faux-durable-walls-xwh-52322",
+ "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-barberry.jpg?v=1777480464",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52322"
+ },
+ {
+ "sku": "motif-typhoon-romo",
+ "handle": "motif-typhoon-romo",
+ "title": "Motif Typhoon | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW162-04-motif-wallcovering-typhoon_01.jpg?v=1776398652",
+ "tags": [
+ "Architectural",
+ "Background Color green",
+ "Collage IV",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "gray",
+ "green",
+ "Handcrafted Wallcovering",
+ "Hotel",
+ "Minimalist",
+ "Motif",
+ "MW162/04",
+ "Non-woven",
+ "Office",
+ "Reception Area",
+ "Romo",
+ "Sage Green",
+ "Scandinavian",
+ "Small",
+ "Soft White",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/motif-typhoon-romo"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58137",
+ "handle": "jutely-vinyl-dwx-58137",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58137-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720483",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Natural Look",
+ "Neutral",
+ "Sage Green",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58137"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66596",
+ "handle": "patoa-librato-wallpaper-xb7-66596",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/424f47099f1af5b86b9e489d0806fc12.jpg?v=1775131144",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "cellulose",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Entryway",
+ "Farmhouse",
+ "Grasscloth",
+ "Light Brown",
+ "Living Room",
+ "Natural Wallcovering",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66596"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53160",
+ "title": "Hanover Faux Embossed Faux Linen | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWY-53160-sample-clean.jpg?v=1774481847",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Umber",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53160"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48163",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48163",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48163-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728337",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48163"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52783",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52783",
+ "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-52783-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734815",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52783"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53303",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53303",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53303-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710692",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53303"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49323",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49323",
+ "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/baccarat-vesper.jpg?v=1777480352",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Basil",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fern",
+ "Grasscloth",
+ "Green",
+ "Hazel",
+ "Hollywood Wallcoverings",
+ "Lemon",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Moss",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49323"
+ },
+ {
+ "sku": "jonesville-contemporary-durable-walls-xwf-52244",
+ "handle": "jonesville-contemporary-durable-walls-xwf-52244",
+ "title": "Jonesville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52244-sample-jonesville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775720088",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Organic Modern",
+ "Sage Green",
+ "Serene",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesville-contemporary-durable-walls-xwf-52244"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73012",
+ "handle": "benedict-canyon-sisal-hlw-73012",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73012-sample-clean.jpg?v=1774483022",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73012"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66595",
+ "handle": "patoa-librato-wallpaper-xb7-66595",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c3e2d869753c99ce0cf38d1028ba1308.jpg?v=1775131028",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "cellulose",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Entryway",
+ "Farmhouse",
+ "Geometric",
+ "Grasscloth",
+ "Living Room",
+ "Natural Wallcovering",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Tan",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66595"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010176",
+ "handle": "hollywood-tailored-xhw-2010176",
+ "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-exchange.jpg?v=1777480969",
+ "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",
+ "Modern",
+ "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-2010176"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53071",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53071",
+ "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-53071-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703570",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Red",
+ "Salmon",
+ "Solid",
+ "Terracotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53071"
+ },
+ {
+ "sku": "orford-type-ii-vinyl-wallcovering-xmz-48128",
+ "handle": "orford-type-ii-vinyl-wallcovering-xmz-48128",
+ "title": "Orford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmz-48128-sample-orford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728106",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Orford Type 2 Vinyl Wallcovering",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/orford-type-ii-vinyl-wallcovering-xmz-48128"
+ },
+ {
+ "sku": "necker-island-carmine",
+ "handle": "necker-island-carmine",
+ "title": "Native - Carmine Sustainable Bio-Based | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Aire-Bio_Native_Carmine.jpg?v=1772569993",
+ "tags": [
+ "Antimicrobial-Free",
+ "Architectural",
+ "Bedroom",
+ "Bio-Based",
+ "Bleach Cleanable",
+ "Burgundy",
+ "CA TB 117 Compliant",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Contemporary",
+ "Contract Grade",
+ "Dining Room",
+ "DWHQ",
+ "Eco-Friendly",
+ "Fabric",
+ "FR Additives Free",
+ "Green Building",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "IMO 8.2 Certified",
+ "IMO Marine Grade",
+ "LEED Compatible",
+ "Living Room",
+ "Matte",
+ "NFPA 260 Compliant",
+ "Paper",
+ "Performance Fabric",
+ "PFAS-Free",
+ "Phthalate-Free",
+ "Polyester Blend",
+ "Polyurethane Surface",
+ "PVC-Free",
+ "Red",
+ "Residential",
+ "Rustic",
+ "Smooth",
+ "Solid",
+ "Solid Color",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Uniform Texture",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/necker-island-carmine"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwj-52493",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwj-52493",
+ "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-52493-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733181",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Paper",
+ "Sand",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwj-52493"
+ },
+ {
+ "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": "olney-type-ii-vinyl-wallcovering-xmy-48105",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48105",
+ "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-48105-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727503",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Off-white",
+ "Olney Type 2 Vinyl",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48105"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73021",
+ "handle": "benedict-canyon-sisal-hlw-73021",
+ "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-73021-sample-clean.jpg?v=1774483069",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73021"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47324",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47324",
+ "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-47324-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704711",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blonde",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Ochre",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47324"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-411",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-411",
+ "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/74a40a225f8df7b1dd5e445e68572772_8d3cc930-8f2f-469e-b794-64b99ffc9953.jpg?v=1745458329",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-411"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73117",
+ "handle": "puna-drive-natural-grassweave-hlw-73117",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73117-sample-clean.jpg?v=1774483541",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73117"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6202",
+ "handle": "le-embossed-faux-grasscloth-xgr-6202",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6202-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721633",
+ "tags": [
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering",
+ "Warm Beige"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6202"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47649",
+ "handle": "fairford-vinyl-wallcovering-xlb-47649",
+ "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-47649-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711391",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47649"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52917",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52917",
+ "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-52917-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734479",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Slate Gray",
+ "Solid",
+ "Sophisticated",
+ "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-52917"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5037-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5037-jpg",
+ "title": "Dasma - Gold | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5037.jpg?v=1762291602",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Light Brown",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5037-jpg"
+ },
+ {
+ "sku": "carrara-ivory-chevron-grasscloth-wallcovering-fentucci",
+ "handle": "carrara-ivory-chevron-grasscloth-wallcovering-fentucci",
+ "title": "Carrara Ivory Chevron Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26200.jpg?v=1776879766",
+ "tags": [
+ "Carrara",
+ "Chevron",
+ "Fentucci",
+ "Grasscloth",
+ "Ivory",
+ "new-onboard",
+ "sample-only",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/carrara-ivory-chevron-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-404",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-404",
+ "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/0a493867b5e8c823759648a9cd0712f7_121e8384-243f-42ea-b8e8-cbc24ad0dbec.jpg?v=1745458347",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-404"
+ },
+ {
+ "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": "manatee-faux-vertical-stria-durable-walls-xwq-52981",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52981",
+ "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-nightshade.jpg?v=1777480717",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Smoke",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52981"
+ },
+ {
+ "sku": "mica-madness-real-cork-chip-wallpapers-mic-98619",
+ "handle": "mica-madness-real-cork-chip-wallpapers-mic-98619",
+ "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/63eee992e969fe1e17dc36ff1c34cc21.jpg?v=1775082493",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Commercial",
+ "Contemporary",
+ "Cork",
+ "Gray",
+ "Living Room",
+ "Mica",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Scandinavian",
+ "Silver Grey",
+ "Solid/Textural",
+ "Spa",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98619"
+ },
+ {
+ "sku": "wtw0410fire",
+ "handle": "wtw0410fire",
+ "title": "Fire Island Grass - Mocha | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0410FIRE.jpg?v=1745346321",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "FIRE ISLAND GRASS",
+ "Fire Island Grass - Mocha Wallcovering",
+ "Grasscloth",
+ "Gray",
+ "Scalamandre Wallcovering",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0410fire"
+ },
+ {
+ "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": "decorator-grasscloth-vol-2-by-phillipe-romano-488-435",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-435",
+ "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/78f52ca57b76e59f69cff39c1041ac0f_69a61f77-48ea-4d5e-a4fb-100b318c0c2c.jpg?v=1745458259",
+ "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",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-435"
+ },
+ {
+ "sku": "mica-madness-real-cork-chip-wallpapers-mic-98623",
+ "handle": "mica-madness-real-cork-chip-wallpapers-mic-98623",
+ "title": "Mica Madness Real Cork Chip s | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/905d59e1b5b1c169618cd7b5d6eb8959.jpg?v=1775082953",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Commercial",
+ "Cork",
+ "Entryway",
+ "Industrial",
+ "Living Room",
+ "Mica",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mica-madness-real-cork-chip-wallpapers-mic-98623"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-432",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-432",
+ "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/7c8272a092a426e603f26afa8d779efa_502e5c33-5e8e-417d-b3cf-52952008b997.jpg?v=1745458266",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-432"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48178",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48178",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48178-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728656",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48178"
+ },
+ {
+ "sku": "st-dennis-durable-vinyl-dur-72281",
+ "handle": "st-dennis-durable-vinyl-dur-72281",
+ "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-72281-sample-clean.jpg?v=1774485011",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-dennis-durable-vinyl-dur-72281"
+ },
+ {
+ "sku": "shubert-faux-rice-paper-durable-walls-xwj-52483",
+ "handle": "shubert-faux-rice-paper-durable-walls-xwj-52483",
+ "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-52483-sample-shubert-faux-rice-paper-durable-hollywood-wallcoverings.jpg?v=1775733124",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shubert-faux-rice-paper-durable-walls-xwj-52483"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52777",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52777",
+ "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-52777-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734787",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52777"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72042",
+ "handle": "saint-helene-durable-vinyl-dur-72042",
+ "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-72042-sample-clean.jpg?v=1774484099",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "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",
+ "Minimalist",
+ "Organic Modern",
+ "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/saint-helene-durable-vinyl-dur-72042"
+ },
+ {
+ "sku": "wtw0427fire",
+ "handle": "wtw0427fire",
+ "title": "Fire Island Grass - Clay | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0427FIRE.jpg?v=1745346319",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Commercial",
+ "FIRE ISLAND GRASS",
+ "Grasscloth",
+ "Scalamandre Wallcovering",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0427fire"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_em9513-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_em9513-jpg",
+ "title": "EM9513 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_em9512.jpg?v=1733873340",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "EM9513",
+ "Grasscloth",
+ "Light Green",
+ "Olive Green",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_em9513-jpg"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52350",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52350",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-chili_d09b5e5f-0db9-4802-8887-101bffa406fc.jpg?v=1777481302",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Orange",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Orange",
+ "Rustic",
+ "Tawny",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52350"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66406",
+ "handle": "jolie-madam-wallpaper-xa1-66406",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70a70e7c174ea8d2574ef9227b498658.jpg?v=1775120278",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Copper",
+ "Dining Room",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Red",
+ "Stripe",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66406"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52269",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52269",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52269-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721826",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52269"
+ },
+ {
+ "sku": "cote-marine-durable-vinyl-dur-72154",
+ "handle": "cote-marine-durable-vinyl-dur-72154",
+ "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-72154-sample-clean.jpg?v=1774484591",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "lattice",
+ "Light Beige",
+ "Living Room",
+ "Rustic",
+ "textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cote-marine-durable-vinyl-dur-72154"
+ },
+ {
+ "sku": "levant-chestnut-romo",
+ "handle": "levant-chestnut-romo",
+ "title": "Levant Chestnut | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW168-02-levant-wallcovering-chestnut_00.jpg?v=1776398507",
+ "tags": [
+ "Architectural",
+ "Background Color brown",
+ "beige",
+ "brown",
+ "Collage IV",
+ "Commercial",
+ "Deep Charcoal",
+ "Eclectic",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Levant",
+ "Lobby",
+ "Medium",
+ "MW168/02",
+ "Natural",
+ "Office",
+ "Reception Area",
+ "Romo",
+ "Rustic",
+ "Soft White",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm Taupe",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/levant-chestnut-romo"
+ },
+ {
+ "sku": "avorio-sand-grasscloth-wallcovering-fentucci",
+ "handle": "avorio-sand-grasscloth-wallcovering-fentucci",
+ "title": "Avorio Sand Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26210.jpg?v=1776879769",
+ "tags": [
+ "Avorio",
+ "Bedroom",
+ "Beige",
+ "Coastal",
+ "Dining Room",
+ "Entryway",
+ "Fentucci",
+ "Grasscloth",
+ "Living Room",
+ "needs-rescan",
+ "new-onboard",
+ "sample-only",
+ "Sand",
+ "Solid/Textural",
+ "Tan",
+ "Texture",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/avorio-sand-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "waterlily-drive-metal-and-wood-hlw-73077",
+ "handle": "waterlily-drive-metal-and-wood-hlw-73077",
+ "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-73077-sample-clean.jpg?v=1774483366",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork",
+ "Faux Wood",
+ "Floral",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/waterlily-drive-metal-and-wood-hlw-73077"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53760",
+ "handle": "juno-faux-silk-durable-walls-xje-53760",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53760-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720115",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53760"
+ },
+ {
+ "sku": "cesare-acoustical-walls-xvy-73252",
+ "handle": "cesare-acoustical-walls-xvy-73252",
+ "title": "Cesare Acoustical Walls",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/cc70f4b66cddb385c8f6a61d9bbce097.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 Gray",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Phillip Romano Commercial",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cesare-acoustical-walls-xvy-73252"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52219",
+ "handle": "jones-faux-grass-durable-walls-xwf-52219",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52219-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719921",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52219"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5047-jpg",
+ "title": "Dasma - Silver | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5047_50412f01-1807-46cc-9514-4d1f10afa98d.jpg?v=1762291983",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Minimalist",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5047-jpg"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52317",
+ "handle": "marketfield-faux-durable-walls-xwh-52317",
+ "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-calendula.jpg?v=1777480457",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52317"
+ },
+ {
+ "sku": "kent-grey-faux-grasscloth-wallpaper-cca-82929",
+ "handle": "kent-grey-faux-grasscloth-wallpaper-cca-82929",
+ "title": "Kent Grey Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4f7f1460723c345303dd79ee2f2ff3cb.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "LA Walls",
+ "Masculine",
+ "Natural",
+ "Natural Wallcovering",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kent-grey-faux-grasscloth-wallpaper-cca-82929"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72041",
+ "handle": "saint-helene-durable-vinyl-dur-72041",
+ "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-72041-sample-clean.jpg?v=1774484088",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72041"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72057",
+ "handle": "saint-helene-durable-vinyl-dur-72057",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72057-sample-clean.jpg?v=1774484187",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72057"
+ },
+ {
+ "sku": "steuben-wheat-turf-stripe-wallpaper-cca-83167",
+ "handle": "steuben-wheat-turf-stripe-wallpaper-cca-83167",
+ "title": "Steuben Wheat Turf Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2c41844e9e4c4cf5752f9573c81379fb.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Linen",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Steuben Wheat Turf Stripe Wallcovering",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "Wheat",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-wheat-turf-stripe-wallpaper-cca-83167"
+ },
+ {
+ "sku": "dwkk-128368",
+ "handle": "dwkk-128368",
+ "title": "W3492-6 Bronze | Kravet Design | Candice Olson Collection |Metallic Texture Wallcovering Grasscloth",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_6_b9ea4082-3b1c-4754-bb88-2982fcf8605a.jpg?v=1753122290",
+ "tags": [
+ "36In",
+ "Abstract",
+ "Antique Gold",
+ "Architectural",
+ "Bedroom",
+ "Candice Olson Collection",
+ "Color: Gold",
+ "Commercial",
+ "Contemporary",
+ "Cork",
+ "Cork - 100%",
+ "Dark Bronze",
+ "Dining Room",
+ "display_variant",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Korea",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Luxe",
+ "Natural Wallcovering",
+ "Organic Modern",
+ "Pale Gold",
+ "Republic Of",
+ "Rustic",
+ "Texture",
+ "Textured",
+ "W3492-6",
+ "W3492.6.0",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128368"
+ },
+ {
+ "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": "napoli-caramel-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "napoli-caramel-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Napoli Caramel Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27600.jpg?v=1776879838",
+ "tags": [
+ "Basketweave",
+ "Caramel",
+ "Fentucci",
+ "Grasscloth",
+ "Napoli",
+ "new-onboard",
+ "sample-only",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/napoli-caramel-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "hutch-raffia-ivory-lee-jofa-modern",
+ "handle": "hutch-raffia-ivory-lee-jofa-modern",
+ "title": "Hutch Raffia Ivory | Lee Jofa Modern",
+ "vendor": "Lee Jofa Modern",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GWP-3750_161.jpg?v=1776795834",
+ "tags": [
+ "Grasscloth",
+ "Hunt Slonem Belle Terre Wallcovering",
+ "HUTCH RAFFIA",
+ "Ivory",
+ "Kravet",
+ "Lee Jofa Modern",
+ "New Arrival",
+ "Origin: China",
+ "RAFFIA ON NONWOVEN",
+ "Wallcovering"
+ ],
+ "max_price": 6713.85,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hutch-raffia-ivory-lee-jofa-modern"
+ },
+ {
+ "sku": "cubism-drive-hlw-73050",
+ "handle": "cubism-drive-hlw-73050",
+ "title": "Cubism Drive | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73050-sample-clean.jpg?v=1774483223",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Chevron",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 159.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cubism-drive-hlw-73050"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72309",
+ "handle": "la-voltere-durable-vinyl-dur-72309",
+ "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-72309-sample-clean.jpg?v=1774485127",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72309"
+ },
+ {
+ "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47701",
+ "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47701",
+ "title": "Ferryhill Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47701-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712545",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ferryhill Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47701"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52100",
+ "handle": "canal-texture-durable-walls-xwd-52100",
+ "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-walnut.jpg?v=1777480409",
+ "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",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "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-52100"
+ },
+ {
+ "sku": "seres-plaster-romo",
+ "handle": "seres-plaster-romo",
+ "title": "Seres Plaster | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-02-seres-wallcovering-plaster_01.jpg?v=1776485686",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "Conference Room",
+ "Embossed Wallcovering",
+ "Grasscloth",
+ "Ivory",
+ "Kabu Wallcoverings",
+ "light beige",
+ "Lobby",
+ "Office",
+ "Romo",
+ "Scandinavian",
+ "Seres",
+ "Small",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W969/02",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seres-plaster-romo"
+ },
+ {
+ "sku": "assisi-straw-grasscloth-wallcovering-fentucci",
+ "handle": "assisi-straw-grasscloth-wallcovering-fentucci",
+ "title": "Assisi Straw Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27490.jpg?v=1776879795",
+ "tags": [
+ "Assisi",
+ "Fentucci",
+ "Grasscloth",
+ "new-onboard",
+ "sample-only",
+ "Straw",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/assisi-straw-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73029",
+ "handle": "benedict-canyon-sisal-hlw-73029",
+ "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-73029-sample-clean.jpg?v=1774483110",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Serene",
+ "Silver",
+ "Sisal",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73029"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73016",
+ "handle": "benedict-canyon-sisal-hlw-73016",
+ "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-73016-sample-clean.jpg?v=1774483035",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73016"
+ },
+ {
+ "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": "jonesville-contemporary-durable-walls-xwf-52235",
+ "handle": "jonesville-contemporary-durable-walls-xwf-52235",
+ "title": "Jonesville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52235-sample-jonesville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775720046",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Light Gray",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesville-contemporary-durable-walls-xwf-52235"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72266",
+ "handle": "essone-durable-vinyl-dur-72266",
+ "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-72266-sample-clean.jpg?v=1774484936",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Minimalist",
+ "Off-white",
+ "Pale Turquoise",
+ "Scandinavian",
+ "Serene",
+ "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-72266"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53223",
+ "handle": "doral-faux-silk-durable-walls-xwc-53223",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53223-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710296",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53223"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72050",
+ "handle": "saint-helene-durable-vinyl-dur-72050",
+ "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-72050-sample-clean.jpg?v=1774484146",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72050"
+ },
+ {
+ "sku": "dwkk-140156",
+ "handle": "dwkk-140156",
+ "title": "Mali Grasscloth - Ruby Burgundy/Red 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-3529_717_8b1572cf-7a4e-4dde-9f63-4c17cb84628e.jpg?v=1753291851",
+ "tags": [
+ "33.46In",
+ "Almond",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Biscuit",
+ "Blithfield",
+ "Burgundy/Red",
+ "Cedar",
+ "Cocoa",
+ "Commercial",
+ "display_variant",
+ "Geometric",
+ "Global",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hemp - 100%",
+ "Lee Jofa",
+ "Luxury",
+ "Mali Grasscloth",
+ "Pbfc-3529.717.0",
+ "Print",
+ "Red",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140156"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-438",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-438",
+ "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/738090259db5aee92051bf065230ecc2_6270dc8a-dc71-4494-befd-8b631dd3ae20.jpg?v=1745458251",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "Decorator Grasscloth Vol. 2",
+ "Denim",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Walnut",
+ "White"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-438"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201082",
+ "handle": "hollywood-skyline-xhw-201082",
+ "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-mayfair.jpg?v=1777480946",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 62.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201082"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48121",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48121",
+ "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-48121-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727853",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Olney Type 2 Vinyl Wallcovering",
+ "Sand",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48121"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72178",
+ "handle": "st-silken-durable-vinyl-dur-72178",
+ "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-72178-sample-clean.jpg?v=1774484685",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Tangerine",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silken-durable-vinyl-dur-72178"
+ },
+ {
+ "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": "ramsey-type-ii-vinyl-wallcovering-xph-48204",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48204",
+ "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-48204-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729871",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Chartreuse",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Pale Yellow",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48204"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-439",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-439",
+ "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/cb647430b242bdf2009deeab081d961b_20d3cb13-96e4-4bbb-9841-09106e269750.jpg?v=1745458248",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 12.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-439"
+ },
+ {
+ "sku": "ferryhill-type-ii-vinyl-wallcovering-xld-47706",
+ "handle": "ferryhill-type-ii-vinyl-wallcovering-xld-47706",
+ "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-47706-sample-ferryhill-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712668",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Celery",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Fern",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Moss",
+ "Off-white",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Spruce",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferryhill-type-ii-vinyl-wallcovering-xld-47706"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52320",
+ "handle": "marketfield-faux-durable-walls-xwh-52320",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-tamarind.jpg?v=1777480461",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Rustic",
+ "Sienna",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Umber",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52320"
+ },
+ {
+ "sku": "faux-wild-rice-fwr-9373",
+ "handle": "faux-wild-rice-fwr-9373",
+ "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-9373-sample-faux-wild-rice-hollywood-wallcoverings.jpg?v=1775712096",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Black",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Faux Finish",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Metallic",
+ "Textured",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 36.73,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-wild-rice-fwr-9373"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52075",
+ "handle": "canal-damask-durable-vinyl-xwa-52075",
+ "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-52075-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707042",
+ "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",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Ivory",
+ "Living Room",
+ "Luxe",
+ "Pattern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52075"
+ },
+ {
+ "sku": "seeing-circles-wallcovering-xsc-44289",
+ "handle": "seeing-circles-wallcovering-xsc-44289",
+ "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-44289-sample-seeing-circles-hollywood-wallcoverings.jpg?v=1775732882",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44289"
+ },
+ {
+ "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": "seres-cayenne-romo",
+ "handle": "seres-cayenne-romo",
+ "title": "Seres Cayenne | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-08-seres-wallcovering-cayenne_01.jpg?v=1776484933",
+ "tags": [
+ "Architectural",
+ "Background Color brown",
+ "brown",
+ "Burnt Sienna",
+ "Commercial",
+ "Conference Room",
+ "Embossed Wallcovering",
+ "Grasscloth",
+ "Kabu Wallcoverings",
+ "Light Beige",
+ "Lobby",
+ "Natural",
+ "Office",
+ "orange",
+ "Romo",
+ "Rustic",
+ "Seres",
+ "Small",
+ "Stripe",
+ "tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W969/08",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seres-cayenne-romo"
+ },
+ {
+ "sku": "groveland-vertical-durable-walls-xwt-53427",
+ "handle": "groveland-vertical-durable-walls-xwt-53427",
+ "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-53427-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715097",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53427"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47320",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47320",
+ "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-47320-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704604",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47320"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53630",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53630",
+ "title": "Hawthorne Faux Vertical Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53630-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716667",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53630"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72290",
+ "handle": "la-voltere-durable-vinyl-dur-72290",
+ "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-72290-sample-clean.jpg?v=1774485056",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Durable Type 2 Vinyl",
+ "Gray",
+ "Grey",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Silver",
+ "Solid",
+ "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-72290"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52932",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52932",
+ "title": "St Joseph Embossed Contemporary Faux Vertical Stria | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWQ-52932-sample-clean.jpg?v=1774481744",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Rustic",
+ "Solid",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52932"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53611",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53611",
+ "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-garden.jpg?v=1777480895",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Gold",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Rustic",
+ "Terra Cotta",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53611"
+ },
+ {
+ "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": "rivo-dulce-durable-vinyl-dur-72412",
+ "handle": "rivo-dulce-durable-vinyl-dur-72412",
+ "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-72412-sample-clean.jpg?v=1774485435",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Off-white",
+ "Rivo Dulce Durable Vinyl",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72412"
+ },
+ {
+ "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": "henna-horizontal-grasscloth-wallpaper-trf-56886",
+ "handle": "henna-horizontal-grasscloth-wallpaper-trf-56886",
+ "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/75d64397a60425f0ee126c692e6fd0c8.jpg?v=1750789676",
+ "tags": [
+ "Architectural",
+ "Asian",
+ "beach",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "light grey",
+ "Light Yellow",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Pale Yellow",
+ "pale yellow/green",
+ "Prepasted - Washable - Strippable",
+ "Scandinavian",
+ "Series: York",
+ "Stripe",
+ "textured",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/henna-horizontal-grasscloth-wallpaper-trf-56886"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73130",
+ "handle": "hilo-highway-diamond-grass-hlw-73130",
+ "title": "Hilo Highway - Diamond Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73130-sample-clean.jpg?v=1774483618",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Grey",
+ "Farmhouse",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73130"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52351",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52351",
+ "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-off_white.jpg?v=1777480512",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Champagne",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Pale Yellow",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52351"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73071",
+ "handle": "reeds-drive-wild-grass-hlw-73071",
+ "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-73071-sample-clean.jpg?v=1774483334",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Medium Brown",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73071"
+ },
+ {
+ "sku": "john-s-thick-embossed-vinyl-xjt-44459",
+ "handle": "john-s-thick-embossed-vinyl-xjt-44459",
+ "title": "John's Thick Embossed Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XJT-44459-clean_5cf8e8dc-14f4-450f-bbaf-e9cec102a2e3.jpg?v=1774479163",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Basketweave",
+ "Black",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Ochre",
+ "Office",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/john-s-thick-embossed-vinyl-xjt-44459"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_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": "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": "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": "milano-pewter-metallic-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "milano-pewter-metallic-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Milano Pewter Metallic Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27400.jpg?v=1776879788",
+ "tags": [
+ "Fentucci",
+ "Grasscloth",
+ "Metallic Basketweave",
+ "Milano",
+ "new-onboard",
+ "Pewter",
+ "sample-only",
+ "Texture",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milano-pewter-metallic-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "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": "baja-grasscloth-vinyl-wallpaper-xbg-44005",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44005",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44005-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701951",
+ "tags": [
+ "ASTM E84 Class A",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44005"
+ },
+ {
+ "sku": "route-66-car-wallpaper-scr-7924",
+ "handle": "route-66-car-wallpaper-scr-7924",
+ "title": "Route 66 Car Wallcovering",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/27d45a4274defe7dc914a6fca2ac5134.jpg?v=1572309084",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Berry",
+ "Brick",
+ "Burgundy",
+ "Carmine",
+ "Claret",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Contemporary",
+ "Cordovan",
+ "Designer Wallcoverings",
+ "Garnet",
+ "Linen",
+ "Merlot",
+ "Oxblood",
+ "Paper",
+ "Pink",
+ "Pinks White",
+ "Raisin",
+ "Red",
+ "Route 66 Car Wallcovering",
+ "Screen Print",
+ "Shell",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/route-66-car-wallpaper-scr-7924"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66414",
+ "handle": "jolie-madam-wallpaper-xa1-66414",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1e30224a2bb9f731a29dc99b5d181e9b.jpg?v=1775121193",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Jolie Madam Wallcovering",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Smoke",
+ "Stripe",
+ "Textural",
+ "Textured",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66414"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73031",
+ "handle": "benedict-canyon-sisal-hlw-73031",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73031-sample-clean.jpg?v=1774483123",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73031"
+ },
+ {
+ "sku": "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": "fairford-vinyl-wallcovering-xlb-47651",
+ "handle": "fairford-vinyl-wallcovering-xlb-47651",
+ "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-47651-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711441",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47651"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53474",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53474",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWT-53474-sample-clean.jpg?v=1774482107",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53474"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829",
+ "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-ivory_tower.jpg?v=1777480700",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52829"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-429",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-429",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/93bc5f27a0ec617a8312f573ec4ca106_a6df4578-7a11-4ef6-8031-abcd62a3a28a.jpg?v=1745458274",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-429"
+ },
+ {
+ "sku": "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": "rochester-type-ii-vinyl-wallcovering-xpk-48225",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48225",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48225-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775730972",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48225"
+ },
+ {
+ "sku": "marseilles-wallpaper-xp3-68073",
+ "handle": "marseilles-wallpaper-xp3-68073",
+ "title": "Marseilles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6d9845dbb93e91c9b9225eff2e146844.jpg?v=1733882132",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Marseilles Vinyl",
+ "Phillip Romano Commercial",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-wallpaper-xp3-68073"
+ },
+ {
+ "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": "hanover-faux-embossed-faux-linen-walls-xwy-53173",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53173",
+ "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-iron_buff.jpg?v=1777480792",
+ "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",
+ "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 Brown",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Oatmeal",
+ "Rustic",
+ "Sand",
+ "Taupe",
+ "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-53173"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5043-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5043-jpg",
+ "title": "Dasma - Taupe | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5043.jpg?v=1762291835",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Light Brown",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5043-jpg"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73115",
+ "handle": "puna-drive-natural-grassweave-hlw-73115",
+ "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-73115-sample-clean.jpg?v=1774483531",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Puna Drive",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Tropical",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 43.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73115"
+ },
+ {
+ "sku": "brazilia-cork-vinyl-cork-804",
+ "handle": "brazilia-cork-vinyl-cork-804",
+ "title": "Brazilia Cork Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CORK-804-sample-clean.jpg?v=1774479004",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brazilia Cork Vinyl",
+ "Brown",
+ "Brown Java",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork",
+ "Cotton",
+ "Dark Brown",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Organic Modern",
+ "Polyester",
+ "Portugal Cork",
+ "Rustic",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 169.65,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brazilia-cork-vinyl-cork-804"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52355",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52355",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-glade.jpg?v=1777480520",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Bedroom",
+ "Brown",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52355"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47766",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47766",
+ "title": "Halewood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xlj-47766-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715663",
+ "tags": [
+ "Almond",
+ "Beige",
+ "Bronze",
+ "Coral",
+ "Faux Wood",
+ "Java",
+ "Linen",
+ "Mink",
+ "Mocha",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Stone",
+ "Taupe",
+ "Teal",
+ "Umber",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47766"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72175",
+ "handle": "st-silken-durable-vinyl-dur-72175",
+ "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-72175-sample-clean.jpg?v=1774484675",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Teal",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Seafoam Green",
+ "Serene",
+ "Solid",
+ "Teal",
+ "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-72175"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48201",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48201",
+ "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-48201-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729790",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48201"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47318",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47318",
+ "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-47318-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704553",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47318"
+ },
+ {
+ "sku": "bellaire-faux-finish-durable-walls-xww-53064",
+ "handle": "bellaire-faux-finish-durable-walls-xww-53064",
+ "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-53064-sample-bellaire-faux-finish-durable-hollywood-wallcoverings.jpg?v=1775703549",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bellaire-faux-finish-durable-walls-xww-53064"
+ },
+ {
+ "sku": "barocco-linen-cream-wallcovering-versace-1",
+ "handle": "barocco-linen-cream-wallcovering-versace-1",
+ "title": "Barocco Linen Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/667726f3e15a08df98b645c2abdab5a7.jpg?v=1773710515",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Barocco Linen",
+ "Barocco Linen Cream Wallcovering",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Luxury",
+ "Needs-Image",
+ "Off-white",
+ "Paste the wall",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barocco-linen-cream-wallcovering-versace-1"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47308",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47308",
+ "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-47308-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704293",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47308"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58130",
+ "handle": "jutely-vinyl-dwx-58130",
+ "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-58130-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720302",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Durable",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Jute",
+ "Light Brown",
+ "Natural Look",
+ "Neutral",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58130"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br011-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br011-jpg",
+ "title": "BR011 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br010.jpg?v=1733873689",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Linen",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br011-jpg"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_grv-2892_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_grv-2892_8-jpg",
+ "title": "Grove - Khaki | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/grv-2892_8.jpg?v=1762296236",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Grasscloth",
+ "Grove",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_grv-2892_8-jpg"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52838",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52838",
+ "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-silver_and_gold.jpg?v=1777480713",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chataqua Metallic Contemporary Durable Vinyl",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52838"
+ },
+ {
+ "sku": "essone-durable-vinyl-dur-72271",
+ "handle": "essone-durable-vinyl-dur-72271",
+ "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-72271-sample-clean.jpg?v=1774484961",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Sky Blue",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/essone-durable-vinyl-dur-72271"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48174",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48174",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48174-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728569",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Office",
+ "Orange",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48174"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48202",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48202",
+ "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-48202-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729815",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Ecru",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-White",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48202"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010180",
+ "handle": "hollywood-tailored-xhw-2010180",
+ "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-solaire_4ddd8e59-7726-4952-8e48-b28f153ded6c.jpg?v=1777480977",
+ "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",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Pale Grey",
+ "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-2010180"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73026",
+ "handle": "benedict-canyon-sisal-hlw-73026",
+ "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-73026-sample-clean.jpg?v=1774483093",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Champagne",
+ "Color: Metallic",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Glass Bead",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Grey",
+ "Metallic",
+ "Modern",
+ "Mosaic",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Powder Room",
+ "Silver",
+ "Sisal",
+ "Sophisticated",
+ "Textured",
+ "Tile",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73026"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72403",
+ "handle": "rivo-dulce-durable-vinyl-dur-72403",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72403-sample-clean.jpg?v=1774485391",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Oatmeal",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Sand",
+ "Serene",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72403"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52344",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52344",
+ "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-linen.jpg?v=1777480499",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52344"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53537",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53537",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-beige.jpg?v=1777480867",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic",
+ "Organic Modern",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53537"
+ },
+ {
+ "sku": "hollywood-tailored-xhw-2010189",
+ "handle": "hollywood-tailored-xhw-2010189",
+ "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-grand_banks.jpg?v=1777480988",
+ "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",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tailored-xhw-2010189"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52225",
+ "handle": "jones-faux-grass-durable-walls-xwf-52225",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52225-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719969",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52225"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48118",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48118",
+ "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-48118-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727791",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Olney Type 2 Vinyl",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48118"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53319",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53319",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53319-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710825",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53319"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3323_8-jpg",
+ "title": "Hugo - Khaki | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3323_8.jpg?v=1762297605",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Grasscloth",
+ "Gray",
+ "Herringbone",
+ "Hugo",
+ "Light Gray",
+ "Linen",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3323_8-jpg"
+ },
+ {
+ "sku": "marseilles-wallpaper-xp3-68074",
+ "handle": "marseilles-wallpaper-xp3-68074",
+ "title": "Marseilles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7688fb217fd2c97b3eba54c9ebe7a1ba.jpg?v=1733882134",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Marseilles Vinyl",
+ "Phillip Romano Commercial",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-wallpaper-xp3-68074"
+ },
+ {
+ "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": "benedict-canyon-sisal-hlw-73039",
+ "handle": "benedict-canyon-sisal-hlw-73039",
+ "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-73039-sample-clean.jpg?v=1774483161",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 51.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73039"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47663",
+ "handle": "fairford-vinyl-wallcovering-xlb-47663",
+ "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-47663-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711767",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47663"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73123",
+ "handle": "puna-drive-natural-grassweave-hlw-73123",
+ "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-73123-sample-clean.jpg?v=1774483569",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sage",
+ "Tan",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73123"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72295",
+ "handle": "la-voltere-durable-vinyl-dur-72295",
+ "title": "la Voltere Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72295-sample-clean.jpg?v=1774485081",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Forest Green",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Hunter Green",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72295"
+ },
+ {
+ "sku": "plait-bark-romo",
+ "handle": "plait-bark-romo",
+ "title": "Plait Bark | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW146-01-plait-wallcovering-bark_01.jpg?v=1776398626",
+ "tags": [
+ "Architectural",
+ "Background Color brown",
+ "beige",
+ "brown",
+ "Burnished Bronze",
+ "Collage IV",
+ "Commercial",
+ "Deep Charcoal",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Hotel Room",
+ "Ivory",
+ "Lobby",
+ "MW146/01",
+ "Office",
+ "Plait",
+ "Romo",
+ "Rustic",
+ "Small",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/plait-bark-romo"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-443",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-443",
+ "title": "Decorator Grasscloth Vol. 2 | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91fa005dd85d87226d97c791f98ede3d_8ef48979-d4e2-44be-992f-9c69f8363e31.jpg?v=1745458238",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-443"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201078",
+ "handle": "hollywood-skyline-xhw-201078",
+ "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-duchess.jpg?v=1777480941",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "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 Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 62.77,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-skyline-xhw-201078"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73005",
+ "handle": "benedict-canyon-sisal-hlw-73005",
+ "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-73005-sample-clean.jpg?v=1774482997",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Sand",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 87.35,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73005"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53289",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53289",
+ "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-53289-sample-clean.jpg?v=1774481983",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Orange",
+ "Red",
+ "Russet",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53289"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58157",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58157-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725488",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58157"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-423",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-423",
+ "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/b79a72bfad03de11927b3dfeff945d96_4d86553f-be00-4f7e-a4c3-dc78e0a7ed57.jpg?v=1745458290",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Fabric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Greige",
+ "Lemon",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-423"
+ },
+ {
+ "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": "decorator-grasscloth-vol-2-by-phillipe-romano-488-444",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-444",
+ "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/52b3ace36d45ee3034fed930887c5356_916f6881-3771-4ed3-a0de-dc9bde3f576e.jpg?v=1745458236",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Off-white",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 21.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-444"
+ },
+ {
+ "sku": "groveland-vertical-durable-walls-xwt-53430",
+ "handle": "groveland-vertical-durable-walls-xwt-53430",
+ "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-53430-sample-groveland-vertical-durable-hollywood-wallcoverings.jpg?v=1775715113",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/groveland-vertical-durable-walls-xwt-53430"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72048",
+ "handle": "saint-helene-durable-vinyl-dur-72048",
+ "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-72048-sample-clean.jpg?v=1774484133",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Sand",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72048"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48182",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48182",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48182-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728733",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48182"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53768",
+ "handle": "juno-faux-silk-durable-walls-xje-53768",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53768-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720159",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53768"
+ },
+ {
+ "sku": "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": "benedict-canyon-sisal-hlw-73017",
+ "handle": "benedict-canyon-sisal-hlw-73017",
+ "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-73017-sample-clean.jpg?v=1774483047",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 54.74,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73017"
+ },
+ {
+ "sku": "baja-grasscloth-vinyl-wallpaper-xbg-44010",
+ "handle": "baja-grasscloth-vinyl-wallpaper-xbg-44010",
+ "title": "Baja Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xbg-44010-sample-baja-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775701968",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Ivory",
+ "Natural",
+ "Natural Texture",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baja-grasscloth-vinyl-wallpaper-xbg-44010"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72183",
+ "handle": "st-silkey-durable-vinyl-dur-72183",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72183-sample-clean.jpg?v=1774484710",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Mint",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Aqua",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72183"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5039-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5039-jpg",
+ "title": "Dasma - Ivory | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5039.jpg?v=1762291680",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Light Beige",
+ "Off-white",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5039-jpg"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52090",
+ "handle": "canal-texture-durable-walls-xwa-52090",
+ "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-willow.jpg?v=1777480391",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Gold",
+ "Grasscloth",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Pale Olive",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwa-52090"
+ },
+ {
+ "sku": "laurel-hills-panels-hlw-73139",
+ "handle": "laurel-hills-panels-hlw-73139",
+ "title": "Laurel Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73139-sample-clean.jpg?v=1774483686",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Japonisme",
+ "Laurel Hills",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 130.83,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/laurel-hills-panels-hlw-73139"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53693",
+ "handle": "westville-contemporary-durable-walls-xje-53693",
+ "title": "Westville Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53693-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736492",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Golden Brown",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Office",
+ "Organic Modern",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53693"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73131",
+ "handle": "hilo-highway-diamond-grass-hlw-73131",
+ "title": "Hilo Highway - Diamond Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73131-sample-clean.jpg?v=1774483626",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive Green",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive",
+ "Organic",
+ "Rustic",
+ "Textured",
+ "Traditional",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73131"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwj-52396",
+ "handle": "prince-vertical-emboss-durable-walls-xwj-52396",
+ "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-opera_white.jpg?v=1777480571",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Grey",
+ "Linen",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwj-52396"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72080",
+ "handle": "la-roche-durable-vinyl-dur-72080",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72080-sample-clean.jpg?v=1774484320",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Orange",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Orange",
+ "Rustic",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72080"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52221",
+ "handle": "jones-faux-grass-durable-walls-xwf-52221",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52221-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719937",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52221"
+ },
+ {
+ "sku": "flagler-embossed-durable-walls-xwq-52973",
+ "handle": "flagler-embossed-durable-walls-xwq-52973",
+ "title": "Flagler Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwq-52973-sample-flagler-embossed-durable-hollywood-wallcoverings.jpg?v=1775713325",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Gold",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Primary Suite",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/flagler-embossed-durable-walls-xwq-52973"
+ },
+ {
+ "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": "barnard-type-ii-vinyl-wallcovering-xjp-47224",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47224",
+ "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-47224-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702447",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Almond",
+ "Architectural",
+ "Background Color Brown",
+ "Black",
+ "Brick",
+ "Brown",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Conference Room",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Primary Suite",
+ "Rosewood",
+ "Sepia",
+ "Solid",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47224"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52931",
+ "handle": "st-joseph-embossed-contemporary-faux-vertical-stria-walls-xwq-52931",
+ "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-52931-sample-st-joseph-embossed-contemporary-faux-vertical-stria-hollywood-wallcoverings.jpg?v=1775734528",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Ochre",
+ "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-52931"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sp10206-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sp10206-jpg",
+ "title": "SP10206 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sp10205.jpg?v=1733872393",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Linen",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sp10206-jpg"
+ },
+ {
+ "sku": "kia-island-palm-shadow-wallpaper-trf-56860",
+ "handle": "kia-island-palm-shadow-wallpaper-trf-56860",
+ "title": "Kia Island Palm Shadow | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ab0187666f11ab54b914c945ecb48a19.jpg?v=1750789730",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "jungle",
+ "large scale",
+ "leaf",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "palm",
+ "Prepasted - Washable - Strippable",
+ "rain forest",
+ "Series: York",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "trees",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kia-island-palm-shadow-wallpaper-trf-56860"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5038-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5038-jpg",
+ "title": "Dasma - Buff | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5038.jpg?v=1762291641",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract",
+ "Cream",
+ "Dasma",
+ "Grasscloth",
+ "Light Brown",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5038-jpg"
+ },
+ {
+ "sku": "gregory-diamonds-drive-hlw-73042",
+ "handle": "gregory-diamonds-drive-hlw-73042",
+ "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-73042-sample-gregory-diamonds-drive-hollywood-wallcoverings.jpg?v=1775714870",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gregory-diamonds-drive-hlw-73042"
+ },
+ {
+ "sku": "hawthorne-faux-vertical-silk-durable-walls-xwo-53632",
+ "handle": "hawthorne-faux-vertical-silk-durable-walls-xwo-53632",
+ "title": "Hawthorne Faux Vertical Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53632-sample-hawthorne-faux-vertical-silk-durable-hollywood-wallcoverings.jpg?v=1775716685",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen Texture",
+ "Living Room",
+ "Tan",
+ "Textured",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hawthorne-faux-vertical-silk-durable-walls-xwo-53632"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47950",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47950",
+ "title": "Maidstone - Sage 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-topaz_tan.jpg?v=1777480148",
+ "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",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off-White",
+ "Office",
+ "Sophisticated",
+ "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-47950"
+ },
+ {
+ "sku": "corkytown-real-cork-wallpaper-cork-98613",
+ "handle": "corkytown-real-cork-wallpaper-cork-98613",
+ "title": "Corkytown Real Cork | Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/053741b2baef5307f3163caaa9a31b45.jpg?v=1775081797",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Commercial",
+ "Cork",
+ "Hotel Lobby",
+ "Industrial",
+ "Living Room",
+ "Natural",
+ "Naturals",
+ "Office",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Silver",
+ "Solid/Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Wuhan Woven Wallcovering"
+ ],
+ "max_price": 34.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/corkytown-real-cork-wallpaper-cork-98613"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-440",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-440",
+ "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/8970edc6a9ddd89d63d94f66b98c7b26_9028b00b-8b7e-4bc5-bf26-9d99f91e5d4f.jpg?v=1745458246",
+ "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",
+ "Light Gray",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Stripe",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 16.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-440"
+ },
+ {
+ "sku": "ellsworth-butter-sunny-stripe-wallpaper-cca-83147",
+ "handle": "ellsworth-butter-sunny-stripe-wallpaper-cca-83147",
+ "title": "Ellsworth Butter Sunny Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ee4dc963f8c221e08bcf7fd2f7c0c5b2.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Country",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Linen",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ellsworth-butter-sunny-stripe-wallpaper-cca-83147"
+ },
+ {
+ "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": "hallandale-rice-paper-effect-durable-walls-xwt-53468",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53468",
+ "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-53468-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715883",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallandale Rice Paper Effect Durable",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "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-53468"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52282",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52282",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52282-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721929",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Stain Repellant",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52282"
+ },
+ {
+ "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": "martin-s-metallic-grasscloth-vinyl-dwx-58168",
+ "handle": "martin-s-metallic-grasscloth-vinyl-dwx-58168",
+ "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-58168-sample-martin-s-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775724221",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Taupe",
+ "Textured",
+ "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-58168"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52799",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52799",
+ "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-atmosphere.jpg?v=1777480672",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52799"
+ },
+ {
+ "sku": "decorator-grasscloth-vol-2-by-phillipe-romano-488-425",
+ "handle": "decorator-grasscloth-vol-2-by-phillipe-romano-488-425",
+ "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/bd8cd12001cb7792be2c374bf7a2a4be_1521d36e-e917-41fd-9270-696692aaf979.jpg?v=1745458285",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Decorator Grasscloth Vol. 2",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Light Brown",
+ "Natural",
+ "Natural Wallcovering",
+ "Naturals",
+ "Phillipe Romano",
+ "Phillipe Romano Naturals",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 19.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/decorator-grasscloth-vol-2-by-phillipe-romano-488-425"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52806",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52806",
+ "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-sunlight.jpg?v=1777480686",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xws-52806"
+ },
+ {
+ "sku": "varick-durable-walls-xwp-52606",
+ "handle": "varick-durable-walls-xwp-52606",
+ "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-52606-sample-varick-durable-hollywood-wallcoverings.jpg?v=1775735679",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/varick-durable-walls-xwp-52606"
+ },
+ {
+ "sku": "juno-faux-silk-durable-walls-xje-53756",
+ "handle": "juno-faux-silk-durable-walls-xje-53756",
+ "title": "Juno Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xje-53756-sample-juno-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775720099",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Juno Faux Silk Durable",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/juno-faux-silk-durable-walls-xje-53756"
+ },
+ {
+ "sku": "horse-shoe-contemporary-bay-durable-walls-xje-53726",
+ "handle": "horse-shoe-contemporary-bay-durable-walls-xje-53726",
+ "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-53726-sample-horse-shoe-contemporary-bay-durable-hollywood-wallcoverings.jpg?v=1775719241",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Living Room",
+ "Modern",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Vinyl",
+ "Wallcovering",
+ "Year of the Horse",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/horse-shoe-contemporary-bay-durable-walls-xje-53726"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lyr-3382_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lyr-3382_8-jpg",
+ "title": "Lyra - Linen | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lyr-3382_8.jpg?v=1762300054",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Gray",
+ "Linen",
+ "Lyra",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lyr-3382_8-jpg"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73069",
+ "handle": "reeds-drive-wild-grass-hlw-73069",
+ "title": "Reeds Drive - Wild Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73069-sample-clean.jpg?v=1774483325",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Blue",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Teal",
+ "Textured",
+ "Tropical",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73069"
+ },
+ {
+ "sku": "st-silkey-durable-vinyl-dur-72187",
+ "handle": "st-silkey-durable-vinyl-dur-72187",
+ "title": "St. Silkey Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72187-sample-clean.jpg?v=1774484719",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-silkey-durable-vinyl-dur-72187"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72040",
+ "handle": "saint-helene-durable-vinyl-dur-72040",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72040-sample-clean.jpg?v=1774484083",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Taupe",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72040"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwa-52095",
+ "handle": "canal-texture-durable-walls-xwa-52095",
+ "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-red.jpg?v=1777480400",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Terracotta",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Color: Red",
+ "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",
+ "Light Terracotta",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Red",
+ "Rustic",
+ "Stripe",
+ "Terracotta",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "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-xwa-52095"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52215",
+ "handle": "jones-faux-grass-durable-walls-xwf-52215",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52215-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719889",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52215"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52208",
+ "handle": "jones-faux-grass-durable-walls-xwf-52208",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52208-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719835",
+ "tags": [
+ "Beige",
+ "Charcoal",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Ivory",
+ "Khaki",
+ "Leed Walls",
+ "Lilac",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Teal",
+ "Textured",
+ "Umber",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52208"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72010",
+ "handle": "marseilles-durable-vinyl-dur-72010",
+ "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-72010-sample-clean.jpg?v=1774483958",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Ecru",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72010"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47331",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47331",
+ "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-47331-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704900",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47331"
+ },
+ {
+ "sku": "lenox-faux-linen-finish-durable-walls-xwf-52275",
+ "handle": "lenox-faux-linen-finish-durable-walls-xwf-52275",
+ "title": "Lenox Faux Linen Finish Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52275-sample-lenox-faux-linen-finish-durable-hollywood-wallcoverings.jpg?v=1775721873",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Stain Repellant",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 61.9,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lenox-faux-linen-finish-durable-walls-xwf-52275"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72052",
+ "handle": "saint-helene-durable-vinyl-dur-72052",
+ "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-72052-sample-clean.jpg?v=1774484156",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Green",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Olive",
+ "Organic Modern",
+ "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-helene-durable-vinyl-dur-72052"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72047",
+ "handle": "saint-helene-durable-vinyl-dur-72047",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72047-sample-clean.jpg?v=1774484125",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Solid",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72047"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66590",
+ "handle": "patoa-librato-wallpaper-xb7-66590",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2fbb7887a4dadbf18037ea6c6961c68f.jpg?v=1775130389",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "cellulose",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Natural Wallcovering",
+ "Off-white",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66590"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52688",
+ "handle": "vernon-durable-walls-xwp-52688",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52688-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735756",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52688"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53619",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53619",
+ "title": "Pippy's Peacock - Silver Room Setting Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tableau-terra_cotta.jpg?v=1777480910",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Rustic",
+ "Sienna",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53619"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52323",
+ "handle": "marketfield-faux-durable-walls-xwh-52323",
+ "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-hibiscus.jpg?v=1777480466",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Red",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52323"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66415",
+ "handle": "jolie-madam-wallpaper-xa1-66415",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9b55df6d166a8f9d3809d6c395cbc479.jpg?v=1775121298",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Hotel Lobby",
+ "Jolie Madam Wallcovering",
+ "Light Gray",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Stripe",
+ "Striped",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66415"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47948",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47948",
+ "title": "Maidstone - Espresso 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-autumn_agate.jpg?v=1777480146",
+ "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",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Office",
+ "Sophisticated",
+ "Stone Look",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47948"
+ },
+ {
+ "sku": "sumatra-by-innovations-usa-dwc-sumatra-1",
+ "handle": "sumatra-by-innovations-usa-dwc-sumatra-1",
+ "title": "Sumatra | Innovations USA",
+ "vendor": "Innovations USA",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Sumatra-1.jpg?v=1736199054",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Innovations USA",
+ "Light Gray",
+ "Stripe",
+ "Sumatra",
+ "Sumatra-1",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sumatra-by-innovations-usa-dwc-sumatra-1"
+ },
+ {
+ "sku": "st-silken-durable-vinyl-dur-72179",
+ "handle": "st-silken-durable-vinyl-dur-72179",
+ "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-72179-sample-clean.jpg?v=1774484690",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Dusty Blue",
+ "Grasscloth",
+ "Gray",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Serene",
+ "Slate Blue",
+ "Solid",
+ "Textured",
+ "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-72179"
+ },
+ {
+ "sku": "hollywood-skyline-xhw-201084",
+ "handle": "hollywood-skyline-xhw-201084",
+ "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-monarch.jpg?v=1777480949",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Brown",
+ "Bedroom",
+ "Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sand",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "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-201084"
+ },
+ {
+ "sku": "dwkk-128363",
+ "handle": "dwkk-128363",
+ "title": "Kravet Design - W3492-11 Gold Natural Wallcovering | Kravet",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3492_11_145d5933-3ce2-4e27-afd1-8205c9297c6b.jpg?v=1753122304",
+ "tags": [
+ "36In",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Candice Olson Collection",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Contemporary",
+ "Cork - 100%",
+ "display_variant",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Korea",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Natural Wallcovering",
+ "Organic Modern",
+ "Republic Of",
+ "Rustic",
+ "Texture",
+ "Textured",
+ "Umber",
+ "Vinyl",
+ "W3492-11",
+ "W3492.11.0",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128363"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73172",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73172",
+ "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-73172-sample-clean.jpg?v=1774483882",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73172"
+ },
+ {
+ "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": "brooker-contemporary-durable-walls-xww-52999",
+ "handle": "brooker-contemporary-durable-walls-xww-52999",
+ "title": "Brooker Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gramercy-birdcage.jpg?v=1777480750",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sophisticated",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/brooker-contemporary-durable-walls-xww-52999"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53315",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53315",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53315-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710792",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53315"
+ },
+ {
+ "sku": "la-voltere-durable-vinyl-dur-72305",
+ "handle": "la-voltere-durable-vinyl-dur-72305",
+ "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-72305-sample-clean.jpg?v=1774485112",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Sand",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-voltere-durable-vinyl-dur-72305"
+ },
+ {
+ "sku": "spoleto-bone-horizontal-grasscloth-wallcovering-fentucci",
+ "handle": "spoleto-bone-horizontal-grasscloth-wallcovering-fentucci",
+ "title": "Spoleto Bone Horizontal Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27550.jpg?v=1776879819",
+ "tags": [
+ "Bedroom",
+ "Beige",
+ "Bone",
+ "Coastal",
+ "Cream",
+ "Entryway",
+ "Fentucci",
+ "Grasscloth",
+ "Horizontal",
+ "Living Room",
+ "new-onboard",
+ "Office",
+ "sample-only",
+ "Scandinavian",
+ "Solid/Textural",
+ "Spoleto",
+ "Texture",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/spoleto-bone-horizontal-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72226",
+ "handle": "saint-lore-durable-vinyl-dur-72226",
+ "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-72226-sample-clean.jpg?v=1774484814",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72226"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dsm-5041-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dsm-5041-jpg",
+ "title": "Dasma - Parchment | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dsm-5041.jpg?v=1762291757",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Dasma",
+ "Grasscloth",
+ "Gray",
+ "Light Gray",
+ "Parchment",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dsm-5041-jpg"
+ },
+ {
+ "sku": "riad-iznik-romo",
+ "handle": "riad-iznik-romo",
+ "title": "Riad Iznik | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW173-01-riad-wallcovering-iznik_01.jpg?v=1776398540",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "brown",
+ "Burnished Bronze",
+ "Collage IV",
+ "Commercial",
+ "Conference Room",
+ "Contemporary",
+ "Geometric",
+ "Grasscloth",
+ "Handcrafted Wallcovering",
+ "Light Beige",
+ "Lobby",
+ "Medium",
+ "Midnight Navy",
+ "Minimalist",
+ "MW173/01",
+ "Natural",
+ "navy",
+ "Office",
+ "Riad",
+ "Romo",
+ "Scandinavian",
+ "Stripe",
+ "Texture",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/riad-iznik-romo"
+ },
+ {
+ "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": "seres-clay-romo",
+ "handle": "seres-clay-romo",
+ "title": "Seres Clay | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-04-seres-wallcovering-clay_01.jpg?v=1776485186",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "cream",
+ "Embossed Wallcovering",
+ "Grasscloth",
+ "Ivory",
+ "Kabu Wallcoverings",
+ "light brown",
+ "Lobby",
+ "Natural",
+ "Office",
+ "Reception Area",
+ "Romo",
+ "Scandinavian",
+ "Seres",
+ "Small",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W969/04",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seres-clay-romo"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73055",
+ "handle": "coldwater-hills-panels-hlw-73055",
+ "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-73055-sample-clean.jpg?v=1774483239",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Sisal",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73055"
+ },
+ {
+ "sku": "eur-80437-ncw4493-designer-wallcoverings-los-angeles",
+ "handle": "eur-80437-ncw4493-designer-wallcoverings-los-angeles",
+ "title": "Petit Dapuri Stripe 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_7513508020275.jpg?v=1775524089",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Cream",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Linen",
+ "Living Room",
+ "NCW4493",
+ "NCW4493-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Paper",
+ "Petit Dapuri Stripe",
+ "Pink",
+ "Red",
+ "Rose",
+ "Sage",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80437-ncw4493-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52785",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52785",
+ "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-52785-sample-steuben-embossed-vertical-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734822",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Pale Gray",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52785"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48120",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48120",
+ "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-48120-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727825",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Off-White",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48120"
+ },
+ {
+ "sku": "marseilles-durable-vinyl-dur-72001",
+ "handle": "marseilles-durable-vinyl-dur-72001",
+ "title": "Marseilles Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72001-sample-clean.jpg?v=1774483903",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Living Room",
+ "Marseilles Durable Vinyl",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marseilles-durable-vinyl-dur-72001"
+ },
+ {
+ "sku": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52913",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52913",
+ "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-52913-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734460",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Charcoal Gray",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Gray",
+ "Greige",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52913"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53533",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53533",
+ "title": "Glen Ridge Embossed Vertical Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/strand-copper.jpg?v=1777480861",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53533"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73122",
+ "handle": "puna-drive-natural-grassweave-hlw-73122",
+ "title": "Puna Drive - Natural Grassweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73122-sample-clean.jpg?v=1774483564",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73122"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52084",
+ "handle": "canal-damask-durable-vinyl-xwa-52084",
+ "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-52084-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707075",
+ "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",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grandmillennial",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Pattern",
+ "Scroll",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52084"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52109",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52109",
+ "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-52109-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707100",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linear",
+ "Living Room",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52109"
+ },
+ {
+ "sku": "toscana-taupe-linen-grasscloth-wallcovering-fentucci",
+ "handle": "toscana-taupe-linen-grasscloth-wallcovering-fentucci",
+ "title": "Toscana Taupe Linen Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-26450.jpg?v=1776879777",
+ "tags": [
+ "Fentucci",
+ "Grasscloth",
+ "Linen",
+ "new-onboard",
+ "sample-only",
+ "Taupe",
+ "Texture",
+ "Toscana",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/toscana-taupe-linen-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "jutely-vinyl-dwx-58133",
+ "handle": "jutely-vinyl-dwx-58133",
+ "title": "Jutely Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58133-sample-jutely-vinyl-hollywood-wallcoverings.jpg?v=1775720384",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Faux Grasscloth",
+ "Gold",
+ "Grandmillennial",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Jute",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Neutral",
+ "Olive Green",
+ "Regencycore",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jutely-vinyl-dwx-58133"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76634",
+ "handle": "rustic-glam-vinyl-gpr-76634",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76634-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731839",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "USFCID#vp885--089",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76634"
+ },
+ {
+ "sku": "rochester-type-ii-vinyl-wallcovering-xpk-48238",
+ "handle": "rochester-type-ii-vinyl-wallcovering-xpk-48238",
+ "title": "Rochester Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpk-48238-sample-rochester-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775731290",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rochester Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rochester-type-ii-vinyl-wallcovering-xpk-48238"
+ },
+ {
+ "sku": "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": "eatonville-faux-linen-durable-walls-xwt-53317",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53317",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53317-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710809",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53317"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72230",
+ "handle": "saint-lore-durable-vinyl-dur-72230",
+ "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-72230-sample-clean.jpg?v=1774484834",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Pink",
+ "Rose Gold",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72230"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53156",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53156",
+ "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-jute.jpg?v=1777480764",
+ "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",
+ "Ecru",
+ "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 Brown",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Oatmeal",
+ "Organic Modern",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "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": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53156"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73013",
+ "handle": "benedict-canyon-sisal-hlw-73013",
+ "title": "Benedict Canyon Sisal | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hlw-73013-sample-benedict-canyon-sisal-hollywood-wallcoverings.jpg?v=1775703741",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Scandinavian",
+ "Serene",
+ "Sisal",
+ "Tan",
+ "Teal",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 50.39,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73013"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48203",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48203",
+ "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-48203-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729843",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Olive",
+ "Organic Modern",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Sky Blue",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48203"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52078",
+ "handle": "canal-damask-durable-vinyl-xwa-52078",
+ "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-52078-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707053",
+ "tags": [
+ "#334455",
+ "#FFFFFF`)",
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "`#AABBCC",
+ "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",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grandmillennial",
+ "Grasscloth",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "one-word",
+ "Pattern",
+ "real color names for your HEX values",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "To provide a list of simplified",
+ "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-52078"
+ },
+ {
+ "sku": "art-de-la-table-cream-linen-wallcovering-versace-2",
+ "handle": "art-de-la-table-cream-linen-wallcovering-versace-2",
+ "title": "Art De La Table Cream Linen Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/165648dcfb77c7878ba556b7f9c2686b.jpg?v=1773710522",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art De La Table",
+ "Art De La Table Cream Linen Wallcovering",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream Linen",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Light Beige",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Luxury",
+ "Needs-Image",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Wallcovering"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/art-de-la-table-cream-linen-wallcovering-versace-2"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47330",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47330",
+ "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-47330-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704874",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47330"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53534",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53534",
+ "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-cottonwood_894f249b-117d-4fb7-a34c-f5fad178bf4b.jpg?v=1777481401",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53534"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6208",
+ "handle": "le-embossed-faux-grasscloth-xgr-6208",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6208-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721655",
+ "tags": [
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering",
+ "Warm Grey"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6208"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47647",
+ "handle": "fairford-vinyl-wallcovering-xlb-47647",
+ "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-47647-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711334",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47647"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73119",
+ "handle": "puna-drive-natural-grassweave-hlw-73119",
+ "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-73119-sample-puna-drive-natural-grassweave-hollywood.jpg?v=1775729453",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Rustic",
+ "Sienna",
+ "Textured",
+ "Tropical",
+ "Umber",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73119"
+ },
+ {
+ "sku": "cremona-parchment-textured-grasscloth-wallcovering-fentucci",
+ "handle": "cremona-parchment-textured-grasscloth-wallcovering-fentucci",
+ "title": "Cremona Parchment Textured Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27560.jpg?v=1776879822",
+ "tags": [
+ "Cremona",
+ "Fentucci",
+ "Grasscloth",
+ "new-onboard",
+ "Parchment",
+ "sample-only",
+ "Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cremona-parchment-textured-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6214",
+ "handle": "le-embossed-faux-grasscloth-xgr-6214",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6214-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721676",
+ "tags": [
+ "Commercially Cleanable",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6214"
+ },
+ {
+ "sku": "i-love-baroque-medusa-stripe-gold-linen-wallcovering-versace-2",
+ "handle": "i-love-baroque-medusa-stripe-gold-linen-wallcovering-versace-2",
+ "title": "I Love Baroque Medusa Stripe Gold Linen Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/8385a42aa80fee54bce7f6405a38771d.jpg?v=1773710376",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Charcoal Gray",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "display_variant",
+ "Gold",
+ "Gold Linen",
+ "Golden Tan",
+ "I Love Baroque Medusa Stripe",
+ "I Love Baroque Medusa Stripe Gold Linen Wallcovering",
+ "Italian",
+ "Light Beige",
+ "Linen",
+ "Living Room",
+ "Luxury",
+ "Needs-Image",
+ "Office",
+ "Paper",
+ "Paste the wall",
+ "Solid",
+ "Striped",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/i-love-baroque-medusa-stripe-gold-linen-wallcovering-versace-2"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66409",
+ "handle": "jolie-madam-wallpaper-xa1-66409",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/28e7b6a41bb2b8a87889c20b9c577ca0.jpg?v=1775120634",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66409"
+ },
+ {
+ "sku": "durante-diamonds-hlw-73054",
+ "handle": "durante-diamonds-hlw-73054",
+ "title": "Durante Diamonds | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73054-sample-clean.jpg?v=1774483234",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Camel",
+ "Champagne",
+ "Chevron",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durante Diamonds",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Paper",
+ "Stripe",
+ "Tan",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/durante-diamonds-hlw-73054"
+ },
+ {
+ "sku": "saint-helene-durable-vinyl-dur-72056",
+ "handle": "saint-helene-durable-vinyl-dur-72056",
+ "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-72056-sample-clean.jpg?v=1774484179",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Orange",
+ "Rustic",
+ "Stripe",
+ "Terracotta",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72056"
+ },
+ {
+ "sku": "bergamo-oat-basketweave-grasscloth-wallcovering-fentucci",
+ "handle": "bergamo-oat-basketweave-grasscloth-wallcovering-fentucci",
+ "title": "Bergamo Oat Basketweave Grasscloth Wallcovering | Fentucci",
+ "vendor": "Fentucci",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GRS-27510.jpg?v=1776879803",
+ "tags": [
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Bergamo",
+ "Coastal",
+ "Cream",
+ "Entryway",
+ "Farmhouse",
+ "Fentucci",
+ "Grasscloth",
+ "Living Room",
+ "new-onboard",
+ "Oat",
+ "Office",
+ "sample-only",
+ "Solid/Textural",
+ "Tan",
+ "Texture",
+ "Transitional",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bergamo-oat-basketweave-grasscloth-wallcovering-fentucci"
+ },
+ {
+ "sku": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802",
+ "handle": "lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802",
+ "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-airglow_5ee96262-b47b-45e1-8092-fcd0c54474ed.jpg?v=1777481242",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lister-lake-metallic-contemporary-durable-vinyl-walls-xwr-52802"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52353",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52353",
+ "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-spring_267052e3-4a0b-4117-823c-a8abc9677517.jpg?v=1777481177",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Light Beige",
+ "Light Green",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Pale Yellow",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52353"
+ },
+ {
+ "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": "hallandale-rice-paper-effect-durable-walls-xwt-53475",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53475",
+ "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-53475-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715910",
+ "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",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53475"
+ },
+ {
+ "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52986",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52986",
+ "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-bee_balm.jpg?v=1777480728",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52986"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52314",
+ "handle": "marketfield-faux-durable-walls-xwh-52314",
+ "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-cassia.jpg?v=1777480452",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Marketfield Faux Durable",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52314"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52107",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52107",
+ "title": "Canal Stripe Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52107-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707093",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Linear",
+ "Living Room",
+ "Pale Beige",
+ "Pattern",
+ "Stripe",
+ "Striped",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52107"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47317",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47317",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47317-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704527",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47317"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49328",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49328",
+ "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-49328-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728320",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Burlywood",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Oxford Type 2 Vinyl Wallcovering",
+ "Pale Goldenrod",
+ "Rustic",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49328"
+ },
+ {
+ "sku": "kent-beige-faux-grasscloth-wallpaper-cca-82925",
+ "handle": "kent-beige-faux-grasscloth-wallpaper-cca-82925",
+ "title": "Kent Beige Faux Grasscloth Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/91a17198ae07f76f275862d9de59ce49.jpg?v=1572309962",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "LA Walls",
+ "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-beige-faux-grasscloth-wallpaper-cca-82925"
+ },
+ {
+ "sku": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52774",
+ "handle": "steuben-embossed-vertical-durable-vinyl-walls-xwr-52774",
+ "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-52774-sample-clean.jpg?v=1774481552",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Rustic",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-embossed-vertical-durable-vinyl-walls-xwr-52774"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53526",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53526",
+ "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-sand.jpg?v=1777480847",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53526"
+ },
+ {
+ "sku": "jones-faux-grass-durable-walls-xwf-52218",
+ "handle": "jones-faux-grass-durable-walls-xwf-52218",
+ "title": "Jones Faux Grass Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52218-sample-jones-faux-grass-durable-hollywood-wallcoverings.jpg?v=1775719913",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Leed Walls",
+ "Textured",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 63.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jones-faux-grass-durable-walls-xwf-52218"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58089",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58089",
+ "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-58089-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734148",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Blond",
+ "Champagne",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Khaki",
+ "Light Goldenrod Yellow",
+ "Living Room",
+ "Scrim",
+ "Snow",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wheat",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58089"
+ },
+ {
+ "sku": "ramsey-type-ii-vinyl-wallcovering-xph-48200",
+ "handle": "ramsey-type-ii-vinyl-wallcovering-xph-48200",
+ "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-48200-sample-ramsey-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775729764",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Ramsey Type 2 Vinyl Wallcovering",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ramsey-type-ii-vinyl-wallcovering-xph-48200"
+ },
+ {
+ "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": "sophie-s-scrim-wallcovering-dwx-58096",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58096",
+ "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-58096-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734337",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Embossed Texture",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Scrim",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58096"
+ },
+ {
+ "sku": "dwkk-139830",
+ "handle": "dwkk-139830",
+ "title": "Palmero Paper - Leaf Green By Lee Jofa | Westport | Botanical & Floral Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2018105_123_9a1279bc-39a0-446d-9b80-48f21773697b.jpg?v=1753291187",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Army",
+ "Beige",
+ "Botanical",
+ "Botanical & Floral",
+ "Commercial",
+ "display_variant",
+ "Green",
+ "Leaf",
+ "Lee Jofa",
+ "Linen",
+ "Luxury",
+ "Moss",
+ "Olive Green",
+ "P2018105.123.0",
+ "Palmero Paper",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "United States",
+ "Vine",
+ "Wallcovering",
+ "Westport"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139830"
+ },
+ {
+ "sku": "seres-stucco-romo",
+ "handle": "seres-stucco-romo",
+ "title": "Seres Stucco | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W969-03-seres-wallcovering-stucco_01.jpg?v=1776485714",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Coastal",
+ "Commercial",
+ "Conference Room",
+ "cream",
+ "Embossed Wallcovering",
+ "Grasscloth",
+ "Ivory",
+ "Kabu Wallcoverings",
+ "light brown",
+ "Lobby",
+ "Natural",
+ "Office",
+ "Romo",
+ "Seres",
+ "Small",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "W969/03",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seres-stucco-romo"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58166",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58166",
+ "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-58166-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725720",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Coastal",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Sand",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58166"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58155",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58155",
+ "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-58155-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725434",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Grasscloth",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Metallic",
+ "Minimalist",
+ "Natural Look",
+ "Neutral",
+ "Silver",
+ "Striped",
+ "Textured",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58155"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58159",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58159",
+ "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-58159-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725544",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Black",
+ "Charcoal",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Brown",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Grey",
+ "Metallic",
+ "Minimalist",
+ "Modern",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Office",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58159"
+ },
+ {
+ "sku": "eatonville-faux-linen-durable-walls-xwt-53310",
+ "handle": "eatonville-faux-linen-durable-walls-xwt-53310",
+ "title": "Eatonville Faux Linen Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53310-sample-eatonville-faux-linen-durable-hollywood-wallcoverings.jpg?v=1775710750",
+ "tags": [
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eatonville-faux-linen-durable-walls-xwt-53310"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6206",
+ "handle": "le-embossed-faux-grasscloth-xgr-6206",
+ "title": "Le Embossed Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgr-6206-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721648",
+ "tags": [
+ "Commercially Cleanable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Medium Honey Corn",
+ "Natural",
+ "Natural Texture",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6206"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53166",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53166",
+ "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-rice.jpg?v=1777480781",
+ "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",
+ "Ecru",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53166"
+ },
+ {
+ "sku": "moroccan-wooden-basketweave-wbs-39659",
+ "handle": "moroccan-wooden-basketweave-wbs-39659",
+ "title": "Moroccan Wooden Basketweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39659-sample-moroccan-wooden-basketweave-hollywood-wallcoverings.jpg?v=1775726749",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed Texture",
+ "Faux",
+ "Grasscloth",
+ "Herringbone",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wheat",
+ "Wood",
+ "Woven"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-wooden-basketweave-wbs-39659"
+ },
+ {
+ "sku": "lovela-faux-vertical-durable-walls-xwo-53615",
+ "handle": "lovela-faux-vertical-durable-walls-xwo-53615",
+ "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-starlet.jpg?v=1777480903",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Golden Brown",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Orange",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Transitional",
+ "Umber",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lovela-faux-vertical-durable-walls-xwo-53615"
+ },
+ {
+ "sku": "dwkk-140164",
+ "handle": "dwkk-140164",
+ "title": "Ikat Stripe Wp - Coral Pink By Lee Jofa | Blithfield |Ikat/Southwest/Kilims Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/PBFC-3531_917_4463401f-bd36-4340-bda4-cef9ef2c7749.jpg?v=1753291827",
+ "tags": [
+ "27.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Blithfield",
+ "Bohemian",
+ "Cellulose - 49%;Binder - 35%;Polyester - 16%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "display_variant",
+ "Fabric",
+ "Ikat",
+ "Ikat Stripe Wp",
+ "Ikat/Southwest/Kilims",
+ "Lee Jofa",
+ "Linen",
+ "Luxury",
+ "Pbfc-3531.917.0",
+ "Pink",
+ "Print",
+ "Stripe",
+ "Stripes",
+ "United States",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140164"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52111",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52111",
+ "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-52111-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707107",
+ "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",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Golden Brown",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linear",
+ "Living Room",
+ "Pattern",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "Umber",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-stripe-texture-durable-walls-xwd-52111"
+ },
+ {
+ "sku": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52836",
+ "handle": "chataqua-metallic-contemporary-durable-vinyl-walls-xws-52836",
+ "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-lemon_lime.jpg?v=1777480710",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Pale Gold",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chataqua-metallic-contemporary-durable-vinyl-walls-xws-52836"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47288",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47288",
+ "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-47288-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775703762",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Pale Grey",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47288"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48177",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48177",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48177-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728631",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48177"
+ },
+ {
+ "sku": "canal-texture-durable-walls-xwd-52096",
+ "handle": "canal-texture-durable-walls-xwd-52096",
+ "title": "Canal Texture Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/capulet-beige.jpg?v=1777480402",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-texture-durable-walls-xwd-52096"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66413",
+ "handle": "jolie-madam-wallpaper-xa1-66413",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/abd20fae1c46cee9a99c70d49546988e.jpg?v=1775121078",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Entryway",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Silver",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Taupe",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66413"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52360",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52360",
+ "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-bittersweet.jpg?v=1777480527",
+ "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",
+ "Chocolate Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Dining Room",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Golden Brown",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Rustic",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52360"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73022",
+ "handle": "benedict-canyon-sisal-hlw-73022",
+ "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-73022-sample-clean.jpg?v=1774483074",
+ "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",
+ "Scandinavian",
+ "Sisal",
+ "Stripe",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 63.43,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73022"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52348",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52348",
+ "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-khaki.jpg?v=1777480506",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Yellow",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Golden Yellow",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Mustard Yellow",
+ "Natural",
+ "Natural Texture",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52348"
+ },
+ {
+ "sku": "hilo-highway-diamond-grass-hlw-73132",
+ "handle": "hilo-highway-diamond-grass-hlw-73132",
+ "title": "Hilo Highway - Diamond Grass | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73132-sample-clean.jpg?v=1774483631",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Brown",
+ "Burgundy",
+ "Color: Red",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dining Room",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Red",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 89.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hilo-highway-diamond-grass-hlw-73132"
+ },
+ {
+ "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52980",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52980",
+ "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/products/76f2820096b816a553dffed95a3e43f7.jpg?v=1733881909",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52980"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47228",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47228",
+ "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-47228-sample-barnard-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775702549",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Gray",
+ "Blue",
+ "Brown",
+ "Charcoal Gray",
+ "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",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Green",
+ "Grey",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Mahogany",
+ "Navy Blue",
+ "Olive Green",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look",
+ "Yellow"
+ ],
+ "max_price": 52.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barnard-type-ii-vinyl-wallcovering-xjp-47228"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53285",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53285",
+ "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-53285-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710214",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53285"
+ },
+ {
+ "sku": "seine-marne-durable-vinyl-dur-72132",
+ "handle": "seine-marne-durable-vinyl-dur-72132",
+ "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-72132-sample-clean.jpg?v=1774484506",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Oatmeal",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72132"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..be3e47f
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,865 @@
+{
+ "name": "greenwallcoverings",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "greenwallcoverings",
+ "version": "0.1.0",
+ "dependencies": {
+ "dotenv": "^17.4.2",
+ "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/dotenv": {
+ "version": "17.4.2",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.4.2.tgz",
+ "integrity": "sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "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..2508c3d
--- /dev/null
+++ b/package.json
@@ -0,0 +1,14 @@
+{
+ "name": "greenwallcoverings",
+ "version": "0.1.0",
+ "description": "GREEN WALLCOVERINGS — DW family vertical",
+ "main": "server.js",
+ "scripts": {
+ "start": "node server.js"
+ },
+ "dependencies": {
+ "dotenv": "^17.4.2",
+ "express": "^4.21.0",
+ "helmet": "^8.1.0"
+ }
+}
diff --git a/public/favicon.svg b/public/favicon.svg
new file mode 100644
index 0000000..5187fc3
--- /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">G</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..78973c4
--- /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>GREEN WALLCOVERINGS — Wall as forest</title>
+<meta name="description" content="GREEN WALLCOVERINGS · Wall as forest. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#0a140e">
+<link rel="canonical" href="https://greenwallcoverings.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: #0a140e;
+ --paper: #ffffff;
+ --muted: #8aa080;
+ --line: rgba(255,255,255,0.10);
+ --accent: #80a060;
+ --bg-soft: #142018;
+ --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('green_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">Eco · Sustainable</div>
+ <div class="center-mark">GREEN WALLCOVERINGS<span class="tm">.</span><span class="sub">Wall as forest</span></div>
+ <div class="meta-line">Eco · Sustainable · Recycled · Low-VOC<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">Eco · Sustainable · Recycled · Low-VOC</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">GREEN WALLCOVERINGS</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated eco · sustainable · recycled · low-voc 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">greenwallcoverings</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>greenwallcoverings.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 = "greenwallcoverings";
+ 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('green_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('green_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('green_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..a821846
--- /dev/null
+++ b/server.js
@@ -0,0 +1,107 @@
+/**
+ * GREEN WALLCOVERINGS — DW family vertical
+ * Curated slice from live designerwallcoverings.com Shopify catalog.
+ */
+try { require('dotenv').config(); } catch (e) {}
+const express = require('express');
+const path = require('path');
+const fs = require('fs');
+
+const PORT = process.env.PORT || 9885;
+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();
+app.use(express.json({ limit: "256kb" }));
+const cfg = require('../_shared/site-config').load(__dirname);
+require("./_universal-contact")(app, cfg.contact);
+require("./_universal-auth")(app, cfg.auth);
+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 = ["natural","cork","botanical","hemp","recycled","sage"];
+ 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://greenwallcoverings.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://greenwallcoverings.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(`greenwallcoverings listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..456f912
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,20 @@
+{
+ "slug": "greenwallcoverings",
+ "siteName": "Green Wallcoverings",
+ "domain": "greenwallcoverings.com",
+ "nicheKeyword": "green",
+ "tagline": "Sustainable. PVC-free. FSC.",
+ "heroHeadline": "GREEN WALLCOVERINGS",
+ "heroSub": "Sustainable. PVC-free. FSC.",
+ "theme": {
+ "accent": "#5a7a4a"
+ },
+ "rails": [
+ "fsc",
+ "pvc-free",
+ "recycled",
+ "low-voc",
+ "plant-based",
+ "natural"
+ ]
+}
(oldest)
·
back to Greenwallcoverings
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero 246c029 →