← back to Pastelwallpaper
initial scaffold (gitify-all 2026-05-06)
8ac9e0bf352df11ef1518f8d189c931485f2386d · 2026-05-06 10:25:45 -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 8ac9e0bf352df11ef1518f8d189c931485f2386d
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed May 6 10:25:45 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 | 23640 ++++++++++++++++++++++++++++++++++++++++++++++++
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, 25571 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..56b111a
--- /dev/null
+++ b/data/products.json
@@ -0,0 +1,23640 @@
+[
+ {
+ "sku": "dwkk-129715",
+ "handle": "dwkk-129715",
+ "title": "W3917-5 Blue | Kravet Design | Ronald Redding Traveler |Modern Animal Skins Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3917_5_3c3052bb-8819-4d4c-8b1a-54f2654472bc.jpg?v=1753322420",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Animal Skin",
+ "Animal Skins",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Biophilic",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Giraffe",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Modern",
+ "Non Woven - 100%",
+ "Non-Woven",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Pattern",
+ "Print",
+ "Ronald Redding Traveler",
+ "Seafoam",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3917-5",
+ "W3917.5.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129715"
+ },
+ {
+ "sku": "limoges-durable-vinyl-dur-72021",
+ "handle": "limoges-durable-vinyl-dur-72021",
+ "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-72021-sample-clean.jpg?v=1774484014",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Energetic",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Limoges Durable Vinyl",
+ "Living Room",
+ "Modern",
+ "Non-woven",
+ "Orange",
+ "Peach",
+ "Raspberry",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72021"
+ },
+ {
+ "sku": "limoges-durable-vinyl-dur-72020",
+ "handle": "limoges-durable-vinyl-dur-72020",
+ "title": "Limoges Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72020-sample-clean.jpg?v=1774484009",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "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",
+ "Limoges Durable Vinyl",
+ "Living Room",
+ "Organic",
+ "Pink",
+ "Rose Taupe",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72020"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49324",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49324",
+ "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-49324-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728307",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Oxford Type 2 Vinyl Wallcovering",
+ "Pale Beige",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49324"
+ },
+ {
+ "sku": "le-embossed-faux-grasscloth-xgr-6201",
+ "handle": "le-embossed-faux-grasscloth-xgr-6201",
+ "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-6201-sample-le-embossed-faux-grasscloth-hollywood-wallcoverings.jpg?v=1775721630",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Commercially Cleanable",
+ "Coral",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Le Embossed Faux Grasscloth",
+ "Maroon",
+ "Natural",
+ "Natural Texture",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 51.15,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-embossed-faux-grasscloth-xgr-6201"
+ },
+ {
+ "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": "doral-faux-silk-durable-walls-xwc-53212",
+ "handle": "doral-faux-silk-durable-walls-xwc-53212",
+ "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-53212-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710245",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "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",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53212"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9820-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9820-jpg",
+ "title": "ST9820 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9818.jpg?v=1733872209",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Pink",
+ "Salmon",
+ "Solid",
+ "Textured",
+ "Tomato",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9820-jpg"
+ },
+ {
+ "sku": "wells-sand-candy-stripe-wallpaper-cca-83229",
+ "handle": "wells-sand-candy-stripe-wallpaper-cca-83229",
+ "title": "Wells Sand Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1396ca09641c9d6118bac50a4d9805b3.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gold",
+ "LA Walls",
+ "Metallic",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-sand-candy-stripe-wallpaper-cca-83229"
+ },
+ {
+ "sku": "amity-champagne-bleeding-heart-scroll-wallpaper-cca-83254",
+ "handle": "amity-champagne-bleeding-heart-scroll-wallpaper-cca-83254",
+ "title": "Amity Champagne Bleeding Heart Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/59e8e9fbb0243c9e488de9afb2457d4c.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-champagne-bleeding-heart-scroll-wallpaper-cca-83254"
+ },
+ {
+ "sku": "eur-80197-ncw4184-designer-wallcoverings-los-angeles",
+ "handle": "eur-80197-ncw4184-designer-wallcoverings-los-angeles",
+ "title": "Suzhou 04 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499238451.jpg?v=1775522706",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "NCW4184",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Periwinkle",
+ "Purple",
+ "Sage Green",
+ "Serene",
+ "Suzhou",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80197-ncw4184-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "gesture-whitewash-romo",
+ "handle": "gesture-whitewash-romo",
+ "title": "Gesture Whitewash | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/MW160-01-gesture-wallcovering-whitewash_01.jpg?v=1776398597",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Collage IV",
+ "Commercial",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Light",
+ "light gray",
+ "Lobby",
+ "Medium",
+ "Minimalist",
+ "Modern",
+ "MW160/01",
+ "Neutral",
+ "Non-woven",
+ "Off-white",
+ "Office",
+ "Residential",
+ "Romo",
+ "Sophisticated",
+ "Subtle",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gesture-whitewash-romo"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_mry-3173-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mry-3173-jpg",
+ "title": "Mantaray - Coral | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mry-3173.jpg?v=1762301870",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Coral",
+ "Light Coral",
+ "Mantaray",
+ "Pink",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mry-3173-jpg"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_dech-491-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dech-491-jpg",
+ "title": "Digital Echo - Gray Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dech-491.jpg?v=1762291005",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Digital Curated",
+ "Digital Echo",
+ "Geometric",
+ "Gray Blush",
+ "Herringbone",
+ "Mylar",
+ "Paper",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dech-491-jpg"
+ },
+ {
+ "sku": "eur-80444-ncw4494-designer-wallcoverings-los-angeles",
+ "handle": "eur-80444-ncw4494-designer-wallcoverings-los-angeles",
+ "title": "Meridor Stripe 04 - Neutral Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508249651.jpg?v=1775524127",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Grandmillennial",
+ "Hallway",
+ "Ivory",
+ "Living Room",
+ "Meridor Stripe",
+ "NCW4494",
+ "NCW4494-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Red",
+ "Rose",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80444-ncw4494-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127829",
+ "handle": "dwkk-127829",
+ "title": "Wild Strawberry Wp - Noir Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0135_04_CAC_66fad453-5850-401b-ab88-a5b8c32776e6.jpg?v=1753321570",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Black",
+ "Botanical",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Flower",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Light Green",
+ "Lime Green",
+ "Noir",
+ "Non Woven - 100%",
+ "Nursery",
+ "Pale Pink",
+ "Pale Yellow",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Powder Room",
+ "Print",
+ "Strawberry",
+ "Strawberry Red",
+ "United Kingdom",
+ "Vine",
+ "W0135/04.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Wild Strawberry Wp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127829"
+ },
+ {
+ "sku": "presque-isle-sand-regal-stripe-wallpaper-cca-83118",
+ "handle": "presque-isle-sand-regal-stripe-wallpaper-cca-83118",
+ "title": "Presque Isle Sand Regal Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b20099d2016922a67d736b2f78eafb8e.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/presque-isle-sand-regal-stripe-wallpaper-cca-83118"
+ },
+ {
+ "sku": "zoe-snow-coco-texture-wallpaper-cca-83292",
+ "handle": "zoe-snow-coco-texture-wallpaper-cca-83292",
+ "title": "Zoe Snow Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/67ed6df3aa596bac95c571eaf2a622a3.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-snow-coco-texture-wallpaper-cca-83292"
+ },
+ {
+ "sku": "hollywood-lounge-chevron-xhw-2010167",
+ "handle": "hollywood-lounge-chevron-xhw-2010167",
+ "title": "Hollywood Lounge Chevron | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010167-sample-hollywood-lounge-chevron-hollywood-wallcoverings.jpg?v=1775717832",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Geometric",
+ "Khaki",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-lounge-chevron-xhw-2010167"
+ },
+ {
+ "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": "ncw4353-02",
+ "handle": "ncw4353-02",
+ "title": "Les Indiennes Colbert French Grey - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264541747.jpg?v=1775520556",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Multi",
+ "NCW4353-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Wallcovering",
+ "Wallcoverings",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4353-02"
+ },
+ {
+ "sku": "dwtt-72538-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72538-designer-wallcoverings-los-angeles",
+ "title": "Shangri-la Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6834.jpg?v=1775153726",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Cream",
+ "Damask",
+ "Pattern",
+ "Shangri-La",
+ "T8666",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72538-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "georgina-criss-cross-vinyl-xgc-44437",
+ "handle": "georgina-criss-cross-vinyl-xgc-44437",
+ "title": "Georgina Criss Cross Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xgc-44437-sample-georgina-criss-cross-vinyl-hollywood-wallcoverings.jpg?v=1775714446",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Geometric",
+ "Gold",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Tan",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/georgina-criss-cross-vinyl-xgc-44437"
+ },
+ {
+ "sku": "iksel-wall-panel-murals-at-designer-wallcoverings-iksel",
+ "handle": "iksel-wall-panel-murals-at-designer-wallcoverings-iksel",
+ "title": "IKSEL Wall Panel Murals at Designer s Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/IKSEL-clean.jpg?v=1774482697",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Coral",
+ "Cottagecore",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Blue",
+ "Living Room",
+ "Moss",
+ "Mural",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Red",
+ "Sage Green",
+ "Serene",
+ "Smoke",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/iksel-wall-panel-murals-at-designer-wallcoverings-iksel"
+ },
+ {
+ "sku": "rangeley-beige-new-avalon-stripe-wallpaper-cca-83126",
+ "handle": "rangeley-beige-new-avalon-stripe-wallpaper-cca-83126",
+ "title": "Rangeley Beige New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b56fc7797effaf6e4a6d2c5c7b02ca03.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Ivory",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-beige-new-avalon-stripe-wallpaper-cca-83126"
+ },
+ {
+ "sku": "hollywood-luxury-solids-xhw-2010392",
+ "handle": "hollywood-luxury-solids-xhw-2010392",
+ "title": "Hollywood Luxury Solids | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010392-sample-hollywood-luxury-solids-hollywood-wallcoverings.jpg?v=1775717988",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 49.89,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-luxury-solids-xhw-2010392"
+ },
+ {
+ "sku": "i-love-baroque-cream-wallcovering-versace-2",
+ "handle": "i-love-baroque-cream-wallcovering-versace-2",
+ "title": "I Love Baroque Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/954f62ba57e761af5104c399a5bcd49e.jpg?v=1773710356",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dark Wood",
+ "display_variant",
+ "Estimated Type: Paper",
+ "I Love Baroque",
+ "I Love Baroque Cream Wallcovering",
+ "Italian",
+ "Light Gray",
+ "Light Wood",
+ "Living Room",
+ "Luxury",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Paper",
+ "Paste the wall",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Wallcovering"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/i-love-baroque-cream-wallcovering-versace-2"
+ },
+ {
+ "sku": "hollywood-urban-abstract-xhw-2010385",
+ "handle": "hollywood-urban-abstract-xhw-2010385",
+ "title": "Hollywood Urban Abstract | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010385-sample-hollywood-urban-abstract-hollywood-wallcoverings.jpg?v=1775719148",
+ "tags": [
+ "Beige",
+ "CELLULOSE",
+ "Coral",
+ "Faux Wood",
+ "Ivory",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Sage",
+ "Slate",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 51.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-urban-abstract-xhw-2010385"
+ },
+ {
+ "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": "hollywood-contemporary-cobblestone-xhw-2010426",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010426",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010426-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717242",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010426"
+ },
+ {
+ "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": "skelton-type-ii-vinyl-wallcovering-xpy-48379",
+ "handle": "skelton-type-ii-vinyl-wallcovering-xpy-48379",
+ "title": "Skelton Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpy-48379-sample-skelton-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775734063",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Skelton Type 2 Vinyl Wallcovering",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/skelton-type-ii-vinyl-wallcovering-xpy-48379"
+ },
+ {
+ "sku": "dwtt-71972-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71972-designer-wallcoverings-los-angeles",
+ "title": "Caballo Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10016_524fd020-1d6d-4219-a0e6-379a2988d367.jpg?v=1733893041",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Cream",
+ "Damask",
+ "Neutral Resource",
+ "Pattern",
+ "T10016",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71972-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "zoe-champagne-coco-texture-wallpaper-cca-83287",
+ "handle": "zoe-champagne-coco-texture-wallpaper-cca-83287",
+ "title": "Zoe Champagne Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6645375406e5ee77edba885ddb8ec5a0_6bd770c6-57a2-4c7e-b9f3-73af0b8e78e2.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-champagne-coco-texture-wallpaper-cca-83287"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2889",
+ "handle": "peter-s-plastered-walls-ppw-2889",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2889-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729111",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Brown",
+ "Mediterranean",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2889"
+ },
+ {
+ "sku": "le-madison-durable-walls-xwk-52569",
+ "handle": "le-madison-durable-walls-xwk-52569",
+ "title": "Le Madison Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwk-52569-sample-le-madison-durable-hollywood-wallcoverings.jpg?v=1775721690",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/le-madison-durable-walls-xwk-52569"
+ },
+ {
+ "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": "panino-s-patina-squares-pps-44469",
+ "handle": "panino-s-patina-squares-pps-44469",
+ "title": "Panino's Patina Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/pps-44469-sample-panino-s-patina-squares-hollywood-wallcoverings.jpg?v=1775728854",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Panino's Patina Squares",
+ "Paper",
+ "Pink",
+ "Rose Quartz",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 39.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/panino-s-patina-squares-pps-44469"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53379",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53379",
+ "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-blanc_4ca9ac8f-864f-4c16-92bd-bfb2c9256503.jpg?v=1777481512",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53379"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93010",
+ "handle": "lucy-large-crocodile-croca-93010",
+ "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93010-sample-lucy-large-crocodile-hollywood-wallcoverings.jpg?v=1775723165",
+ "tags": [
+ "Animal Print",
+ "Animals",
+ "Azure",
+ "Blue",
+ "Cream",
+ "Embossed Texture",
+ "Indigo",
+ "Large Animal Embosses",
+ "Navy",
+ "Paper Backed Vinyl",
+ "Sky",
+ "Wallcovering"
+ ],
+ "max_price": 32.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93010"
+ },
+ {
+ "sku": "benedict-canyon-sisal-hlw-73007",
+ "handle": "benedict-canyon-sisal-hlw-73007",
+ "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-73007-sample-clean.jpg?v=1774483007",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Coastal",
+ "Color: Orange",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Texture",
+ "Naturally Glamorous",
+ "Orange",
+ "Peach",
+ "Red",
+ "Rustic",
+ "Sisal",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Warm",
+ "Woven"
+ ],
+ "max_price": 67.78,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/benedict-canyon-sisal-hlw-73007"
+ },
+ {
+ "sku": "moderni-modern-texture-xmm-44423",
+ "handle": "moderni-modern-texture-xmm-44423",
+ "title": "Moderni Modern Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmm-44423-sample-moderni-modern-texture-hollywood-wallcoverings.jpg?v=1775726305",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Coral",
+ "Mint",
+ "Modern",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Sand",
+ "Teal",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moderni-modern-texture-xmm-44423"
+ },
+ {
+ "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47682",
+ "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47682",
+ "title": "Ferndown Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47682-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712129",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47682"
+ },
+ {
+ "sku": "moderni-modern-texture-xmm-44421",
+ "handle": "moderni-modern-texture-xmm-44421",
+ "title": "Moderni Modern Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmm-44421-sample-moderni-modern-texture-hollywood-wallcoverings.jpg?v=1775726298",
+ "tags": [
+ "ASTM E84 Class A",
+ "Beige",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial Wallcovering",
+ "Cream",
+ "Modern",
+ "Pewter",
+ "Plum",
+ "Rose",
+ "Stone",
+ "Taupe",
+ "Textured",
+ "Umber",
+ "Wallcovering"
+ ],
+ "max_price": 43.76,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moderni-modern-texture-xmm-44421"
+ },
+ {
+ "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": "capri-lavender-floral-scroll-wallpaper-cca-83048",
+ "handle": "capri-lavender-floral-scroll-wallpaper-cca-83048",
+ "title": "Capri Lavender Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/248109dec3381ef4a1b6ec2ac77eb2fa.jpg?v=1572309967",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-lavender-floral-scroll-wallpaper-cca-83048"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52313",
+ "handle": "marketfield-faux-durable-walls-xwh-52313",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-white_willow.jpg?v=1777480450",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Oatmeal",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52313"
+ },
+ {
+ "sku": "dwkk-127825",
+ "handle": "dwkk-127825",
+ "title": "Tonquin Wp - Noir Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Botanical & Floral Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0134_04_CAC_f6d203ee-ab38-4e7f-aa3f-66f1447a57dc.jpg?v=1753321577",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Charcoal",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Cream",
+ "Dark Academia",
+ "Dining Room",
+ "display_variant",
+ "Dramatic",
+ "Floral",
+ "Green",
+ "Living Room",
+ "Moody",
+ "Noir",
+ "Non Woven - 100%",
+ "Paper",
+ "Pink",
+ "Print",
+ "Rose",
+ "Sage",
+ "Teal",
+ "Tonquin Wp",
+ "Traditional",
+ "United Kingdom",
+ "Victorian",
+ "Vine",
+ "W0134/04.Cac.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127825"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2622",
+ "handle": "pleated-perfect-paradise-ppp-2622",
+ "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2622-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729166",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2622"
+ },
+ {
+ "sku": "dwtt-72289-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72289-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Lilac | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7631.jpg?v=1733892351",
+ "tags": [
+ "Architectural",
+ "Damask",
+ "Damask Resource 3",
+ "Lilac",
+ "Pattern",
+ "pink",
+ "T7631",
+ "taupe",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72289-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80407-ncw4394-designer-wallcoverings-los-angeles",
+ "handle": "eur-80407-ncw4394-designer-wallcoverings-los-angeles",
+ "title": "Posingford Leaves 02 - Ecru Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506971699.jpg?v=1775523889",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Living Room",
+ "NCW4394",
+ "NCW4394-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Posingford Leaves",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80407-ncw4394-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "dwtt-72158-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72158-designer-wallcoverings-los-angeles",
+ "title": "Natural Metal Grey Metal Straw | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3648.jpg?v=1733892607",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Coastal",
+ "cream",
+ "Grasscloth Resource 2",
+ "light yellow",
+ "Metal Straw",
+ "Pattern",
+ "Stripe",
+ "T3648",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72158-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm10236-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm10236-jpg",
+ "title": "SM10236 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm10235.jpg?v=1733872488",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Light Gray",
+ "Pink",
+ "Rosybrown",
+ "SM10236",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm10236-jpg"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52684",
+ "handle": "vernon-durable-walls-xwp-52684",
+ "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-52684-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735749",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52684"
+ },
+ {
+ "sku": "presque-isle-wheat-regal-stripe-wallpaper-cca-83120",
+ "handle": "presque-isle-wheat-regal-stripe-wallpaper-cca-83120",
+ "title": "Presque Isle Wheat Regal Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0220929568214c537283128125e1d5c8.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Wheat",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/presque-isle-wheat-regal-stripe-wallpaper-cca-83120"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52337",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52337",
+ "title": "Nassau Contemporary Emboosed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nest-kingfisher.jpg?v=1777480487",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mauve",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Pink",
+ "Purple",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52337"
+ },
+ {
+ "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": "gia-lavender-soft-stripe-wallpaper-cca-83054",
+ "handle": "gia-lavender-soft-stripe-wallpaper-cca-83054",
+ "title": "Gia Lavender Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7c6c431782b8ab65f3662b6f8fb5d3c7.jpg?v=1572309967",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Lavender",
+ "Non-Woven",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gia-lavender-soft-stripe-wallpaper-cca-83054"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2771",
+ "handle": "faux-leaf-squares-fls-2771",
+ "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2771-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712078",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Ivory",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable",
+ "Yellow"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2771"
+ },
+ {
+ "sku": "sc_0001wp88358",
+ "handle": "sc_0001wp88358",
+ "title": "Lyra Silk Weave - Cloud | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/SC_0001WP88358.jpg?v=1745345977",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "LYRA SILK WEAVE",
+ "Lyra Silk Weave - Cloud Wallcovering",
+ "Scalamandre Wallcovering",
+ "Silk",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sc_0001wp88358"
+ },
+ {
+ "sku": "house-of-turnowsky-teal-wallcovering-as-creation-1",
+ "handle": "house-of-turnowsky-teal-wallcovering-as-creation-1",
+ "title": "House of Turnowsky - Teal Wallcovering | AS Creation",
+ "vendor": "AS Creation",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/8e37d66836657dbe100a1be40d66d80a_5bc2c8de-3974-46c1-bf13-2361defb35ff.jpg?v=1776187495",
+ "tags": [
+ "AS Creation",
+ "AS389062-0",
+ "Botanical",
+ "Chinoiserie",
+ "Commercial Wallcovering",
+ "Extra washable",
+ "Floral",
+ "good light fastness",
+ "Hallway",
+ "House of Turnowsky",
+ "Kitchen",
+ "Living",
+ "Modern",
+ "New Arrival",
+ "Non-woven",
+ "Office",
+ "Pink",
+ "Residential",
+ "Sleeping",
+ "Strippable means",
+ "Teal",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/house-of-turnowsky-teal-wallcovering-as-creation-1"
+ },
+ {
+ "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": "eur-80147-ncw4150-designer-wallcoverings-los-angeles",
+ "handle": "eur-80147-ncw4150-designer-wallcoverings-los-angeles",
+ "title": "Rosslyn 05 - Ecru Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497337907.jpg?v=1775522390",
+ "tags": [
+ "1970s Retro",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Dining Room",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4150",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Rosslyn",
+ "Taupe",
+ "Traditional",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80147-ncw4150-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127828",
+ "handle": "dwkk-127828",
+ "title": "Wild Strawberry Wp - Ivory Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0135_03_CAC_0160f6e4-2507-46e2-9360-b01bb2b615a8.jpg?v=1753321572",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blush Pink",
+ "Botanical",
+ "Canary Yellow",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Flowers",
+ "Grandmillennial",
+ "Green",
+ "Leaves",
+ "Non Woven - 100%",
+ "Nursery",
+ "Paper",
+ "Pink",
+ "Playful",
+ "Powder Room",
+ "Print",
+ "Sage Green",
+ "Strawberries",
+ "Strawberry Red",
+ "Traditional",
+ "United Kingdom",
+ "W0135/03.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "Wild Strawberry Wp",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127828"
+ },
+ {
+ "sku": "lucy-large-crocodile-croca-93015",
+ "handle": "lucy-large-crocodile-croca-93015",
+ "title": "Lucy Large Crocodile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/croca-93015-sample-lucy-large-crocodile-hollywood-wallcoverings.jpg?v=1775723178",
+ "tags": [
+ "Amber",
+ "Animal Print",
+ "Apricot",
+ "Beige",
+ "Brass",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Embossed Texture",
+ "Gold",
+ "Golden",
+ "Gray",
+ "Indigo",
+ "Ivory",
+ "Khaki",
+ "Lilac",
+ "Lucy Large Crocodile Wallcovering",
+ "Maroon",
+ "Mustard",
+ "Navy",
+ "Ochre",
+ "Olive",
+ "Paper Backed Vinyl",
+ "Peach",
+ "Plum",
+ "Rust",
+ "Salmon",
+ "Sienna",
+ "Silver",
+ "Slate",
+ "Taupe",
+ "Teal",
+ "Umber",
+ "Wallcovering"
+ ],
+ "max_price": 32.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-croca-93015"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47881",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47881",
+ "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-47881-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722118",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47881"
+ },
+ {
+ "sku": "dwtt-71996-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71996-designer-wallcoverings-los-angeles",
+ "title": "Lyndon Damask Grey | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10030_5f3c3959-8af6-4545-8f6f-6401a25a40eb.jpg?v=1733892996",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Grey",
+ "Neutral Resource",
+ "Pattern",
+ "T10030",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71996-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "dwc-1001640",
+ "handle": "dwc-1001640",
+ "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_4693310013491.jpg?v=1775521293",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Geometric",
+ "Gold",
+ "NCW4352-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001640"
+ },
+ {
+ "sku": "dwkk-140662",
+ "handle": "dwkk-140662",
+ "title": "Ferns - Jubilee Red By G P & J Baker | | Wallcovering",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP-BW45108_1_6ea91ee5-308d-40da-86e5-e222ec348aaa.jpg?v=1753294519",
+ "tags": [
+ "27.58In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Burnt Sienna",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "Ferns",
+ "G P & J Baker",
+ "GP & J Baker",
+ "Gray",
+ "Jubilee",
+ "Leaf",
+ "Living Room",
+ "Non Woven - 100%",
+ "Orange",
+ "Organic",
+ "Paper",
+ "Slate Blue",
+ "Sp-Bw45108.1.0",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140662"
+ },
+ {
+ "sku": "minetta-contemporary-durable-vinyl-xwj-52459",
+ "handle": "minetta-contemporary-durable-vinyl-xwj-52459",
+ "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52459-sample-minetta-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775725954",
+ "tags": [
+ "1970s Retro",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Living Room",
+ "Mid-century Modern",
+ "Retro",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52459"
+ },
+ {
+ "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": "halewood-type-ii-vinyl-wallcovering-xlj-47764",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47764",
+ "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-47764-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715647",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Indigo",
+ "Khaki",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47764"
+ },
+ {
+ "sku": "dwtt-71495-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71495-designer-wallcoverings-los-angeles",
+ "title": "Aldora Lavender | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11050_9068b050-13ba-4d68-88f4-4c14831a212a.jpg?v=1733893959",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Contemporary",
+ "Geometric Resource 2",
+ "lavender",
+ "Pattern",
+ "T11050",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71495-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80123-ncw4123-designer-wallcoverings-los-angeles",
+ "handle": "eur-80123-ncw4123-designer-wallcoverings-los-angeles",
+ "title": "Abbotsford 04 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496551475.jpg?v=1775522258",
+ "tags": [
+ "Abbotsford",
+ "Architectural",
+ "Bedroom",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Living Room",
+ "Minimalist",
+ "NCW4123",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Olive",
+ "Organic Modern",
+ "Paper",
+ "Pink",
+ "Red",
+ "Rose",
+ "Serene",
+ "Stripe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80123-ncw4123-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "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": "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": "calais-sage-grain-stripe-wallpaper-cca-83189",
+ "handle": "calais-sage-grain-stripe-wallpaper-cca-83189",
+ "title": "Calais Sage Grain Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/584eb300e518ce7ecacb161215cc6bc4.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Country",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Sage",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/calais-sage-grain-stripe-wallpaper-cca-83189"
+ },
+ {
+ "sku": "sebago-mauve-dry-brush-stripe-wallpaper-cca-83102",
+ "handle": "sebago-mauve-dry-brush-stripe-wallpaper-cca-83102",
+ "title": "Sebago Mauve Dry Brush Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/163c41c577697f5b98a36015bb8e4c98.jpg?v=1572309968",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Beige",
+ "Light Gray",
+ "Mauve",
+ "Non-woven",
+ "Prepasted",
+ "Purple",
+ "Sebago Mauve Dry Brush Stripe Wallcovering",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sebago-mauve-dry-brush-stripe-wallpaper-cca-83102"
+ },
+ {
+ "sku": "caron-tabac-wallpaper-xa6-66450",
+ "handle": "caron-tabac-wallpaper-xa6-66450",
+ "title": "Caron Tabac Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8883c6bd764640277e2e78bc5e33f384.jpg?v=1572309542",
+ "tags": [
+ "Abstract",
+ "Acoustical",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Caron Tabac Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Hotel Lobby",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "polyester",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 43.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/caron-tabac-wallpaper-xa6-66450"
+ },
+ {
+ "sku": "harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153",
+ "handle": "harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153",
+ "title": "Harpswell Butter Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6927d546780cfe7430b01865e2759859_4578bc0a-8baa-456d-be09-4967045dff0b.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Herringbone",
+ "LA Walls",
+ "Light Yellow",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Takumi",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-butter-herringbone-awning-stripe-wallpaper-cca-83153"
+ },
+ {
+ "sku": "ncw4353-01",
+ "handle": "ncw4353-01",
+ "title": "Les Indiennes Colbert Coral/Aqua - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497264508979.jpg?v=1775520549",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Gray",
+ "Multi",
+ "NCW4353-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4353-01"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dug-5470-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dug-5470-jpg",
+ "title": "Douglas - Beech | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dug-5470.jpg?v=1762292862",
+ "tags": [
+ "100% Vinyl",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beech",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Cream",
+ "Douglas",
+ "Paper",
+ "RAMPART®",
+ "Scandinavian",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dug-5470-jpg"
+ },
+ {
+ "sku": "butterflies-flowers-metallic-pink-wallcovering-versace",
+ "handle": "butterflies-flowers-metallic-pink-wallcovering-versace",
+ "title": "Butterflies & Flowers Metallic, Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/0f23d24281d3015c2c8e13f3038cdc8d.jpg?v=1773706292",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Blush",
+ "Butterflies & Flowers",
+ "Butterflies & Flowers Metallic",
+ "Butterfly",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Italian",
+ "Ladybug",
+ "Light Pink",
+ "Living Room",
+ "Luxury",
+ "Maximalist",
+ "Multi",
+ "Olive Green",
+ "Orchid",
+ "Paper",
+ "Paste the wall",
+ "Pink",
+ "Pink Wallcovering",
+ "Playful",
+ "Purple",
+ "Red",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vine",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/butterflies-flowers-metallic-pink-wallcovering-versace"
+ },
+ {
+ "sku": "dwkk-127834",
+ "handle": "dwkk-127834",
+ "title": "Waterlily Wp - Dove Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0137_02_CAC_559b8006-da66-45f8-aa65-8a7a6a379a79.jpg?v=1753321562",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Blush Pink",
+ "Botanical",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Crimson",
+ "Dining Room",
+ "display_variant",
+ "Dove",
+ "Eclectic",
+ "Floral",
+ "Gold",
+ "Green",
+ "Leaves",
+ "Light Grey",
+ "Living Room",
+ "Lotus Flowers",
+ "Navy Blue",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Paper",
+ "Pink",
+ "Print",
+ "Red",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Tropical",
+ "United Kingdom",
+ "W0137/02.Cac.0",
+ "Wallcovering",
+ "Waterlily Wp",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127834"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010272",
+ "handle": "hollywood-fashion-district-xhw-2010272",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010272-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717453",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010272"
+ },
+ {
+ "sku": "eur-80319-ncw4303-designer-wallcoverings-los-angeles",
+ "handle": "eur-80319-ncw4303-designer-wallcoverings-los-angeles",
+ "title": "Camille 05 - Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504022579.jpg?v=1775523352",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Camille",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Floral",
+ "Grandmillennial",
+ "Lattice",
+ "LES REVES",
+ "Light Pink",
+ "NCW4303",
+ "NCW4303-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Pink",
+ "Powder Room",
+ "Rose",
+ "Serene",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80319-ncw4303-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66832",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66832",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8b3723bd0ded0f6125edf207a2db1dea.jpg?v=1572309567",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66832"
+ },
+ {
+ "sku": "hallandale-rice-paper-effect-durable-walls-xwt-53476",
+ "handle": "hallandale-rice-paper-effect-durable-walls-xwt-53476",
+ "title": "Hallandale Rice Paper Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwt-53476-sample-hallandale-rice-paper-effect-durable-hollywood-wallcoverings.jpg?v=1775715913",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hallandale Rice Paper Effect Durable",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hallandale-rice-paper-effect-durable-walls-xwt-53476"
+ },
+ {
+ "sku": "ncw4351-01",
+ "handle": "ncw4351-01",
+ "title": "Les Indiennes Baville Red/Teal/Taupe - Neutral Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497263788083.jpg?v=1775520477",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Floral",
+ "NCW4351-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paisley",
+ "Paper",
+ "Pink",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4351-01"
+ },
+ {
+ "sku": "captiva-light-pink-floral-toss-wallpaper-cca-83046",
+ "handle": "captiva-light-pink-floral-toss-wallpaper-cca-83046",
+ "title": "Captiva Light Pink Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/990a597d9507031518df912cab255638.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-light-pink-floral-toss-wallpaper-cca-83046"
+ },
+ {
+ "sku": "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": "dwtt-72032-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72032-designer-wallcoverings-los-angeles",
+ "title": "Regatta Raffia Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T5711_8cadc2db-00a2-4069-8b37-8cd6ec442e5b.jpg?v=1733892927",
+ "tags": [
+ "Architectural",
+ "Biscayne",
+ "cream",
+ "off-white",
+ "Pattern",
+ "Solid",
+ "T5711",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72032-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52451",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52451",
+ "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-52451-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730780",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52451"
+ },
+ {
+ "sku": "hollywood-poolside-pebble-xhw-2010155",
+ "handle": "hollywood-poolside-pebble-xhw-2010155",
+ "title": "Hollywood Poolside Pebble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010155-sample-hollywood-poolside-pebble-hollywood-wallcoverings.jpg?v=1775718379",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Gray",
+ "Khaki",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 64.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-poolside-pebble-xhw-2010155"
+ },
+ {
+ "sku": "norman-cream-medallion-wallpaper-cca-82953",
+ "handle": "norman-cream-medallion-wallpaper-cca-82953",
+ "title": "Norman Cream Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/42875a78b84399ba22c97b09537d6421.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Takumi",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-cream-medallion-wallpaper-cca-82953"
+ },
+ {
+ "sku": "espana-cork-wallcovering-cork-801",
+ "handle": "espana-cork-wallcovering-cork-801",
+ "title": "Espana Cork | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cork-801-sample-espana-cork-hollywood-wallcoverings.jpg?v=1775711300",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Brown",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cork",
+ "Espana Cork",
+ "Gold",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Natural Corn Honey",
+ "Office",
+ "Organic",
+ "Organic Modern",
+ "Pink",
+ "Portugal Cork",
+ "Rose Gold",
+ "Rustic",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 404.41,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/espana-cork-wallcovering-cork-801"
+ },
+ {
+ "sku": "hollywood-atelier-woven-xhw-2010236",
+ "handle": "hollywood-atelier-woven-xhw-2010236",
+ "title": "Hollywood Atelier Woven | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010236-sample-hollywood-atelier-woven-hollywood-wallcoverings.jpg?v=1775716993",
+ "tags": [
+ "Beige",
+ "Bronze",
+ "Coral",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Violet",
+ "Wallcovering"
+ ],
+ "max_price": 45.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-atelier-woven-xhw-2010236"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53169",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53169",
+ "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-agave_34188f03-f3bc-4e1e-90e5-efc5bf703da8.jpg?v=1777481369",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Green",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Green",
+ "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",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Sage",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "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-53169"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010440",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010440",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010440-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717335",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Denim",
+ "Faux Wood",
+ "Lilac",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Salmon",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010440"
+ },
+ {
+ "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": "dwc-1001587",
+ "handle": "dwc-1001587",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693306671155.jpg?v=1775520962",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Geometric",
+ "Gray",
+ "NCW4301-02",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Peach",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001587"
+ },
+ {
+ "sku": "susie-pink-chevron-wallpaper-cca-83036",
+ "handle": "susie-pink-chevron-wallpaper-cca-83036",
+ "title": "Susie Pink Chevron Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/863936ee67c10001ceab04198d5994b6.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Chevron",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Kids",
+ "LA Walls",
+ "Light Green",
+ "Modern",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/susie-pink-chevron-wallpaper-cca-83036"
+ },
+ {
+ "sku": "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": "asha-pewter-lotus-damask-wallpaper-cca-83230",
+ "handle": "asha-pewter-lotus-damask-wallpaper-cca-83230",
+ "title": "Asha Pewter Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6b698b19c5acc6ffb24c7e4e2e2f9ca2.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Non-Woven",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pewter-lotus-damask-wallpaper-cca-83230"
+ },
+ {
+ "sku": "leia-sage-lace-damask-wallpaper-cca-83252",
+ "handle": "leia-sage-lace-damask-wallpaper-cca-83252",
+ "title": "Leia Sage Lace Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0ea102f1cb1aa9b9278d7df1f44dc1a7.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Lace",
+ "Prepasted",
+ "Sage",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leia-sage-lace-damask-wallpaper-cca-83252"
+ },
+ {
+ "sku": "laurel-hills-panels-hlw-73141",
+ "handle": "laurel-hills-panels-hlw-73141",
+ "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-73141-sample-clean.jpg?v=1774483699",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Dining Room",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Japonisme",
+ "Laurel Hills",
+ "Light Yellow",
+ "Living Room",
+ "Mural",
+ "Natural",
+ "Naturally Glamorous",
+ "Pale Yellow",
+ "Paper",
+ "Sage Green",
+ "Scenic",
+ "Serene",
+ "Slate Gray",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 130.83,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/laurel-hills-panels-hlw-73141"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48168",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48168",
+ "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-48168-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728433",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Dark Brown",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Minimalist",
+ "Paddock Type 2 Vinyl Wallcovering",
+ "Paper",
+ "Sage",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48168"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_br11034-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_br11034-jpg",
+ "title": "BR11034 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_br11013.jpg?v=1733873628",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "BR11034",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Paper",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_br11034-jpg"
+ },
+ {
+ "sku": "dwtt-72273-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72273-designer-wallcoverings-los-angeles",
+ "title": "Medici White on Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7664.jpg?v=1733892380",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Damask Resource 3",
+ "Pattern",
+ "T7664",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "White on Pearl"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72273-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "westville-contemporary-durable-walls-xje-53688",
+ "handle": "westville-contemporary-durable-walls-xje-53688",
+ "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-53688-sample-westville-contemporary-durable-hollywood-wallcoverings.jpg?v=1775736473",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Living Room",
+ "Off-white",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/westville-contemporary-durable-walls-xje-53688"
+ },
+ {
+ "sku": "dwss-72694",
+ "handle": "dwss-72694",
+ "title": "Margareta powder blue Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/811-26_image1_476bc423-2586-41e7-a4af-bd2065a7a94a.jpg?v=1646105100",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Nouveau",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Geometric",
+ "Light Gray",
+ "Margareta",
+ "Margareta powder blue Sample",
+ "P811-26",
+ "Paper",
+ "POWDER BLUE",
+ "Sandberg",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72694"
+ },
+ {
+ "sku": "limoges-durable-vinyl-dur-72018",
+ "handle": "limoges-durable-vinyl-dur-72018",
+ "title": "Wool Look - Faux Suede Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72018-sample-clean.jpg?v=1774483995",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Light Grey",
+ "Limoges Durable Vinyl",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/limoges-durable-vinyl-dur-72018"
+ },
+ {
+ "sku": "lafayette-modern-embossed-durable-walls-xwf-52254",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52254",
+ "title": "Lafayette Modern Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52254-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721082",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52254"
+ },
+ {
+ "sku": "dwss-71417",
+ "handle": "dwss-71417",
+ "title": "Emil - Blush Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/835-24_image2.jpg?v=1646103691",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blush",
+ "Class A Fire Rated",
+ "Commercial",
+ "Emil",
+ "Emil blush",
+ "Floral",
+ "Gray",
+ "Light Gray",
+ "Non-Woven",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sandberg",
+ "Sandberg Emil",
+ "Scandinavian",
+ "Swedish Design",
+ "Timeless",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 146.1,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-71417"
+ },
+ {
+ "sku": "pauline-s-retro-geometric-scr-8000",
+ "handle": "pauline-s-retro-geometric-scr-8000",
+ "title": "Pauline's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/61c211a316e9c035169ed4bff1cf56bb.jpg?v=1572309104",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Designer Wallcoverings",
+ "Floral",
+ "Geometric",
+ "Mid-Century Modern",
+ "Paper",
+ "Pauline's Retro Geometric",
+ "Pink",
+ "Pink White",
+ "Screen Print",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 146.18,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pauline-s-retro-geometric-scr-8000"
+ },
+ {
+ "sku": "dwtt-80959-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80959-designer-wallcoverings-los-angeles",
+ "title": "Coromandel | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T10228_423cfb00-88ce-4801-a1a8-cccd1bbaff49.jpg?v=1743193972",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "brown",
+ "Chinoiserie",
+ "cream",
+ "Floral",
+ "gray",
+ "green",
+ "Pattern",
+ "red",
+ "T10228",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80959-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-antique-wood-xhw-2010442",
+ "handle": "hollywood-antique-wood-xhw-2010442",
+ "title": "Hollywood Antique Wood | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010442-sample-hollywood-antique-wood-hollywood-wallcoverings.jpg?v=1775716945",
+ "tags": [
+ "Beige",
+ "CELLULOSE",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Salmon",
+ "Teal",
+ "USA",
+ "Wallcovering",
+ "Wood"
+ ],
+ "max_price": 79.86,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-antique-wood-xhw-2010442"
+ },
+ {
+ "sku": "dwkk-127821",
+ "handle": "dwkk-127821",
+ "title": "Sapphire Garden Wp - Sapphire Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0133_03_CAC_a9a8aad3-b13d-4286-a969-f5eae1686fb6.jpg?v=1753321584",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Charcoal Grey",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Cornflower Blue",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Monkey",
+ "Non Woven - 100%",
+ "Olive Green",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Print",
+ "Sapphire Garden Wp",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Traditional",
+ "United Kingdom",
+ "W0133/03.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127821"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66470",
+ "handle": "mr-diorio-wallpaper-xa8-66470",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b7b9831432dbb3b233e2c16fb5a741f7.jpg?v=1775124973",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "I’ll generate the one-word",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "real color names as requested.",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Walnut",
+ "White"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66470"
+ },
+ {
+ "sku": "dwtt-71345-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71345-designer-wallcoverings-los-angeles",
+ "title": "Danube Ikat Orange and Pink | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T88741_96c77928-7b53-4e75-a64a-632d6c50db08.jpg?v=1733894195",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Bohemian",
+ "Geometric",
+ "orange",
+ "Orange and Pink",
+ "Pattern",
+ "pink",
+ "T88741",
+ "teal",
+ "Thibaut",
+ "Trade Routes",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71345-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "captiva-lavender-floral-toss-wallpaper-cca-83044",
+ "handle": "captiva-lavender-floral-toss-wallpaper-cca-83044",
+ "title": "Captiva Lavender Floral Toss Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5756d82e53931dcb55a13933ddc90026.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/captiva-lavender-floral-toss-wallpaper-cca-83044"
+ },
+ {
+ "sku": "kenley-blackberry-polka-dots-wallpaper-wallpaper-cca-82871",
+ "handle": "kenley-blackberry-polka-dots-wallpaper-wallpaper-cca-82871",
+ "title": "Kenley Blackberry Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/86528544efbd8be964b1ab34ead71d7a.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Modern",
+ "Paper",
+ "Pink",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-blackberry-polka-dots-wallpaper-wallpaper-cca-82871"
+ },
+ {
+ "sku": "floating-fibers-dwx-58188",
+ "handle": "floating-fibers-dwx-58188",
+ "title": "Floating Fibers | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58188-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714172",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Embossed Texture",
+ "Estimated Type: Non-woven",
+ "Fiber",
+ "Gold",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Brown",
+ "Living Room",
+ "Luxe",
+ "Minimalist",
+ "Natural Look",
+ "Neoclassical",
+ "Neutral",
+ "Organic",
+ "Residential",
+ "Solid",
+ "Sophisticated",
+ "Stripe",
+ "Subtle",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58188"
+ },
+ {
+ "sku": "dwss-72653",
+ "handle": "dwss-72653",
+ "title": "Simons Ang white Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/708-01_image1_d560f694-babd-4b7d-a9f0-7fd580c05eaa.jpg?v=1646104958",
+ "tags": [
+ "AI-Analyzed-v2",
+ "ANG WHITE",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Green",
+ "P708-01",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Sandberg",
+ "Simons",
+ "Simons Ang white Sample",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72653"
+ },
+ {
+ "sku": "provence-durable-vinyl-dur-72029",
+ "handle": "provence-durable-vinyl-dur-72029",
+ "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-72029-sample-clean.jpg?v=1774484036",
+ "tags": [
+ "AI-Analyzed-v2",
+ "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",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Pale Beige",
+ "Provence 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/provence-durable-vinyl-dur-72029"
+ },
+ {
+ "sku": "nassau-contemporary-emboosed-walls-xwh-52332",
+ "handle": "nassau-contemporary-emboosed-walls-xwh-52332",
+ "title": "Nassau Contemporary Emboosed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nest-turtle_dove_8a894a53-4b41-475e-9650-9c4edb33ffb7.jpg?v=1777481354",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nassau-contemporary-emboosed-walls-xwh-52332"
+ },
+ {
+ "sku": "dwtt-80279-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80279-designer-wallcoverings-los-angeles",
+ "title": "Woodland Beige and Soft Blue Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-bedroom-dwtt-80279-designer-wallcoverings-los-angeles.jpg?v=1771830246",
+ "tags": [
+ "AT57850",
+ "Bedroom",
+ "Beige and Soft Blue",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Celadon",
+ "Champagne",
+ "Cream",
+ "Dining Room",
+ "Dusty Blue",
+ "Elegant",
+ "English Country",
+ "Entryway",
+ "Floral",
+ "Foliage",
+ "Golden Yellow",
+ "Ivory",
+ "Large Scale",
+ "Living Room",
+ "Muted",
+ "Muted Green",
+ "Office",
+ "Pale Gold",
+ "Pattern",
+ "Peaceful",
+ "Pearl White",
+ "Powder Room",
+ "Sage Green",
+ "Serene",
+ "Soft Blue",
+ "Sophisticated",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm Beige",
+ "Whisper Blue",
+ "Woodland"
+ ],
+ "max_price": 144.98,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80279-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52081",
+ "handle": "canal-damask-durable-vinyl-xwa-52081",
+ "title": "Canal Damask Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwa-52081-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707064",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Damask",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52081"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2521",
+ "handle": "faux-leaf-squares-fls-2521",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2521-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711925",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2521"
+ },
+ {
+ "sku": "cody-cantina-wallpaper-xb1-66498",
+ "handle": "cody-cantina-wallpaper-xb1-66498",
+ "title": "Cody Cantina Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/52457d2b19f9b76a16ccbbb1ff86f2dc.jpg?v=1775127013",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Cantina Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Light Beige",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Spa",
+ "Stripe",
+ "Striped",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.61,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66498"
+ },
+ {
+ "sku": "kia-island-palm-shadow-wallpaper-trf-56861",
+ "handle": "kia-island-palm-shadow-wallpaper-trf-56861",
+ "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/0f99f3d6b8174fa067d4a03a922aec49.jpg?v=1750789728",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "bright yellow",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "golden yellow",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Jeffrey Stevens",
+ "jungle",
+ "large scale",
+ "leaf",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "palm",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "rain forest",
+ "Series: York",
+ "Textured",
+ "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-56861"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58047",
+ "handle": "sunset-stone-vinyl-dwx-58047",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58047-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735127",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Faux Stone",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Natural Look",
+ "Organic Modern",
+ "Sand",
+ "Stone",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58047"
+ },
+ {
+ "sku": "dwtt-72290-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72290-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Aqua | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ModernResource2-Telaio-01.jpg?v=1773244292",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "cream",
+ "Damask",
+ "Damask Resource 3",
+ "Pattern",
+ "T7632",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72290-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "floating-fibers-dwx-58185",
+ "handle": "floating-fibers-dwx-58185",
+ "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-58185-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714098",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Blue",
+ "Dark Brown",
+ "Embossed Texture",
+ "Fiber",
+ "Geometric",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Brown",
+ "Luxe",
+ "Minimalist",
+ "Natural Look",
+ "Navy",
+ "Neoclassical",
+ "Neutral",
+ "Non-woven",
+ "Organic",
+ "Residential",
+ "Solid",
+ "Sophisticated",
+ "Subtle",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-fibers-dwx-58185"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66600",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66600",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c4e32e23a9d672d6bc147198d00dab17.jpg?v=1775131606",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Gold",
+ "Hotel Lobby",
+ "Khaki",
+ "Lanvin Arpergeo Wallcovering",
+ "Living Room",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Striped",
+ "Tan",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66600"
+ },
+ {
+ "sku": "mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859",
+ "handle": "mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859",
+ "title": "Mia Peach Faux Zebra Stripes Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/730be7789c53ba7ca7f92576d3a886c5.jpg?v=1572309958",
+ "tags": [
+ "Animal Prints",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Faux",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04",
+ "Yellow",
+ "Zebra"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mia-peach-faux-zebra-stripes-wallpaper-wallpaper-cca-82859"
+ },
+ {
+ "sku": "eur-80260-ncw4270-designer-wallcoverings-los-angeles",
+ "handle": "eur-80260-ncw4270-designer-wallcoverings-los-angeles",
+ "title": "Coromandel 02 - Coral Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501466675.jpg?v=1775523022",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Coromandel",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "NCW4270",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Olive Green",
+ "Paper",
+ "Pink",
+ "Red",
+ "Rose Quartz",
+ "Seafoam Green",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80260-ncw4270-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "macey-pink-wiggle-stripe-wallpaper-cca-83009",
+ "handle": "macey-pink-wiggle-stripe-wallpaper-cca-83009",
+ "title": "Macey Pink Wiggle Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/718f174ec8c12ce91bb6f6ad95e2593c.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/macey-pink-wiggle-stripe-wallpaper-cca-83009"
+ },
+ {
+ "sku": "biscay-bay-warm-cherry-wood-grain-wbs-39623",
+ "handle": "biscay-bay-warm-cherry-wood-grain-wbs-39623",
+ "title": "Biscay Bay Warm Cherry Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39623-sample-biscay-bay-warm-cherry-wood-grain-hollywood-wallcoverings.jpg?v=1775705683",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Faux Wood",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Navy Blue",
+ "Olive Green",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Regencycore",
+ "Rich Woods",
+ "Sepia",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Walnut Brown",
+ "White",
+ "Wood",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biscay-bay-warm-cherry-wood-grain-wbs-39623"
+ },
+ {
+ "sku": "eur-80443-ncw4494-designer-wallcoverings-los-angeles",
+ "handle": "eur-80443-ncw4494-designer-wallcoverings-los-angeles",
+ "title": "Signature Meridor - 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_7513508184115.jpg?v=1775524121",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "Light Green",
+ "Light Sage",
+ "Living Room",
+ "Meridor Stripe",
+ "NCW4494",
+ "NCW4494-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80443-ncw4494-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52900",
+ "handle": "st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52900",
+ "title": "St Lawrence Embossed Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xws-52900-sample-st-lawrence-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734596",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-lawrence-embossed-contemporary-durable-vinyl-walls-xws-52900"
+ },
+ {
+ "sku": "dwtt-70823-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-70823-designer-wallcoverings-los-angeles",
+ "title": "Aedan Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T10401.jpg?v=1762221875",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "contemporary",
+ "cream",
+ "geometric",
+ "gold",
+ "Modern Resource 2",
+ "Pattern",
+ "T10401",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-70823-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80445-ncw4494-designer-wallcoverings-los-angeles",
+ "handle": "eur-80445-ncw4494-designer-wallcoverings-los-angeles",
+ "title": "Meridor Stripe 05 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508282419.jpg?v=1775524134",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Leaf",
+ "Living Room",
+ "Meridor Stripe",
+ "NCW4494",
+ "NCW4494-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80445-ncw4494-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48106",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48106",
+ "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-48106-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727530",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Oatmeal",
+ "Olney Type 2 Vinyl",
+ "Olney Type 2 Vinyl Wallcovering",
+ "Organic Modern",
+ "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-48106"
+ },
+ {
+ "sku": "stonington-cream-awning-stripe-wallpaper-cca-83152",
+ "handle": "stonington-cream-awning-stripe-wallpaper-cca-83152",
+ "title": "Stonington Cream Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/eebd80caaf78b62b4e137278a0ecc6b1_5d86accb-9353-4bfe-86d4-6502e846cd04.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/stonington-cream-awning-stripe-wallpaper-cca-83152"
+ },
+ {
+ "sku": "colby-lavender-love-spots-wallpaper-cca-83003",
+ "handle": "colby-lavender-love-spots-wallpaper-cca-83003",
+ "title": "Colby Lavender Love Spots Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3af9e47b886dbf49d740ae9158e8713b.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Lavender",
+ "Paper",
+ "Polka Dots",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Strippable",
+ "Teal",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/colby-lavender-love-spots-wallpaper-cca-83003"
+ },
+ {
+ "sku": "ncw4393-06",
+ "handle": "ncw4393-06",
+ "title": "Ashdown Benmore Blush/Grey - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497266114611.jpg?v=1775520803",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Gray",
+ "Leaf",
+ "Multi",
+ "NCW4393-06",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Peach",
+ "Tropical",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4393-06"
+ },
+ {
+ "sku": "gabriella-aqua-ogge-busy-toss-wallpaper-wallpaper-cca-82864",
+ "handle": "gabriella-aqua-ogge-busy-toss-wallpaper-wallpaper-cca-82864",
+ "title": "Gabriella Aqua Ogge Busy Toss Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a89f0c43a3454c6c84e939588a03c6ac.jpg?v=1572309958",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "LA Walls",
+ "Leopard",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gabriella-aqua-ogge-busy-toss-wallpaper-wallpaper-cca-82864"
+ },
+ {
+ "sku": "amity-champagne-bleeding-heart-texture-wallpaper-cca-83285",
+ "handle": "amity-champagne-bleeding-heart-texture-wallpaper-cca-83285",
+ "title": "Amity Champagne Bleeding Heart Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2ce63d26b0c44e7ac2862299f29a51e2.jpg?v=1572309983",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Bling",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Glitter",
+ "LA Walls",
+ "Light Blue",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/amity-champagne-bleeding-heart-texture-wallpaper-cca-83285"
+ },
+ {
+ "sku": "oakland-mauve-grasscloth-stripe-wallpaper-cca-83165",
+ "handle": "oakland-mauve-grasscloth-stripe-wallpaper-cca-83165",
+ "title": "Oakland Mauve Grasscloth Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5f180b806d04f3188d92b81d60c8fd06.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "LA Walls",
+ "Light Brown",
+ "Mauve",
+ "Natural",
+ "Natural Wallcovering",
+ "Oakland Mauve Grasscloth Stripe Wallcovering",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oakland-mauve-grasscloth-stripe-wallpaper-cca-83165"
+ },
+ {
+ "sku": "john-s-thick-embossed-vinyl-xjt-44465",
+ "handle": "john-s-thick-embossed-vinyl-xjt-44465",
+ "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/products/7ba36c0feed4ca3ab85a10fe489b9b47.jpg?v=1733880981",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Check",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "John's Thick Embossed Vinyl",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/john-s-thick-embossed-vinyl-xjt-44465"
+ },
+ {
+ "sku": "noah-s-aqua-clouds-wallpaper-cca-82984",
+ "handle": "noah-s-aqua-clouds-wallpaper-cca-82984",
+ "title": "Noah'S Aqua Clouds Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/032219684131fc525541f0f705f15c82.jpg?v=1572309964",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Animals",
+ "Aqua",
+ "Architectural",
+ "bird",
+ "Birds",
+ "Blue",
+ "Clouds",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Fauna",
+ "Kids",
+ "LA Walls",
+ "Paper",
+ "Peach",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/noah-s-aqua-clouds-wallpaper-cca-82984"
+ },
+ {
+ "sku": "dwss-72603",
+ "handle": "dwss-72603",
+ "title": "Sandra powder white Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/651-11_image1_c8ed4526-d6df-4dd0-85a9-3cf1fe033123.jpg?v=1646104794",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Gray-blue",
+ "Off-white",
+ "P651-11",
+ "Pale Pink",
+ "Paper",
+ "Pattern",
+ "POWDER WHITE",
+ "Sandberg",
+ "Sandra",
+ "Sandra powder white Sample",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72603"
+ },
+ {
+ "sku": "ernesto-s-retro-geometric-scr-8062",
+ "handle": "ernesto-s-retro-geometric-scr-8062",
+ "title": "Ernesto's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0892fb2934dcc0f5b4ed82b8fe53f1d0.jpg?v=1572309106",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Arts & Crafts",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Designer Wallcoverings",
+ "Ernesto's Retro Geometric",
+ "Floral",
+ "Off-white",
+ "Paper",
+ "Screen Print",
+ "Sepia Cream",
+ "Traditional",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol. 1",
+ "White"
+ ],
+ "max_price": 216.71,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ernesto-s-retro-geometric-scr-8062"
+ },
+ {
+ "sku": "eur-80427-ncw4491-designer-wallcoverings-los-angeles",
+ "handle": "eur-80427-ncw4491-designer-wallcoverings-los-angeles",
+ "title": "Almora 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_7513507659827.jpg?v=1775524023",
+ "tags": [
+ "Almora",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4491",
+ "NCW4491-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Purple",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80427-ncw4491-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "gibby-peach-leafy-scroll-wallpaper-wallpaper-cca-82851",
+ "handle": "gibby-peach-leafy-scroll-wallpaper-wallpaper-cca-82851",
+ "title": "Gibby Peach Leafy Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/15d47bbd9ed51ccb48c149dab69627d9.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Leaf",
+ "Peach",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gibby-peach-leafy-scroll-wallpaper-wallpaper-cca-82851"
+ },
+ {
+ "sku": "yasu-silver-brunschwig-fils",
+ "handle": "yasu-silver-brunschwig-fils",
+ "title": "Yasu Silver | Brunschwig & Fils",
+ "vendor": "Brunschwig & Fils",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P8015111_11_926bf78a-0113-4b3d-a601-d75cad06b09c.jpg?v=1777019993",
+ "tags": [
+ "Bedroom",
+ "Beige",
+ "Brunschwig & Fils",
+ "Contemporary",
+ "Cream",
+ "Kravet",
+ "Living Room",
+ "Minimalist",
+ "New Arrival",
+ "Office",
+ "Origin: Japan",
+ "Scandinavian",
+ "Spa",
+ "Textural",
+ "Wallcovering"
+ ],
+ "max_price": 5906.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/yasu-silver-brunschwig-fils"
+ },
+ {
+ "sku": "shin-silver-golden-scroll-texture-wallpaper-cca-83267",
+ "handle": "shin-silver-golden-scroll-texture-wallpaper-cca-83267",
+ "title": "Shin Silver Golden Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bf547d53bd0a202c0126929f21ad8a3c.jpg?v=1572309982",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Neutral",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Shin Silver Golden Scroll Texture Wallcovering",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/shin-silver-golden-scroll-texture-wallpaper-cca-83267"
+ },
+ {
+ "sku": "eur-80287-ncw4276-designer-wallcoverings-los-angeles",
+ "handle": "eur-80287-ncw4276-designer-wallcoverings-los-angeles",
+ "title": "Perdana 03 - Orchid Tint Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502351411.jpg?v=1775523173",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Amethyst",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Butterfly",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Cottagecore",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Living Room",
+ "NCW4276",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Perdana",
+ "Perdana 03",
+ "Purple",
+ "Sage",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80287-ncw4276-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4303-05",
+ "handle": "ncw4303-05",
+ "title": "Les Rêves Camille Coral/Pink - Coral Blush Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262182451.jpg?v=1775520276",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Light Pink",
+ "NCW4303-05",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Trellis",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4303-05"
+ },
+ {
+ "sku": "harpswell-beige-herringbone-awning-stripe-wallpaper-cca-83157",
+ "handle": "harpswell-beige-herringbone-awning-stripe-wallpaper-cca-83157",
+ "title": "Harpswell Beige Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b519a00a568542fdbd5fa6be95fc418b.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Harpswell Beige Herringbone Awning Stripe Wallcovering",
+ "LA Walls",
+ "Light Beige",
+ "Light Yellow",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-beige-herringbone-awning-stripe-wallpaper-cca-83157"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47943",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47943",
+ "title": "Maidstone - Taupe 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-moonstone.jpg?v=1777480139",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "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",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "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\"",
+ "Yellow"
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47943"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5011-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5011-jpg",
+ "title": "Shift - Coral | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5011.jpg?v=1762305644",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Coral",
+ "Geometric",
+ "Pink",
+ "RAMPART®",
+ "Shift",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5011-jpg"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53162",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53162",
+ "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-challis_43534bb3-bba2-411e-b917-c023cb1481e6.jpg?v=1777481121",
+ "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",
+ "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",
+ "Serene",
+ "Texture",
+ "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\"",
+ "Yellow"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53162"
+ },
+ {
+ "sku": "anahi-neutral-forest-fauna-wallpaper-cca-82990",
+ "handle": "anahi-neutral-forest-fauna-wallpaper-cca-82990",
+ "title": "Anahi Neutral Forest Fauna Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0743eb597c19d2d13569381720a651ec.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Arts & Crafts",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Commercial",
+ "Cream",
+ "Deer",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Flowers",
+ "LA Walls",
+ "Paper",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Rabbit",
+ "Series: Brewster",
+ "Strippable",
+ "Trees",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "Wood",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 39.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/anahi-neutral-forest-fauna-wallpaper-cca-82990"
+ },
+ {
+ "sku": "biejing-embossed-walls-bew-9500",
+ "handle": "biejing-embossed-walls-bew-9500",
+ "title": "Biejing Embossed | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BEW-9500-sample-clean.jpg?v=1774478536",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial - Cleanable",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Elegant Vinyls Vol. 1",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Light Taupe",
+ "Living Room",
+ "Mauve",
+ "Modern",
+ "Office",
+ "Pink",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 39.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/biejing-embossed-walls-bew-9500"
+ },
+ {
+ "sku": "eur-80195-ncw4184-designer-wallcoverings-los-angeles",
+ "handle": "eur-80195-ncw4184-designer-wallcoverings-los-angeles",
+ "title": "Suzhou 02 - Deep Charcoal Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499172915.jpg?v=1775522694",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Burgundy",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dark Olive Green",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lime Green",
+ "Living Room",
+ "NCW4184",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Red",
+ "Rose Pink",
+ "Serene",
+ "Suzhou",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80195-ncw4184-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71253-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71253-designer-wallcoverings-los-angeles",
+ "title": "Carolyn Trellis Cream on Beige with Metallic | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83031_bd20d347-681d-4676-931c-966dd8dbad52.jpg?v=1733894361",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Beige with Metallic",
+ "cream",
+ "Geometric",
+ "Natural Resource 2",
+ "Pattern",
+ "T83031",
+ "Texture",
+ "Thibaut",
+ "Transitional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71253-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52691",
+ "handle": "vernon-durable-walls-xwp-52691",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52691-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735763",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Leed Walls",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52691"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010364",
+ "handle": "hollywood-contemporary-coast-xhw-2010364",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010364-sample-clean.jpg?v=1774482584",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "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",
+ "Cream",
+ "Ecru",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010364"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2635",
+ "handle": "pleated-perfect-paradise-ppp-2635",
+ "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2635-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729205",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2635"
+ },
+ {
+ "sku": "dwtt-80297-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80297-designer-wallcoverings-los-angeles",
+ "title": "Ashton Ivory Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57876.jpg?v=1776161653",
+ "tags": [
+ "Ashton Small Scale Trees",
+ "Ashton Small Scale Trees Black",
+ "AT57876",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Classic",
+ "Contemporary",
+ "Coral",
+ "Dark Gray",
+ "Dining Room",
+ "Entryway",
+ "Foliage",
+ "Gold",
+ "Gray",
+ "Indigo",
+ "Ivory",
+ "Khaki",
+ "Light Gray",
+ "Living Room",
+ "Maroon",
+ "Medium Gray",
+ "Mint",
+ "Modern",
+ "Monochromatic",
+ "Navy",
+ "Off-White",
+ "Office",
+ "Olive",
+ "Orchid",
+ "Pattern",
+ "Plum",
+ "Powder Room",
+ "Serene",
+ "Silver",
+ "Small Scale",
+ "Sophisticated",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 118.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80297-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "always-room-for-ice-cream-large-mural-by-retro-walls-rtr-37216",
+ "handle": "always-room-for-ice-cream-large-mural-by-retro-walls-rtr-37216",
+ "title": "Always Room For Ice Cream Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/17ec02e3834f7c6f1a271949647f7951.jpg?v=1572309701",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Ice Cream Cone",
+ "Multi",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Textured",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/always-room-for-ice-cream-large-mural-by-retro-walls-rtr-37216"
+ },
+ {
+ "sku": "dwtt-72554-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72554-designer-wallcoverings-los-angeles",
+ "title": "T8610 Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6801.jpg?v=1775153594",
+ "tags": [
+ "Architectural",
+ "beige",
+ "blue",
+ "Botanical",
+ "brown",
+ "Cream",
+ "Floral",
+ "green",
+ "Pattern",
+ "T8610",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72554-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "kittery-grey-affinity-stria-wallpaper-cca-83133",
+ "handle": "kittery-grey-affinity-stria-wallpaper-cca-83133",
+ "title": "Kittery Grey Affinity Stria Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/23dc0a92ecd79d72ece28a589b281d75.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kittery-grey-affinity-stria-wallpaper-cca-83133"
+ },
+ {
+ "sku": "dwc-1001682",
+ "handle": "dwc-1001682",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693312077875.jpg?v=1775521568",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Gray",
+ "NCW4394-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001682"
+ },
+ {
+ "sku": "eur-80455-ncw4496-designer-wallcoverings-los-angeles",
+ "handle": "eur-80455-ncw4496-designer-wallcoverings-los-angeles",
+ "title": "Plumier Stripe 05 - Neutral Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508610099.jpg?v=1775524199",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "Dusty Rose",
+ "English Country",
+ "Feathered leaves are presented either side of a decorative stem in a stripe repeat.",
+ "Grandmillennial",
+ "Leaf",
+ "Light Beige",
+ "Living Room",
+ "NCW4496",
+ "NCW4496-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Plumier Stripe",
+ "Rose Taupe",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80455-ncw4496-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71787-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71787-designer-wallcoverings-los-angeles",
+ "title": "Cabrera Metallic Gold | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T35133_b7c6ab78-2a0a-4d02-aca9-033307b36ead.jpg?v=1733893403",
+ "tags": [
+ "Architectural",
+ "cream",
+ "Geometric",
+ "gold",
+ "Graphic Resource",
+ "Metallic Gold",
+ "Pattern",
+ "T35133",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71787-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71955-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71955-designer-wallcoverings-los-angeles",
+ "title": "Monaco Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14166_2ecd4818-2a10-4ab4-bc82-842f1178685a.jpg?v=1733893064",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Cream",
+ "Pattern",
+ "T14166",
+ "Texture",
+ "Texture Resource 4",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71955-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "dwtt-72259-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72259-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Beige | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7605.jpg?v=1733892395",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Damask Resource 3",
+ "light gray",
+ "Pattern",
+ "T7605",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72259-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52357",
+ "title": "Park Ave Contemporary Faux Grasscloth | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/passage-herb_dc4f5d17-9274-4cc4-9737-d27f06874f92.jpg?v=1777481171",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Green",
+ "Bedroom",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux",
+ "Faux Finish",
+ "Faux Grasscloth",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Look",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Grasscloth Weave",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Khaki",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Natural",
+ "Natural Texture",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52357"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ril-6372-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ril-6372-jpg",
+ "title": "Riley - Mint | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ril-6372.jpg?v=1762304601",
+ "tags": [
+ "27% Polyester",
+ "73% Acrylic",
+ "Acrylic",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Green",
+ "Polka Dot",
+ "Riley",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven Upholstery"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ril-6372-jpg"
+ },
+ {
+ "sku": "indian-shores-faux-effect-durable-walls-xwo-53644",
+ "handle": "indian-shores-faux-effect-durable-walls-xwo-53644",
+ "title": "Indian Shores Faux Effect Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwo-53644-sample-indian-shores-faux-effect-durable-hollywood-wallcoverings.jpg?v=1775719546",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/indian-shores-faux-effect-durable-walls-xwo-53644"
+ },
+ {
+ "sku": "lucerne-classic-wallpaper-ere-44636",
+ "handle": "lucerne-classic-wallpaper-ere-44636",
+ "title": "Lucerne Classic Wallcovering",
+ "vendor": "British Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d2926324492d27aaa88b8de1bed87983.jpg?v=1572309762",
+ "tags": [
+ "Architectural",
+ "Avocado",
+ "Blue",
+ "Botanical",
+ "British Walls",
+ "Chartreuse",
+ "Class A Fire Rated",
+ "Classic Whimsical European Walls",
+ "Commercial",
+ "European",
+ "European Import",
+ "Fern",
+ "Green",
+ "Lattice",
+ "Moss",
+ "Multi",
+ "Pink",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 124.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucerne-classic-wallpaper-ere-44636"
+ },
+ {
+ "sku": "dwtt-71511-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71511-designer-wallcoverings-los-angeles",
+ "title": "Kendall Coral on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11060_665fc975-9ea9-4e13-81dd-da46be209fc2.jpg?v=1733893935",
+ "tags": [
+ "Architectural",
+ "coral",
+ "Coral on Cream",
+ "cream",
+ "Geometric",
+ "Geometric Resource 2",
+ "Pattern",
+ "T11060",
+ "Thibaut",
+ "Traditional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71511-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76645",
+ "handle": "rustic-glam-vinyl-gpr-76645",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76645-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775731996",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Glamorous",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Industrial",
+ "Living Room",
+ "Luxe",
+ "Mauve",
+ "Navy",
+ "Pink",
+ "Regencycore",
+ "Solid",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "USFCID#vp885-179",
+ "Very Good Stain Abrasion Resistance - Washable",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76645"
+ },
+ {
+ "sku": "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": "asha-pewter-lotus-texture-wallpaper-cca-83272",
+ "handle": "asha-pewter-lotus-texture-wallpaper-cca-83272",
+ "title": "Asha Pewter Lotus Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5163605d27172d2d524a7c302d647eba.jpg?v=1572309983",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-pewter-lotus-texture-wallpaper-cca-83272"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53271",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53271",
+ "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-53271-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710157",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53271"
+ },
+ {
+ "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": "jolie-madam-wallpaper-xa1-66401",
+ "handle": "jolie-madam-wallpaper-xa1-66401",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3424759787935e921dcaf48c31abbf8c.jpg?v=1775119697",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Farmhouse",
+ "Grasscloth",
+ "Jolie Madam Wallcovering",
+ "Khaki",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66401"
+ },
+ {
+ "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": "saint-helene-durable-vinyl-dur-72038",
+ "handle": "saint-helene-durable-vinyl-dur-72038",
+ "title": "Saint Helene Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72038-sample-clean.jpg?v=1774484073",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Green",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-helene-durable-vinyl-dur-72038"
+ },
+ {
+ "sku": "dwkk-g21eeb3da",
+ "handle": "dwkk-g21eeb3da",
+ "title": "Chinese Lantern - Coral Beige By Lee Jofa | | Multipurpose Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/2006101_517_86aa6f6e-b809-41ef-903c-7aa4fd878a79.jpg?v=1726179610",
+ "tags": [
+ "2006101.517.0",
+ "50In",
+ "Beige",
+ "Chinese Lantern",
+ "Coral",
+ "display_variant",
+ "Hand Block",
+ "Lee Jofa",
+ "Linen - 100%",
+ "Multipurpose",
+ "Orange",
+ "Pink",
+ "Print",
+ "Thailand",
+ "Wallcovering"
+ ],
+ "max_price": 535.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-g21eeb3da"
+ },
+ {
+ "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": "millinocket-cream-illusion-stripe-wallpaper-cca-83112",
+ "handle": "millinocket-cream-illusion-stripe-wallpaper-cca-83112",
+ "title": "Millinocket Cream Illusion Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a5bfcf1b9e1bf6b9653925503bc4039d.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Gray",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/millinocket-cream-illusion-stripe-wallpaper-cca-83112"
+ },
+ {
+ "sku": "dwkk-127817",
+ "handle": "dwkk-127817",
+ "title": "Pink Lotus Wp - Ivory Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0132_02_CAC_202ba7c7-1b6b-473b-823b-4cae5b48e582.jpg?v=1753321591",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Botanical",
+ "Butterflies",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Brown",
+ "Green",
+ "Hummingbirds",
+ "Ivory",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Pink",
+ "Pink Lotus Wp",
+ "Print",
+ "Rose",
+ "Sage",
+ "Traditional",
+ "Tropical",
+ "United Kingdom",
+ "W0132/02.Cac.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127817"
+ },
+ {
+ "sku": "oxford-type-ii-vinyl-wallcovering-xvg-49331",
+ "handle": "oxford-type-ii-vinyl-wallcovering-xvg-49331",
+ "title": "Oxford Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xvg-49331-sample-oxford-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728331",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Moss",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oxford-type-ii-vinyl-wallcovering-xvg-49331"
+ },
+ {
+ "sku": "dwkk-139953",
+ "handle": "dwkk-139953",
+ "title": "Baldwin Stripe Wp - Poppy Red By Lee Jofa | Sarah Bartholomew Wallpapers | Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2022100_19.jpg?v=1753302323",
+ "tags": [
+ "27In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baldwin Stripe Wp",
+ "Bedroom",
+ "Brick Red",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "Farmhouse",
+ "Hallway",
+ "Lee Jofa",
+ "Living Room",
+ "P2022100.19.0",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Pear",
+ "Poppy",
+ "Print",
+ "Red",
+ "Stripe",
+ "Stripes",
+ "Traditional",
+ "United States",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139953"
+ },
+ {
+ "sku": "whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898",
+ "handle": "whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898",
+ "title": "Whisper Lilac Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5add5db6c445cba55b3642419331eefd.jpg?v=1572309961",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Light Gray",
+ "Lilac",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-lilac-scroll-texture-wallpaper-wallpaper-cca-82898"
+ },
+ {
+ "sku": "hollywood-tower-deco-xhw-201046",
+ "handle": "hollywood-tower-deco-xhw-201046",
+ "title": "Hollywood Tower Deco | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/avant-pave.jpg?v=1777480913",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Art Deco",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Sophisticated",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-tower-deco-xhw-201046"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73058",
+ "handle": "coldwater-hills-panels-hlw-73058",
+ "title": "Coldwater Hills - Panels | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73058-sample-clean.jpg?v=1774483258",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Grasscloth",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Office",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Sisal",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 139.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73058"
+ },
+ {
+ "sku": "dwss-72726",
+ "handle": "dwss-72726",
+ "title": "Charlotta spring green sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/830-28_image1_90883b53-fb5c-4123-b913-4d317baad7df.jpg?v=1646105210",
+ "tags": [
+ "Architectural",
+ "Art Nouveau",
+ "Arts & Crafts",
+ "Beige",
+ "Botanical",
+ "Charlotta",
+ "Charlotta spring green sample",
+ "Commercial",
+ "Floral",
+ "Green",
+ "Leaf",
+ "P830-28",
+ "Paper",
+ "Pattern",
+ "Sage",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "SPRING GREEN",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72726"
+ },
+ {
+ "sku": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+ "handle": "freeport-metallic-contemporary-durable-walls-xwt-53413",
+ "title": "Freeport Metallic Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sanctuary-pagoda.jpg?v=1777480833",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/freeport-metallic-contemporary-durable-walls-xwt-53413"
+ },
+ {
+ "sku": "suva-3-stripe-wallpaper-trf-56879",
+ "handle": "suva-3-stripe-wallpaper-trf-56879",
+ "title": "Suva 3\" Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/989293ed0eb7e36e5cc0331f35f50c36.jpg?v=1750789688",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "broad stripe",
+ "cabana",
+ "Charcoal Gray",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Gray",
+ "Jeffrey Stevens",
+ "Modern",
+ "Modern Tropics",
+ "Paper",
+ "Pattern",
+ "Prepasted - Washable - Strippable",
+ "Series: York",
+ "stripe",
+ "texture",
+ "Traditional",
+ "USA",
+ "vertical",
+ "Vinyl",
+ "Wallcovering",
+ "wide stripe"
+ ],
+ "max_price": 73.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/suva-3-stripe-wallpaper-trf-56879"
+ },
+ {
+ "sku": "dwtt-80298-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80298-designer-wallcoverings-los-angeles",
+ "title": "Ashton Slate Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57877.jpg?v=1776161657",
+ "tags": [
+ "Ashton Small Scale Trees",
+ "AT57877",
+ "Bedroom",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Contemporary",
+ "Cool",
+ "Cream",
+ "Dining Room",
+ "Dusty Blue",
+ "Entryway",
+ "Foliage",
+ "Gray",
+ "Ivory",
+ "Living Room",
+ "Mist Gray",
+ "Off White",
+ "Office",
+ "Pale Blue",
+ "Pattern",
+ "Peaceful",
+ "Pearl White",
+ "Powder Blue",
+ "Serene",
+ "Silver",
+ "Slate",
+ "Slate Blue",
+ "Small Scale",
+ "Soft Blue",
+ "Sophisticated",
+ "Steel Gray",
+ "Stone Gray",
+ "Study",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 118.91,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80298-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47686",
+ "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47686",
+ "title": "Ferndown Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47686-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712253",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Olive",
+ "Ferndown Type 2 Vinyl Wallcovering",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47686"
+ },
+ {
+ "sku": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "handle": "dylan-beige-candy-stripe-wallpaper-cca-82977",
+ "title": "Dylan Beige Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/17cb5ce99e864c47c875e18e6b43763a.jpg?v=1572309964",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Masculine",
+ "Phasing-2026-04",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 49.01,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dylan-beige-candy-stripe-wallpaper-cca-82977"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_for-5054-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_for-5054-jpg",
+ "title": "Forge - Powder | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/for-5054.jpg?v=1762294880",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Forge",
+ "Gray",
+ "Powder",
+ "RAMPART®",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_for-5054-jpg"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58040",
+ "handle": "sunset-stone-vinyl-dwx-58040",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58040-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735112",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Natural Look",
+ "Organic",
+ "Rustic",
+ "Stone",
+ "Stucco",
+ "Tan",
+ "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/sunset-stone-vinyl-dwx-58040"
+ },
+ {
+ "sku": "dwtt-72094-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72094-designer-wallcoverings-los-angeles",
+ "title": "Merrill Lavender | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T1833.jpg?v=1733892769",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Geometric",
+ "Geometric Resource",
+ "Lavender",
+ "Pattern",
+ "T1833",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72094-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80442-ncw4494-designer-wallcoverings-los-angeles",
+ "handle": "eur-80442-ncw4494-designer-wallcoverings-los-angeles",
+ "title": "Meridor Stripe 02 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513508151347.jpg?v=1775524114",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Green",
+ "Leaf",
+ "Light Blue",
+ "Meridor Stripe",
+ "NCW4494",
+ "NCW4494-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Seafoam Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Traditional",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80442-ncw4494-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "tommy-s-trees-tre300",
+ "handle": "tommy-s-trees-tre300",
+ "title": "Tommy's Trees Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tre300-sample-tommy-s-trees-wallcovering-hollywood-wallcoverings.jpg?v=1775735299",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Living Room",
+ "Organic Modern",
+ "Paper",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Trees",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tommy-s-trees-tre300"
+ },
+ {
+ "sku": "steuben-aqua-turf-stripe-wallpaper-cca-83169",
+ "handle": "steuben-aqua-turf-stripe-wallpaper-cca-83169",
+ "title": "Steuben Aqua Turf Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/368f6eec141e7fdf697ff54cd40f71b7.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Aqua",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Coral",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Blue",
+ "Linen",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Steuben Aqua Turf Stripe Wallcovering",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-aqua-turf-stripe-wallpaper-cca-83169"
+ },
+ {
+ "sku": "leia-bear-lace-damask-wallpaper-cca-83253",
+ "handle": "leia-bear-lace-damask-wallpaper-cca-83253",
+ "title": "Leia Bear Lace Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/73b84d71dda3e1b4868f820f1ee39286.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Lace",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leia-bear-lace-damask-wallpaper-cca-83253"
+ },
+ {
+ "sku": "wiscasset-cream-farmhouse-stripe-wallpaper-cca-83200",
+ "handle": "wiscasset-cream-farmhouse-stripe-wallpaper-cca-83200",
+ "title": "Wiscasset Cream Farmhouse Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/676bbda185aff8d8334ca60778f6ad73.jpg?v=1572309972",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Country",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Farmhouse",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wiscasset-cream-farmhouse-stripe-wallpaper-cca-83200"
+ },
+ {
+ "sku": "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": "tahiti-scenic-wallpaper-trf-56820",
+ "handle": "tahiti-scenic-wallpaper-trf-56820",
+ "title": "Tahiti Scenic | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce37f2d0e88b9c7d5b0748c883bc8c30.jpg?v=1750789762",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Asian",
+ "Beige",
+ "Birds",
+ "Blue",
+ "Bridge",
+ "bright",
+ "cabana",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Jeffrey Stevens",
+ "medium blue",
+ "medium scale",
+ "Modern",
+ "Modern Tropics",
+ "Navy Blue",
+ "Non-Woven",
+ "novelty",
+ "Olive Green",
+ "overall",
+ "pagoda",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Red",
+ "red/orange",
+ "scenic",
+ "Series: York",
+ "Tan",
+ "Toile",
+ "Tomato Red",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahiti-scenic-wallpaper-trf-56820"
+ },
+ {
+ "sku": "under-water-waves-xuw-44150",
+ "handle": "under-water-waves-xuw-44150",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44150-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735576",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44150"
+ },
+ {
+ "sku": "dwtt-71886-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71886-designer-wallcoverings-los-angeles",
+ "title": "Coastal Sisal Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14117_09fa4602-f64a-4c6d-9e7b-eb9917c87238.jpg?v=1733893197",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Cream",
+ "Damask",
+ "Pattern",
+ "T14117",
+ "Texture",
+ "Texture Resource 4",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71886-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71838-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71838-designer-wallcoverings-los-angeles",
+ "title": "Tanzania Raspberry and Green | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T16014_efba8f8c-970e-4951-b72e-78e04b8b4f37.jpg?v=1733893294",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Contemporary",
+ "Floral",
+ "green",
+ "Pattern",
+ "pink",
+ "Raspberry and Green",
+ "Resort",
+ "T16014",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71838-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "eur-80389-ncw4390-designer-wallcoverings-los-angeles",
+ "handle": "eur-80389-ncw4390-designer-wallcoverings-los-angeles",
+ "title": "Pomegranate Trail 04 - Chartreuse Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506283571.jpg?v=1775523768",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4390",
+ "NCW4390-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Olive Green",
+ "Organic",
+ "Paper",
+ "Pomegranate Trail",
+ "Stripe",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80389-ncw4390-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "surry-lavender-soft-stripe-wallpaper-cca-83219",
+ "handle": "surry-lavender-soft-stripe-wallpaper-cca-83219",
+ "title": "Surry Lavender Soft Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/928072c82a231f3fde8a710d525f67e0.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "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/surry-lavender-soft-stripe-wallpaper-cca-83219"
+ },
+ {
+ "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": "grimsby-type-ii-vinyl-wallcovering-xlh-47748",
+ "handle": "grimsby-type-ii-vinyl-wallcovering-xlh-47748",
+ "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-47748-sample-grimsby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775714985",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Gray",
+ "Grimsby Type 2 Vinyl Wallcovering",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pink",
+ "Serene",
+ "Silver",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grimsby-type-ii-vinyl-wallcovering-xlh-47748"
+ },
+ {
+ "sku": "reeds-drive-wild-grass-hlw-73067",
+ "handle": "reeds-drive-wild-grass-hlw-73067",
+ "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-73067-sample-clean.jpg?v=1774483311",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Coastal",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray",
+ "Dark Green",
+ "Dark Olive Green",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Reeds Drive",
+ "Rustic",
+ "Sage",
+ "Stripe",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 31.09,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/reeds-drive-wild-grass-hlw-73067"
+ },
+ {
+ "sku": "dwc-1001624",
+ "handle": "dwc-1001624",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693309128755.jpg?v=1775521191",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Fretwork",
+ "Geometric",
+ "NCW4308-04",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Silver",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001624"
+ },
+ {
+ "sku": "eur-80120-ncw4122-designer-wallcoverings-los-angeles",
+ "handle": "eur-80120-ncw4122-designer-wallcoverings-los-angeles",
+ "title": "Elcho 02 - Powder Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496453171.jpg?v=1775522239",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Elcho",
+ "Floral",
+ "Leaf",
+ "Light Blue",
+ "Navy Blue",
+ "NCW4122",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Scandinavian",
+ "Serene",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80120-ncw4122-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80344-ncw4350-designer-wallcoverings-los-angeles",
+ "handle": "eur-80344-ncw4350-designer-wallcoverings-los-angeles",
+ "title": "Les Indiennes Paisley Damask 01 - Multi Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504907315.jpg?v=1775523510",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brick Red",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Dining Room",
+ "Dusty Rose",
+ "English Country",
+ "Fabric",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES INDIENNES",
+ "Les Indiennes Paisley Damask",
+ "Living Room",
+ "NCW4350",
+ "NCW4350-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Pale Blue",
+ "Paper",
+ "Pink",
+ "Red",
+ "Slate Gray",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80344-ncw4350-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80534-pcl695-designer-wallcoverings-los-angeles",
+ "handle": "eur-80534-pcl695-designer-wallcoverings-los-angeles",
+ "title": "Malmaison Botanical 01 | Christian Lacroix Europe",
+ "vendor": "Christian Lacroix Europe",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/56565_6163b910-670c-46fb-83ed-eae18d60b646.webp?v=1738950899",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Charcoal Grey",
+ "Christian Lacroix Europe",
+ "Class A Fire Rated",
+ "Color: Multi",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Eclectic",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "INCROYABLE ET MARVEILLEUS",
+ "Lavender",
+ "Lemon Yellow",
+ "Living Room",
+ "Malmaison Botanical",
+ "Moss",
+ "Multi",
+ "Non-Woven",
+ "Off-white",
+ "Orange",
+ "Organic",
+ "Pattern",
+ "PCL695",
+ "Peach",
+ "Pink",
+ "Purple",
+ "Rose Quartz",
+ "Sage Green",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80534-pcl695-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vernon-durable-walls-xwr-52695",
+ "handle": "vernon-durable-walls-xwr-52695",
+ "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-52695-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735774",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52695"
+ },
+ {
+ "sku": "park-ave-contemporary-faux-grasscloth-walls-xwh-52346",
+ "handle": "park-ave-contemporary-faux-grasscloth-walls-xwh-52346",
+ "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-sunshine.jpg?v=1777480503",
+ "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: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "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",
+ "Natural",
+ "Natural Texture",
+ "Texture",
+ "Textured",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 63.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/park-ave-contemporary-faux-grasscloth-walls-xwh-52346"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10344-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10344-jpg",
+ "title": "Ambient Design - AD10344 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad10343.jpg?v=1733874099",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Cream",
+ "Minimalist",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10344-jpg"
+ },
+ {
+ "sku": "eur-80258-ncw4207-designer-wallcoverings-los-angeles",
+ "handle": "eur-80258-ncw4207-designer-wallcoverings-los-angeles",
+ "title": "Fontibre 05 - Neutral Beige Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513501401139.jpg?v=1775523009",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Fontibre",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "Living Room",
+ "Mauve",
+ "Multi",
+ "NCW4207",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Olive Green",
+ "Organic",
+ "Organic Modern",
+ "Pale Beige",
+ "Pale Turquoise",
+ "Paper",
+ "Pink",
+ "Sage",
+ "Taupe",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80258-ncw4207-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010266",
+ "handle": "hollywood-fashion-district-xhw-2010266",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010266-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717412",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Gray",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010266"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73151",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73151",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73151-sample-clean.jpg?v=1774483748",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Brown",
+ "Champagne",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Light Green",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Paper",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Wallcovering",
+ "Whittier Way",
+ "Yellow"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73151"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010436",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010436",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010436-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717312",
+ "tags": [
+ "Beige",
+ "Black",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Forest",
+ "Gray",
+ "Ivory",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Silver",
+ "Slate",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010436"
+ },
+ {
+ "sku": "doral-faux-silk-durable-walls-xwc-53231",
+ "handle": "doral-faux-silk-durable-walls-xwc-53231",
+ "title": "Doral Faux Silk Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53231-sample-doral-faux-silk-durable-hollywood-wallcoverings.jpg?v=1775710347",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Green",
+ "Grey",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/doral-faux-silk-durable-walls-xwc-53231"
+ },
+ {
+ "sku": "dwtt-81007-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-81007-designer-wallcoverings-los-angeles",
+ "title": "Kimono Eggplant Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-dwtt-81007-designer-wallcoverings-los-angeles.jpg?v=1775070978",
+ "tags": [
+ "Artistic",
+ "AT9852",
+ "Bedroom",
+ "Beige",
+ "Bohemian",
+ "Bold",
+ "Brown",
+ "Contemporary",
+ "Coral",
+ "Cream",
+ "Deep Purple",
+ "Dining Room",
+ "Eclectic",
+ "Eggplant",
+ "Energetic",
+ "Entryway",
+ "Geometric",
+ "Global",
+ "Ikat",
+ "Indigo",
+ "Ivory",
+ "Kimono Geometric",
+ "Large Scale",
+ "Lavender",
+ "Lime Green",
+ "Living Room",
+ "Maroon",
+ "Mauve",
+ "Multi-Color",
+ "Nara",
+ "Navy",
+ "Off White",
+ "Office",
+ "Olive",
+ "Pattern",
+ "Plum",
+ "Powder Blue",
+ "Powder Room",
+ "Sage Green",
+ "Salmon",
+ "Silver",
+ "Sky Blue",
+ "Sophisticated",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Turquoise",
+ "Wallcovering"
+ ],
+ "max_price": 144.62,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-81007-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dprh-500-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dprh-500-jpg",
+ "title": "Perch - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dprh-500.jpg?v=1762291488",
+ "tags": [
+ "100% Mylar",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Mylar",
+ "Perch",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dprh-500-jpg"
+ },
+ {
+ "sku": "eur-80323-ncw4304-designer-wallcoverings-los-angeles",
+ "handle": "eur-80323-ncw4304-designer-wallcoverings-los-angeles",
+ "title": "Marguerite Damask 04 - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504153651.jpg?v=1775523377",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES REVES",
+ "Living Room",
+ "Marguerite Damask",
+ "NCW4304",
+ "NCW4304-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80323-ncw4304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47879",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47879",
+ "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-47879-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722066",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47879"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010296",
+ "handle": "hollywood-getty-texture-xhw-2010296",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-elle.jpg?v=1777481027",
+ "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",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Ecru",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010296"
+ },
+ {
+ "sku": "the-wheels-on-the-bus-large-mural-by-retro-walls-rtr-37256",
+ "handle": "the-wheels-on-the-bus-large-mural-by-retro-walls-rtr-37256",
+ "title": "The Wheels On The Bus Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2625dd4e20cfe150e796590c3b4aaec2.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bird",
+ "Bus",
+ "Cat",
+ "Chicken",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dog",
+ "Elephant",
+ "Frog",
+ "Giraffe",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Light Blue",
+ "Monkey",
+ "Moose",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pig",
+ "Pink",
+ "Rabbit",
+ "Scenic",
+ "Sheep",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-wheels-on-the-bus-large-mural-by-retro-walls-rtr-37256"
+ },
+ {
+ "sku": "dwtt-71887-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71887-designer-wallcoverings-los-angeles",
+ "title": "Bankun Damask Celery on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14118_73d34b71-665d-48fa-97e2-5938a67d431e.jpg?v=1733893196",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Celery on Cream",
+ "cream",
+ "Damask",
+ "Pattern",
+ "T14118",
+ "Texture",
+ "Texture Resource 4",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71887-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "ikeley-type-ii-vinyl-wallcovering-xls-47822",
+ "handle": "ikeley-type-ii-vinyl-wallcovering-xls-47822",
+ "title": "Ikeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xls-47822-sample-ikeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775719425",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Fretwork",
+ "Geometric",
+ "Glamorous",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Ikeley Type 2 Vinyl Wallcovering",
+ "Living Room",
+ "Modern",
+ "Sophisticated",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ikeley-type-ii-vinyl-wallcovering-xls-47822"
+ },
+ {
+ "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": "lanvin-arpergeo-wallpaper-xb8-66598",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66598",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/14c61857ad4ece191c08a265d80fa278.jpg?v=1775131362",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ivory",
+ "Khaki",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66598"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47646",
+ "handle": "fairford-vinyl-wallcovering-xlb-47646",
+ "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-47646-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711307",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47646"
+ },
+ {
+ "sku": "komo-diamond-bamboo-wallpaper-trf-56823",
+ "handle": "komo-diamond-bamboo-wallpaper-trf-56823",
+ "title": "Komo Diamond Bamboo | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e972ff5c355b13534d67d48ac5753b61.jpg?v=1750789758",
+ "tags": [
+ "arbor",
+ "Architectural",
+ "Asian",
+ "bamboo",
+ "Beige",
+ "Blue",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Denim Blue",
+ "diamond",
+ "Discontinued",
+ "Farmhouse",
+ "frame work",
+ "Geometric",
+ "grille",
+ "Jeffrey Stevens",
+ "lattice",
+ "light blue",
+ "medium blue",
+ "Modern",
+ "Modern Tropics",
+ "Non-Woven",
+ "Paper",
+ "Prepasted - Washable - Strippable",
+ "screen",
+ "Series: York",
+ "Textured",
+ "treillage",
+ "trellis",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/komo-diamond-bamboo-wallpaper-trf-56823"
+ },
+ {
+ "sku": "hollywood-and-vine-xhw-201038",
+ "handle": "hollywood-and-vine-xhw-201038",
+ "title": "Hollywood and Vine",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201038-sample-hollywood-and-vine.jpg?v=1775716808",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Faux Wood",
+ "Ivory",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-and-vine-xhw-201038"
+ },
+ {
+ "sku": "dwtt-71733-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71733-designer-wallcoverings-los-angeles",
+ "title": "Myanmar Trellis Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36139_fa1c1801-d200-4122-8a01-2ef429e7d6d3.jpg?v=1733893516",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Enchantment",
+ "Geometric",
+ "Pattern",
+ "Pearl",
+ "T36139",
+ "Thibaut",
+ "Transitional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71733-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ceci-pink-country-club-wallpaper-cca-83008",
+ "handle": "ceci-pink-country-club-wallpaper-cca-83008",
+ "title": "Ceci Pink Country Club Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/77be91b10cd59107b228ec3eb0389822.jpg?v=1572309965",
+ "tags": [
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Brown",
+ "Class A Fire Rated",
+ "Cloud",
+ "Commercial",
+ "Deer",
+ "Discontinued",
+ "Easy Walls",
+ "Fauna",
+ "Fox",
+ "Gray",
+ "LA Walls",
+ "Leaf",
+ "Multi",
+ "Mushroom",
+ "Owl",
+ "Pink",
+ "Prepasted",
+ "Rabbit",
+ "Series: Brewster",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ceci-pink-country-club-wallpaper-cca-83008"
+ },
+ {
+ "sku": "dwtt-80304-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80304-designer-wallcoverings-los-angeles",
+ "title": "Ensbury Fern Ivory Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-bedroom-dwtt-80304-designer-wallcoverings-los-angeles.jpg?v=1771879209",
+ "tags": [
+ "AT57884",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Elegant",
+ "Ensbury Fern",
+ "Entryway",
+ "Foliage",
+ "Ivory",
+ "Light Taupe",
+ "Living Room",
+ "Medium Scale",
+ "Natural",
+ "Neutral",
+ "Off-White",
+ "Office",
+ "Pattern",
+ "Powder Room",
+ "Serene",
+ "Soft Gray",
+ "Sophisticated",
+ "Stone Gray",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm Gray"
+ ],
+ "max_price": 138.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sm9515-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sm9515-jpg",
+ "title": "SM9515 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_sm9514.jpg?v=1733872500",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Pink",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sm9515-jpg"
+ },
+ {
+ "sku": "dwc-1001600",
+ "handle": "dwc-1001600",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693307490355.jpg?v=1775521033",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "Lattice",
+ "Light Beige",
+ "Light Pink",
+ "NCW4303-05",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001600"
+ },
+ {
+ "sku": "jumbo-bubble-gum-small-mural-by-retro-walls-rtr-37235",
+ "handle": "jumbo-bubble-gum-small-mural-by-retro-walls-rtr-37235",
+ "title": "Jumbo Bubble Gum Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f7435759ef733061380a9e1e46634e12.jpg?v=1572309702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Elephant",
+ "Fauna",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Pink",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jumbo-bubble-gum-small-mural-by-retro-walls-rtr-37235"
+ },
+ {
+ "sku": "wells-lavender-candy-stripe-wallpaper-cca-83220",
+ "handle": "wells-lavender-candy-stripe-wallpaper-cca-83220",
+ "title": "Wells Lavender Candy Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/70aa47e73f89a3ce227462a124e5eee6.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Lavender",
+ "Multi",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wells-lavender-candy-stripe-wallpaper-cca-83220"
+ },
+ {
+ "sku": "vernon-durable-walls-xwp-52689",
+ "handle": "vernon-durable-walls-xwp-52689",
+ "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-52689-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735759",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwp-52689"
+ },
+ {
+ "sku": "pleated-perfect-paradise-ppp-2632",
+ "handle": "pleated-perfect-paradise-ppp-2632",
+ "title": "Pleated Perfect Paradise | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppp-2632-sample-pleated-perfect-paradise-hollywood-wallcoverings.jpg?v=1775729196",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Pleated Perfect Paradise",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 35.66,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pleated-perfect-paradise-ppp-2632"
+ },
+ {
+ "sku": "eur-80146-ncw4150-designer-wallcoverings-los-angeles",
+ "handle": "eur-80146-ncw4150-designer-wallcoverings-los-angeles",
+ "title": "Rosslyn 04 - Soft Gray Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497305139.jpg?v=1775522384",
+ "tags": [
+ "Aqua Blue",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Blush Pink",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Lemon Yellow",
+ "Living Room",
+ "NCW4150",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Pale Beige",
+ "Paper",
+ "Pink",
+ "Rosslyn",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Tropical",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80146-ncw4150-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52647",
+ "title": "Cottondale Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwp-52647-sample-cottondale-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775709252",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Cream",
+ "Estimated Type: Paper",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52647"
+ },
+ {
+ "sku": "saint-guyane-durable-vinyl-dur-72249",
+ "handle": "saint-guyane-durable-vinyl-dur-72249",
+ "title": "Saint Guyane Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72249-sample-clean.jpg?v=1774484911",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Embossed",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Leaf",
+ "Living Room",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Tropical",
+ "Tropical Leaf",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-guyane-durable-vinyl-dur-72249"
+ },
+ {
+ "sku": "chesterfield-acoustical-wallcovering-xjz-47389",
+ "handle": "chesterfield-acoustical-wallcovering-xjz-47389",
+ "title": "Chesterfield Acoustical Wallcovering",
+ "vendor": "Hollywood Acoustical",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/96f4a45f5dbf9c7e6b262ea1f722faf6.jpg?v=1572310051",
+ "tags": [
+ "100% recycled polyester",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Hallway",
+ "Hollywood Acoustical",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Polyester",
+ "Scandinavian",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/chesterfield-acoustical-wallcovering-xjz-47389"
+ },
+ {
+ "sku": "floating-fibers-dwx-58186",
+ "handle": "floating-fibers-dwx-58186",
+ "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-58186-sample-floating-fibers-hollywood-wallcoverings.jpg?v=1775714121",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Embossed Texture",
+ "Fiber",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Light Beige",
+ "Luxe",
+ "Minimalist",
+ "Natural Look",
+ "Navy Blue",
+ "Neutral",
+ "Organic",
+ "Regencycore",
+ "Residential",
+ "Solid",
+ "Sophisticated",
+ "Stone Grey",
+ "Stripe",
+ "Subtle",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "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/floating-fibers-dwx-58186"
+ },
+ {
+ "sku": "last-night-small-mural-by-retro-walls-rtr-37207",
+ "handle": "last-night-small-mural-by-retro-walls-rtr-37207",
+ "title": "Last Night Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/650ba1dfd5f144bd5015050bc0077d53.jpg?v=1572309701",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fish",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Purple",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/last-night-small-mural-by-retro-walls-rtr-37207"
+ },
+ {
+ "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": "dwtt-71975-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71975-designer-wallcoverings-los-angeles",
+ "title": "Caballo Metallic Gold | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10019_83adaea0-2948-4284-a13e-09643b3fb6b0.jpg?v=1733893036",
+ "tags": [
+ "Architectural",
+ "cream",
+ "Damask",
+ "gold",
+ "Metallic Gold",
+ "Neutral Resource",
+ "Pattern",
+ "T10019",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71975-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80325-ncw4304-designer-wallcoverings-los-angeles",
+ "handle": "eur-80325-ncw4304-designer-wallcoverings-los-angeles",
+ "title": "Marguerite Damask 06 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504251955.jpg?v=1775523390",
+ "tags": [
+ "Alabaster",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Cloud",
+ "Commercial",
+ "Contemporary",
+ "Cornflower Blue",
+ "Damask",
+ "Denim",
+ "Dining Room",
+ "Floral",
+ "Frost",
+ "Grandmillennial",
+ "LES REVES",
+ "Living Room",
+ "Marguerite Damask",
+ "Navy Blue",
+ "NCW4304",
+ "NCW4304-06",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Periwinkle",
+ "Powder",
+ "Serene",
+ "Smoke",
+ "Steel",
+ "Storm",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80325-ncw4304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80242-ncw4205-designer-wallcoverings-los-angeles",
+ "handle": "eur-80242-ncw4205-designer-wallcoverings-los-angeles",
+ "title": "Barbary Toile 04 - Rose Madder Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500811315.jpg?v=1775522929",
+ "tags": [
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Barbary Toile",
+ "Bedroom",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "FONTIBRE",
+ "Living Room",
+ "Monkey",
+ "NCW4205",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off-white",
+ "Palm Trees",
+ "Paper",
+ "Pink",
+ "Playful",
+ "Red",
+ "Rose Madder",
+ "Scenic",
+ "Toile",
+ "Tropical",
+ "Tropical Leaf",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80242-ncw4205-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-fashion-district-xhw-2010258",
+ "handle": "hollywood-fashion-district-xhw-2010258",
+ "title": "Hollywood Fashion District | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010258-sample-hollywood-fashion-district-hollywood-wallcoverings.jpg?v=1775717374",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Faux Wood",
+ "Gold",
+ "Indigo",
+ "Ivory",
+ "Maroon",
+ "Mint",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 59.87,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-fashion-district-xhw-2010258"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53174",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53174",
+ "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-nicosia.jpg?v=1777480794",
+ "tags": [
+ "20 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",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Gray",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Linen",
+ "Linen Look",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "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-53174"
+ },
+ {
+ "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": "mr-diorio-wallpaper-xa8-66471",
+ "handle": "mr-diorio-wallpaper-xa8-66471",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/879e1052e91546e3db8a24922bea8ac2.jpg?v=1775125085",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Grasscloth",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Mr. Diorio Wallcovering",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66471"
+ },
+ {
+ "sku": "dwtt-72237-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72237-designer-wallcoverings-los-angeles",
+ "title": "Medici Silver on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7671.jpg?v=1733892438",
+ "tags": [
+ "Architectural",
+ "cream",
+ "Damask Resource 3",
+ "Pattern",
+ "Silver on Cream",
+ "T7671",
+ "taupe",
+ "Thibaut",
+ "Traditional",
+ "Trellis",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72237-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2529",
+ "handle": "faux-leaf-squares-fls-2529",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2529-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711952",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2529"
+ },
+ {
+ "sku": "medusa-circle-silver-gold-pink-wallcovering-versace",
+ "handle": "medusa-circle-silver-gold-pink-wallcovering-versace",
+ "title": "Medusa Circle Silver, Gold, Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/593e809cff01210ceeddec366f315919.jpg?v=1773706334",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Antique Gold",
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dining Room",
+ "display_variant",
+ "Dusty Rose",
+ "Geometric",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Italian",
+ "Light Pink",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medallion",
+ "Medusa Circle",
+ "Medusa Circle Silver",
+ "Paper",
+ "Paste the wall",
+ "Pink",
+ "Pink Wallcovering",
+ "Silver",
+ "Silver Grey",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/medusa-circle-silver-gold-pink-wallcovering-versace"
+ },
+ {
+ "sku": "logan-beige-croc-texture-wallpaper-cca-82973",
+ "handle": "logan-beige-croc-texture-wallpaper-cca-82973",
+ "title": "Logan Beige Croc Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e864617a7530ca561c8cf961a24422c3.jpg?v=1572309964",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Crocodile",
+ "Discontinued",
+ "Embossed",
+ "Expanded Vinyl",
+ "Faux",
+ "Faux Effects",
+ "LA Walls",
+ "Masculine",
+ "Peelable",
+ "Prepasted",
+ "Series: Brewster",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/logan-beige-croc-texture-wallpaper-cca-82973"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66412",
+ "handle": "jolie-madam-wallpaper-xa1-66412",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/06932a78620af58728a27d2b49fa819d.jpg?v=1775120972",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Grasscloth",
+ "Gray",
+ "Jolie Madam Wallcovering",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Stripe",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66412"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_lun-9483-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_lun-9483-jpg",
+ "title": "Lune - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/lun-9483.jpg?v=1762299051",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Coated Upholstery",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Geometric",
+ "Lattice",
+ "Lune",
+ "Pink",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_lun-9483-jpg"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010371",
+ "handle": "hollywood-contemporary-coast-xhw-2010371",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010371-sample-clean.jpg?v=1774482610",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Purple",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mauve",
+ "Modern",
+ "Orchid",
+ "Pink",
+ "Purple",
+ "Samantha",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010371"
+ },
+ {
+ "sku": "jolie-madam-wallpaper-xa1-66411",
+ "handle": "jolie-madam-wallpaper-xa1-66411",
+ "title": "Jolie Madam Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/892d91b687eb8464e3902050d27548ea.jpg?v=1775120866",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dark Gray",
+ "Entryway",
+ "Gold",
+ "Grasscloth",
+ "Gray",
+ "Jolie Madam Wallcovering",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Silver",
+ "Stripe",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "Vertical Stripes",
+ "Vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jolie-madam-wallpaper-xa1-66411"
+ },
+ {
+ "sku": "dwkk-130211",
+ "handle": "dwkk-130211",
+ "title": "W4134-7 Coral | Kravet Design | Blooms Second Edition Resource Library | Botanical & Floral Metallic Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W4134_7_87307d8e-27cc-46fa-a920-5fa3db6bbca9.jpg?v=1753321115",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blooms Second Edition Resource Library",
+ "Botanical",
+ "Botanical & Floral",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Red",
+ "Terracotta",
+ "Textured",
+ "Traditional",
+ "United States",
+ "W4134-7",
+ "W4134.7.0",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-130211"
+ },
+ {
+ "sku": "stonington-bone-awning-stripe-wallpaper-cca-83151",
+ "handle": "stonington-bone-awning-stripe-wallpaper-cca-83151",
+ "title": "Stonington Bone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/184079d2195e181d934e09177053a79e.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/stonington-bone-awning-stripe-wallpaper-cca-83151"
+ },
+ {
+ "sku": "paddock-type-ii-vinyl-wallcovering-xpd-48170",
+ "handle": "paddock-type-ii-vinyl-wallcovering-xpd-48170",
+ "title": "Paddock Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xpd-48170-sample-paddock-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775728463",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Light Sage",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paddock-type-ii-vinyl-wallcovering-xpd-48170"
+ },
+ {
+ "sku": "cottondale-contemporary-durable-vinyl-walls-xwp-52649",
+ "handle": "cottondale-contemporary-durable-vinyl-walls-xwp-52649",
+ "title": "Cottondale Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XWP-52649-sample-clean.jpg?v=1774481511",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cotton",
+ "Dark Green",
+ "Geometric",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Sage",
+ "Sophisticated",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cottondale-contemporary-durable-vinyl-walls-xwp-52649"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47895",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47895",
+ "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-47895-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722494",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Off-white",
+ "Pale Beige",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47895"
+ },
+ {
+ "sku": "zebilini-wallpaper-xd6-66706",
+ "handle": "zebilini-wallpaper-xd6-66706",
+ "title": "Zebilini Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/07dc0cd3ca9d3a2438bc0762821843e6.jpg?v=1775133686",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Geometric",
+ "Gray",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White",
+ "Zebilini Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zebilini-wallpaper-xd6-66706"
+ },
+ {
+ "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": "dwkk-129769",
+ "handle": "dwkk-129769",
+ "title": "W3928 - 817 Black | Kravet Design | Ronald Redding Arts & Crafts | Botanical & Floral Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3928_817_fb3e22ce-ef33-4765-a717-2a47d6c3c7de.jpg?v=1753322313",
+ "tags": [
+ "27In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Botanical",
+ "Botanical & Floral",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Green",
+ "Kravet",
+ "Kravet Design",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Ronald Redding Arts & Crafts",
+ "Rose",
+ "Sage Green",
+ "Traditional",
+ "United States",
+ "W3928",
+ "W3928.817.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129769"
+ },
+ {
+ "sku": "camila-lilac-modern-damask-wallpaper-wallpaper-cca-82840",
+ "handle": "camila-lilac-modern-damask-wallpaper-wallpaper-cca-82840",
+ "title": "Camila Lilac Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6ed3a9091307458f7700bb5e226dae92_72be2b7a-ca25-4124-bf72-b2095bd9a55f.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Lilac",
+ "Modern",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-lilac-modern-damask-wallpaper-wallpaper-cca-82840"
+ },
+ {
+ "sku": "dwtt-71321-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71321-designer-wallcoverings-los-angeles",
+ "title": "Narragansett Pink | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T88773_3759f85a-9771-4568-978a-d91c50baf78e.jpg?v=1733894227",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Coastal",
+ "Pattern",
+ "Pink",
+ "T88773",
+ "Thibaut",
+ "Trade Routes",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71321-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "gundelson-gunny-sack-vinyl-dwx-58109",
+ "handle": "gundelson-gunny-sack-vinyl-dwx-58109",
+ "title": "Gundelson Gunny Sack Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58109-sample-gundelson-gunny-sack-vinyl-hollywood-wallcoverings.jpg?v=1775715419",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Burlap",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Brown",
+ "Durable",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Glamorous",
+ "Gold",
+ "Gunny Sack",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Navy Blue",
+ "Neutral",
+ "Organic",
+ "Restaurant",
+ "Rustic",
+ "Solid",
+ "Sophisticated",
+ "Tan",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gundelson-gunny-sack-vinyl-dwx-58109"
+ },
+ {
+ "sku": "jada-lilac-girly-floral-scroll-wallpaper-wallpaper-cca-82821",
+ "handle": "jada-lilac-girly-floral-scroll-wallpaper-wallpaper-cca-82821",
+ "title": "Jada Lilac Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b0ea79013d8e7e040805653ba5e17d3a.jpg?v=1572309955",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Lilac",
+ "Multi",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jada-lilac-girly-floral-scroll-wallpaper-wallpaper-cca-82821"
+ },
+ {
+ "sku": "cody-cantina-wallpaper-xb1-66494",
+ "handle": "cody-cantina-wallpaper-xb1-66494",
+ "title": "Cody Cantina Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4e28264c73837893cdecd7574a48444b.jpg?v=1775126558",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Cody Cantina Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crimson",
+ "Geometric",
+ "Hotel Lobby",
+ "Light Coral",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Pale Violetred",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Pink",
+ "Red",
+ "Rose",
+ "Stripe",
+ "Striped",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.61,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-cantina-wallpaper-xb1-66494"
+ },
+ {
+ "sku": "dwkk-123851",
+ "handle": "dwkk-123851",
+ "title": "Spolvero - 21501 Beige | Kravet Design | Lizzo | Modern Wallcovering",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/LZW-30186_21501_c84e651c-99b8-4ada-b911-746d595fc5e2.jpg?v=1753290984",
+ "tags": [
+ "27.5In",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "display_variant",
+ "Fabric",
+ "Ivory",
+ "Kravet",
+ "Kravet Design",
+ "Lizzo",
+ "Lzw-30186.21501.0",
+ "Modern",
+ "Pattern",
+ "Spain",
+ "Spolvero",
+ "Synthetic - 75%;Natural Products - 25%",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-123851"
+ },
+ {
+ "sku": "villa-velore-durable-vinyl-dur-72323",
+ "handle": "villa-velore-durable-vinyl-dur-72323",
+ "title": "Villa Velore Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72323-sample-clean.jpg?v=1774485184",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: White",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/villa-velore-durable-vinyl-dur-72323"
+ },
+ {
+ "sku": "bali-grasscloth-stripe-wallpaper-trf-56846",
+ "handle": "bali-grasscloth-stripe-wallpaper-trf-56846",
+ "title": "Bali Grasscloth Stripe | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e858576ad4ba1ca924d827cd56fe44b2.jpg?v=1750789750",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Asian",
+ "Bali Grasscloth Stripe",
+ "beach",
+ "broad stripe",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Discontinued",
+ "Faux",
+ "Faux Grasscloth",
+ "grasscloth",
+ "Grasscloth Texture",
+ "Green",
+ "Jeffrey Stevens",
+ "Light Green",
+ "medium aqua",
+ "Minimalist",
+ "Mint",
+ "Modern",
+ "Modern Tropics",
+ "Natural",
+ "Non-Woven",
+ "Pale Aqua",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "Sage Green",
+ "Scandinavian",
+ "Series: York",
+ "Soft Green",
+ "stripe",
+ "Texture",
+ "Textured",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "wide stripe",
+ "woven",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 62.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bali-grasscloth-stripe-wallpaper-trf-56846"
+ },
+ {
+ "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": "dwkk-128422",
+ "handle": "dwkk-128422",
+ "title": "W3515-1 White | Kravet Design |Modern Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3515_1_09f0f59f-8558-4e3a-a99f-58eb2361aade.jpg?v=1753292758",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Cellulose - 50%;Other - 30%;Polyester - 20%",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Geometric",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Lattice",
+ "Living Room",
+ "Modern",
+ "Non-Woven",
+ "Off-white",
+ "Ogee",
+ "Print",
+ "Serene",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "United Kingdom",
+ "Vinyl",
+ "W3515-1",
+ "W3515.1.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-128422"
+ },
+ {
+ "sku": "modulo-jicama-romo",
+ "handle": "modulo-jicama-romo",
+ "title": "Modulo Jicama | Romo",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W967-02-modulo-wallcovering-jicama_02.jpg?v=1776485557",
+ "tags": [
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "Contemporary",
+ "cream",
+ "Embossed Wallcovering",
+ "Geometric",
+ "Hotel",
+ "Kabu Wallcoverings",
+ "light brown",
+ "Lobby",
+ "Medium",
+ "Modulo",
+ "Non-woven",
+ "Office",
+ "Romo",
+ "Soft White",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "W967/02",
+ "Wallcovering",
+ "Warm Taupe"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/modulo-jicama-romo"
+ },
+ {
+ "sku": "bosa-marina-striped-wood-grain-wbs-39633",
+ "handle": "bosa-marina-striped-wood-grain-wbs-39633",
+ "title": "Bosa Marina Striped Wood Grain | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39633-sample-bosa-marina-striped-wood-grain-hollywood-wallcoverings.jpg?v=1775706096",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Bricks and Stones",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "contemporary",
+ "Cream",
+ "Dark Brown",
+ "Embossed Texture",
+ "Estimated Type: Paper",
+ "Faux",
+ "Faux Wood",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Neoclassical",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood",
+ "Wood Grain"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bosa-marina-striped-wood-grain-wbs-39633"
+ },
+ {
+ "sku": "manatee-faux-vertical-stria-durable-walls-xwq-52983",
+ "handle": "manatee-faux-vertical-stria-durable-walls-xwq-52983",
+ "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-bay_laurel.jpg?v=1777480723",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/manatee-faux-vertical-stria-durable-walls-xwq-52983"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47945",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47945",
+ "title": "Maidstone - Pewter 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-lemon_quartz.jpg?v=1777480142",
+ "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",
+ "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",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "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\"",
+ "Yellow"
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47945"
+ },
+ {
+ "sku": "mr-diorio-wallpaper-xa8-66465",
+ "handle": "mr-diorio-wallpaper-xa8-66465",
+ "title": "Mr. Diorio Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/ce2de2f0129839a4415f480362863233.jpg?v=1775124479",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hotel Lobby",
+ "Light Beige",
+ "Living Room",
+ "Mr. Diorio Wallcovering",
+ "Off-white",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Textural",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 35.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/mr-diorio-wallpaper-xa8-66465"
+ },
+ {
+ "sku": "capri-aqua-floral-scroll-wallpaper-cca-83047",
+ "handle": "capri-aqua-floral-scroll-wallpaper-cca-83047",
+ "title": "Capri Aqua Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8e8e88310c32e2c9e0b6969b214e0df1.jpg?v=1572309967",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-aqua-floral-scroll-wallpaper-cca-83047"
+ },
+ {
+ "sku": "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": "forsyth-embossed-contemporary-durable-walls-xwd-52156",
+ "handle": "forsyth-embossed-contemporary-durable-walls-xwd-52156",
+ "title": "Forsyth Embossed Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwd-52156-sample-forsyth-embossed-contemporary-durable-hollywood-wallcoverings.jpg?v=1775714195",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Pink",
+ "Living Room",
+ "Minimalist",
+ "Mosaic",
+ "Pale Pink",
+ "Pink",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/forsyth-embossed-contemporary-durable-walls-xwd-52156"
+ },
+ {
+ "sku": "canal-stripe-texture-durable-walls-xwd-52112",
+ "handle": "canal-stripe-texture-durable-walls-xwd-52112",
+ "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-52112-sample-canal-stripe-texture-durable-hollywood-wallcoverings.jpg?v=1775707110",
+ "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: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Gold",
+ "Grasscloth",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Linear",
+ "Linen Texture",
+ "Living Room",
+ "Organic Modern",
+ "Pattern",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Striped",
+ "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-stripe-texture-durable-walls-xwd-52112"
+ },
+ {
+ "sku": "eastport-pink-arabelle-stripe-wallpaper-cca-83142",
+ "handle": "eastport-pink-arabelle-stripe-wallpaper-cca-83142",
+ "title": "Eastport Pink Arabelle Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0458a86847527a683486ae127cd3aff5.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cotton",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eastport-pink-arabelle-stripe-wallpaper-cca-83142"
+ },
+ {
+ "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": "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": "dwtt-72550-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72550-designer-wallcoverings-los-angeles",
+ "title": "Shangri-la Beige | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-t6862.jpg?v=1775153873",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Pattern",
+ "Shangri-La",
+ "T8634",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72550-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "berkeley-type-ii-vinyl-wallcovering-xju-47334",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47334",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47334-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704980",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Estimated Type: Paper",
+ "Grandmillennial",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Regencycore",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47334"
+ },
+ {
+ "sku": "jonesport-cream-cabin-stripe-wallpaper-cca-83175",
+ "handle": "jonesport-cream-cabin-stripe-wallpaper-cca-83175",
+ "title": "Jonesport Cream Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8af5af0a7c4631387aeeb157c845ba05.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Brown",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-cream-cabin-stripe-wallpaper-cca-83175"
+ },
+ {
+ "sku": "marketfield-faux-durable-walls-xwh-52321",
+ "handle": "marketfield-faux-durable-walls-xwh-52321",
+ "title": "Marketfield Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mindscape-angelica.jpg?v=1777480462",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/marketfield-faux-durable-walls-xwh-52321"
+ },
+ {
+ "sku": "dwtt-80955-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80955-designer-wallcoverings-los-angeles",
+ "title": "Makena | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T10223_a06f96ea-ce4a-4c6b-a794-c01d0336d314.jpg?v=1743193960",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Pattern",
+ "T10223",
+ "tan",
+ "Texture",
+ "Thibaut",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 62.08,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80955-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "asha-gold-lotus-damask-wallpaper-cca-83234",
+ "handle": "asha-gold-lotus-damask-wallpaper-cca-83234",
+ "title": "Asha Gold Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5d4a363f07f49d7ada8dda4ca37bee3d.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-gold-lotus-damask-wallpaper-cca-83234"
+ },
+ {
+ "sku": "sudbury-type-ii-vinyl-wallcovering-xqe-48446",
+ "handle": "sudbury-type-ii-vinyl-wallcovering-xqe-48446",
+ "title": "Sudbury Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqe-48446-sample-sudbury-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735052",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Ecru",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Office",
+ "Serene",
+ "Sudbury Type 2 Vinyl Wallcovering",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sudbury-type-ii-vinyl-wallcovering-xqe-48446"
+ },
+ {
+ "sku": "eur-80430-ncw4491-designer-wallcoverings-los-angeles",
+ "handle": "eur-80430-ncw4491-designer-wallcoverings-los-angeles",
+ "title": "Almora 05 - Seafoam Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507790899.jpg?v=1775524044",
+ "tags": [
+ "Almora",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Lavender",
+ "Lightblue",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4491",
+ "NCW4491-05",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Purple",
+ "Sage Green",
+ "Seafoam Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Sky Blue",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80430-ncw4491-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wtw0454fire",
+ "handle": "wtw0454fire",
+ "title": "Fire Island Grass - Cream | Scalamandre",
+ "vendor": "Scalamandre Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WTW0454FIRE.jpg?v=1745346314",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "FIRE ISLAND GRASS",
+ "Grasscloth",
+ "Scalamandre Wallcovering",
+ "Stripe",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wtw0454fire"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_kbt-5123-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_kbt-5123-jpg",
+ "title": "Kabuto - Buff | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/kbt-5123.jpg?v=1762298828",
+ "tags": [
+ "100% Mylar",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Cream",
+ "Gold",
+ "Industrial",
+ "Kabuto",
+ "Mylar",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_kbt-5123-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": "dwtt-80254-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80254-designer-wallcoverings-los-angeles",
+ "title": "Beckley Stripe Ivory Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Bristol-BeckleyStripeWP-sky-SussexHydrangea-LindseyFAB-softblue.jpg?v=1770340696",
+ "tags": [
+ "AT57823",
+ "Bathroom",
+ "Beckley Stripe",
+ "Beckley Stripe Sky Blue",
+ "Bedroom",
+ "Beige",
+ "Bristol",
+ "Calm",
+ "Clean",
+ "Contemporary",
+ "Cool",
+ "Cream",
+ "Dining Room",
+ "Entryway",
+ "Ivory",
+ "Light Gray",
+ "Living Room",
+ "Medium Scale",
+ "Off-White",
+ "Office",
+ "Pale Blue",
+ "Pattern",
+ "Powder Blue",
+ "Serene",
+ "Sky Blue",
+ "Soft Blue",
+ "Sophisticated",
+ "Stone",
+ "Stripe",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 114.03,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80254-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-129920",
+ "handle": "dwkk-129920",
+ "title": "W3959-3 Green | Kravet Design | Benson-Cobb Signature Wallcovering |Diamond Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3959_3_b6314417-5758-4f67-a87a-9792b592a419.jpg?v=1753321996",
+ "tags": [
+ "27In",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Benson-Cobb Signature Wallcovering",
+ "Class A Fire Rated",
+ "Cocoa",
+ "Commercial",
+ "Contemporary",
+ "Diamond",
+ "display_variant",
+ "Geometric",
+ "Green",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Off-white",
+ "Pattern",
+ "Print",
+ "Sage",
+ "Serene",
+ "United States",
+ "Vinyl",
+ "W3959",
+ "W3959-3",
+ "W3959.3.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129920"
+ },
+ {
+ "sku": "natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822",
+ "handle": "natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822",
+ "title": "Natalia Purple Curly Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/b4fbd757fe54a9cd5ca21316c7591e1b.jpg?v=1572309955",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "Kids",
+ "LA Walls",
+ "Leaf",
+ "Pink",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-purple-curly-scroll-wallpaper-wallpaper-cca-82822"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66831",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66831",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9967d167de18a287f2b1080b81a1954a.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Light Beige",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Textured",
+ "Traditional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66831"
+ },
+ {
+ "sku": "dwtt-72281-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72281-designer-wallcoverings-los-angeles",
+ "title": "Medici Teal | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7694.jpg?v=1733892365",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Damask Resource 3",
+ "Pattern",
+ "T7694",
+ "teal",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72281-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "lucy-large-crocodile-wallpaper-hollywood-wallcoverings",
+ "handle": "lucy-large-crocodile-wallpaper-hollywood-wallcoverings",
+ "title": "Lucy Large Crocodile Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/CROCA-93022-SAMPLE-clean.jpg?v=1774486108",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal Print",
+ "Animal Skin",
+ "Architectural",
+ "Bedroom",
+ "Brown Black",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Crocodile",
+ "Dark Rose",
+ "Embossed Texture",
+ "Faux Leather",
+ "Glamorous",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Living Room",
+ "Lucy Large Crocodile Wallcovering",
+ "Luxe",
+ "Luxurious",
+ "Paper Backed Vinyl",
+ "Pink",
+ "Rose",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 37.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lucy-large-crocodile-wallpaper-hollywood-wallcoverings"
+ },
+ {
+ "sku": "eur-80286-ncw4276-designer-wallcoverings-los-angeles",
+ "handle": "eur-80286-ncw4276-designer-wallcoverings-los-angeles",
+ "title": "Perdana 02 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502318643.jpg?v=1775523167",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Butterfly",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "COROMANDEL",
+ "Cottagecore",
+ "Dining Room",
+ "Dusty Rose",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "NCW4276",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Paper",
+ "Perdana",
+ "Perdana 02",
+ "Pink",
+ "Rose",
+ "Sage",
+ "Serene",
+ "Traditional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80286-ncw4276-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72218",
+ "handle": "saint-lore-durable-vinyl-dur-72218",
+ "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-72218-sample-clean.jpg?v=1774484774",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Serene",
+ "Taupe",
+ "textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72218"
+ },
+ {
+ "sku": "ashbourne-type-ii-vinyl-wallcovering-xjg-47105",
+ "handle": "ashbourne-type-ii-vinyl-wallcovering-xjg-47105",
+ "title": "Ashbourne Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xjg-47105-sample-ashbourne-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775699801",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ashbourne-type-ii-vinyl-wallcovering-xjg-47105"
+ },
+ {
+ "sku": "dwtt-72409-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72409-designer-wallcoverings-los-angeles",
+ "title": "Spotted Orchid Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6044.jpg?v=1733892200",
+ "tags": [
+ "Anniversary",
+ "Architectural",
+ "cream",
+ "Damask",
+ "Pattern",
+ "Stripe",
+ "T6044",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72409-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "singing-large-mural-by-retro-walls-rtr-37254",
+ "handle": "singing-large-mural-by-retro-walls-rtr-37254",
+ "title": "Singing Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/786d326fba7b5f498c46dc848b64d81f.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bed",
+ "Blue",
+ "Bookshelf",
+ "Cat",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dog",
+ "Flowers",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Lamp",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Scenic",
+ "Stool",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Window",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/singing-large-mural-by-retro-walls-rtr-37254"
+ },
+ {
+ "sku": "dwtt-80252-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80252-designer-wallcoverings-los-angeles",
+ "title": "Beckley Stripe Blue Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57821.jpg?v=1776161601",
+ "tags": [
+ "AT57821",
+ "Bathroom",
+ "Beckley Stripe",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Bristol",
+ "Bronze",
+ "Calm",
+ "Contemporary",
+ "Cool",
+ "Cool Gray",
+ "Coral",
+ "Crimson",
+ "Dining Room",
+ "Dusty Blue",
+ "Forest",
+ "Gray Blue",
+ "Indigo",
+ "Ivory",
+ "Light Blue",
+ "Living Room",
+ "Maroon",
+ "Medium Blue",
+ "Medium Scale",
+ "Mint",
+ "Navy",
+ "Off White",
+ "Office",
+ "Olive",
+ "Orange",
+ "Pattern",
+ "Peaceful",
+ "Periwinkle",
+ "Plum",
+ "Powder Blue",
+ "Powder Room",
+ "Salmon",
+ "Serene",
+ "Silver",
+ "Slate Blue",
+ "Sophisticated",
+ "Steel Blue",
+ "Stripe",
+ "Teal",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 114.03,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80252-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "dwtt-81027-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-81027-designer-wallcoverings-los-angeles",
+ "title": "Kyoto Leaves Fuchsia Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-dwtt-81027-designer-wallcoverings-los-angeles.jpg?v=1775071159",
+ "tags": [
+ "Abstract",
+ "AT9872",
+ "Bedroom",
+ "Blush",
+ "Bold",
+ "Botanical",
+ "Burgundy",
+ "Contemporary",
+ "Cranberry",
+ "Cream",
+ "Deep Rose",
+ "Dressing Room",
+ "Energetic",
+ "Entryway",
+ "Feminine",
+ "Foliage",
+ "Magenta",
+ "Mauve",
+ "Medium Scale",
+ "Modern",
+ "Nara",
+ "Office",
+ "Pattern",
+ "Pink",
+ "Plum",
+ "Powder Room",
+ "Rose",
+ "Sophisticated",
+ "Thibaut Wallcovering",
+ "Transitional",
+ "Wallcovering",
+ "Warm",
+ "White",
+ "Wine"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-81027-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71365-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71365-designer-wallcoverings-los-angeles",
+ "title": "Fair Isle Aqua | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T88734_27609dc5-3011-43dc-b877-0338dcf78548.jpg?v=1733894174",
+ "tags": [
+ "Aqua",
+ "Architectural",
+ "beige",
+ "Botanical",
+ "cream",
+ "Pattern",
+ "Stripe",
+ "T88734",
+ "Thibaut",
+ "Trade Routes",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71365-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "vanessa-pink-henna-brocade-wallpaper-wallpaper-cca-82833",
+ "handle": "vanessa-pink-henna-brocade-wallpaper-wallpaper-cca-82833",
+ "title": "Vanessa Pink Henna Brocade Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/927b579247f79c1e958ee35729a65d4a.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Victorian",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanessa-pink-henna-brocade-wallpaper-wallpaper-cca-82833"
+ },
+ {
+ "sku": "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": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52910",
+ "handle": "st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52910",
+ "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-52910-sample-st-joseph-embossed-contemporary-durable-vinyl-hollywood-wallcoverings.jpg?v=1775734449",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/st-joseph-embossed-contemporary-durable-vinyl-walls-xwq-52910"
+ },
+ {
+ "sku": "sunset-stone-vinyl-dwx-58054",
+ "handle": "sunset-stone-vinyl-dwx-58054",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58054-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735232",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Cocoa Brown",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Taupe",
+ "Dusty Rose",
+ "Embossed Texture",
+ "Faux Stone",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Taupe",
+ "Living Room",
+ "Natural Look",
+ "Organic Modern",
+ "Pink",
+ "Rustic",
+ "Stone",
+ "Stucco",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58054"
+ },
+ {
+ "sku": "the-wheels-on-the-bus-small-mural-by-retro-walls-rtr-37257",
+ "handle": "the-wheels-on-the-bus-small-mural-by-retro-walls-rtr-37257",
+ "title": "The Wheels On The Bus Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/56b2ae96177737a1f0174f785469707a.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Bus",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Elephant",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mouse",
+ "Mural",
+ "Pink",
+ "Scenic",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/the-wheels-on-the-bus-small-mural-by-retro-walls-rtr-37257"
+ },
+ {
+ "sku": "eur-80285-ncw4276-designer-wallcoverings-los-angeles",
+ "handle": "eur-80285-ncw4276-designer-wallcoverings-los-angeles",
+ "title": "Perdana 01 - Aubergine Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502285875.jpg?v=1775523161",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Butterfly",
+ "Champagne",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Dark Brown",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "NCW4276",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Perdana",
+ "Pink",
+ "Rose",
+ "Sage",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80285-ncw4276-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_wwdf-206-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_wwdf-206-jpg",
+ "title": "WonderWood® - Maple Fc | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wwdf-206f.jpg?v=1762312275",
+ "tags": [
+ "100% Reconstituted Wood Veneer",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Light Brown",
+ "Maple Fc",
+ "Natural",
+ "Reconstituted",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "WonderWood®"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_wwdf-206-jpg"
+ },
+ {
+ "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": "jonesport-pink-cabin-stripe-wallpaper-cca-83184",
+ "handle": "jonesport-pink-cabin-stripe-wallpaper-cca-83184",
+ "title": "Jonesport Pink Cabin Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/8270cc5a5f79cdff211fccac035db35e.jpg?v=1572309971",
+ "tags": [
+ "Architectural",
+ "Coastal",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Green",
+ "LA Walls",
+ "Lightblue",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jonesport-pink-cabin-stripe-wallpaper-cca-83184"
+ },
+ {
+ "sku": "glen-ridge-embossed-vertical-durable-walls-xwl-53529",
+ "handle": "glen-ridge-embossed-vertical-durable-walls-xwl-53529",
+ "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-balsa.jpg?v=1777480853",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/glen-ridge-embossed-vertical-durable-walls-xwl-53529"
+ },
+ {
+ "sku": "dwkk-129466",
+ "handle": "dwkk-129466",
+ "title": "W3865-1 White | Kravet Design | Candice Olson After Eight |Geometric Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3865_1_08faea5d-6c0a-446f-93e2-91e3b7e58e60.jpg?v=1753120968",
+ "tags": [
+ "27In",
+ "Abstract",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Candice Olson After Eight",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Geometric",
+ "Hallway",
+ "Kravet",
+ "Kravet Design",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Non Woven - 100%",
+ "Organic Modern",
+ "Print",
+ "Serene",
+ "Texture",
+ "Textured",
+ "United States",
+ "Vinyl",
+ "W3865-1",
+ "W3865.1.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129466"
+ },
+ {
+ "sku": "tahlia-pink-stucco-texture-wallpaper-cca-83026",
+ "handle": "tahlia-pink-stucco-texture-wallpaper-cca-83026",
+ "title": "Tahlia Pink Stucco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/c156cb1926d7a868f133593ae46ef7f8.jpg?v=1572309966",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahlia-pink-stucco-texture-wallpaper-cca-83026"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47882",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47882",
+ "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-47882-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722144",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Loftus Type 2 Vinyl Wallcovering",
+ "Minimalist",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47882"
+ },
+ {
+ "sku": "dwtt-71486-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71486-designer-wallcoverings-los-angeles",
+ "title": "Thalia Strie Beige | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14270_fd132fd8-8130-4bee-be14-fdb8dc6e3989.jpg?v=1733893970",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Imperial Garden",
+ "Pattern",
+ "Stripe",
+ "T14270",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71486-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwj-52397",
+ "handle": "prince-vertical-emboss-durable-walls-xwj-52397",
+ "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/xwj-52397-sample-prince-vertical-emboss-durable-hollywood-wallcoverings.jpg?v=1775729412",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwj-52397"
+ },
+ {
+ "sku": "dwtt-72272-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72272-designer-wallcoverings-los-angeles",
+ "title": "Medici Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7660.jpg?v=1733892381",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Damask Resource 3",
+ "Pattern",
+ "Pearl",
+ "T7660",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72272-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127698",
+ "handle": "dwkk-127698",
+ "title": "Rafi - Parchment By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0060_06_CAC_7b22b5fe-928c-4943-a0df-c19d41021c0e.jpg?v=1726037788",
+ "tags": [
+ "20.875In",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Hallway",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Paper",
+ "Parchment",
+ "Print",
+ "Rafi",
+ "Serene",
+ "Solid",
+ "Texture",
+ "Textured",
+ "Tone On Tone",
+ "Transitional",
+ "United Kingdom",
+ "W0060/06.Cac.0",
+ "Wallcovering",
+ "White",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 176.24,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127698"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5014-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5014-jpg",
+ "title": "Shift - Harvest | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5014.jpg?v=1762305752",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Harvest",
+ "RAMPART®",
+ "Shift",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5014-jpg"
+ },
+ {
+ "sku": "eur-80365-ncw4353-designer-wallcoverings-los-angeles",
+ "handle": "eur-80365-ncw4353-designer-wallcoverings-los-angeles",
+ "title": "Colbert 01 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505497139.jpg?v=1775523627",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Chocolate Brown",
+ "Class A Fire Rated",
+ "Colbert",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Dusty Rose",
+ "Gray",
+ "Hallway",
+ "Leaf",
+ "LES INDIENNES",
+ "Living Room",
+ "Mid-century",
+ "Mid-century Modern",
+ "NCW4353",
+ "NCW4353-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Pink",
+ "Red",
+ "Slate Blue",
+ "Taupe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80365-ncw4353-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "singing-small-mural-by-retro-walls-rtr-37255",
+ "handle": "singing-small-mural-by-retro-walls-rtr-37255",
+ "title": "Singing Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e8b177a32b3ab21ce22d82edac5635dd.jpg?v=1572309703",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Balls",
+ "Bed",
+ "Blue",
+ "Books",
+ "Chest",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dog",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Lamp",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pictures",
+ "Pink",
+ "Scenic",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/singing-small-mural-by-retro-walls-rtr-37255"
+ },
+ {
+ "sku": "kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873",
+ "handle": "kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873",
+ "title": "Kenley Peach Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16aba4aa128b036e99224eaf17806ab7.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Paper",
+ "Peach",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-peach-polka-dots-wallpaper-wallpaper-cca-82873"
+ },
+ {
+ "sku": "dwtt-71916-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71916-designer-wallcoverings-los-angeles",
+ "title": "Bilzen Linen Coral | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14132_ff6f65e3-42b8-4ef1-a8a1-92e7bf29bdd0.jpg?v=1733893138",
+ "tags": [
+ "Architectural",
+ "coral",
+ "Pattern",
+ "peach",
+ "Solid",
+ "T14132",
+ "Texture",
+ "Texture Resource 4",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71916-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72224",
+ "handle": "saint-lore-durable-vinyl-dur-72224",
+ "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-72224-sample-clean.jpg?v=1774484805",
+ "tags": [
+ "Abstract",
+ "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",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Pink",
+ "Rose Quartz",
+ "Serene",
+ "Slate Gray",
+ "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-72224"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_st9506-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_st9506-jpg",
+ "title": "ST9506 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_st9505.jpg?v=1733872251",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Minimalist",
+ "Pink",
+ "Solid",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_st9506-jpg"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2524",
+ "handle": "faux-leaf-squares-fls-2524",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2524-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711934",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Gray",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2524"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48572",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48572",
+ "title": "Ventnor Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqq-48572-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735717",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Organic",
+ "Rustic",
+ "Stucco",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48572"
+ },
+ {
+ "sku": "moroccan-midnight-basketweave-wbs-39602",
+ "handle": "moroccan-midnight-basketweave-wbs-39602",
+ "title": "Moroccan Midnight Basketweave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39602-sample-moroccan-midnight-basketweave-hollywood-wallcoverings.jpg?v=1775726648",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Beige",
+ "Bricks and Stones",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Geometric",
+ "Glamorous",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Herringbone",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Non-woven",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Regencycore",
+ "Rich Woods",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/moroccan-midnight-basketweave-wbs-39602"
+ },
+ {
+ "sku": "dwkk-140664",
+ "handle": "dwkk-140664",
+ "title": "Little Magnolia - Emerald Green By G P & J Baker | Originals Wallcovering |Botanical & Floral Wallcovering",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/SP-BW45121_1_1cfbba7d-6829-4153-a178-3b6387845463.jpg?v=1753294515",
+ "tags": [
+ "20.488In",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Birds",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Butterflies",
+ "Chinoiserie",
+ "Chintz",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "G P & J Baker",
+ "GP & J Baker",
+ "Grandmillennial",
+ "Green",
+ "Light Green",
+ "Little Magnolia",
+ "Living Room",
+ "Mustard Yellow",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Red",
+ "Sage Green",
+ "Sp-Bw45121.1.0",
+ "Teal",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-140664"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66506",
+ "handle": "cody-couture-wallpaper-xb2-66506",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/801260e8c329cc04d6f477bd21cd50ef.jpg?v=1775127594",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Fabric",
+ "Geometric",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "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-66506"
+ },
+ {
+ "sku": "rivington-rice-paper-durable-vinyl-walls-xwj-52446",
+ "handle": "rivington-rice-paper-durable-vinyl-walls-xwj-52446",
+ "title": "Rivington Rice Paper Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwj-52446-sample-rivington-rice-paper-durable-vinyl-hollywood-wallcoverings.jpg?v=1775730759",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Gray",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivington-rice-paper-durable-vinyl-walls-xwj-52446"
+ },
+ {
+ "sku": "paradise-birds-gold-black-yellow-wallcovering-versace",
+ "handle": "paradise-birds-gold-black-yellow-wallcovering-versace",
+ "title": "Paradise Birds Gold, Black, Yellow Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/12a5a47cc506ce3d20fb20bc087f6093.jpg?v=1773706367",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Art Nouveau",
+ "Bedroom",
+ "Bird",
+ "Black",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Dark Academia",
+ "Dining Room",
+ "display_variant",
+ "Estimated Type: Non-woven",
+ "Fauna",
+ "Floral",
+ "Gold",
+ "Italian",
+ "Living Room",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Mulberry",
+ "Multi",
+ "Paper",
+ "Paradise Birds",
+ "Paradise Birds Gold",
+ "Paste the wall",
+ "Pink",
+ "Purple",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vine",
+ "Wallcovering",
+ "Yellow",
+ "Yellow Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/paradise-birds-gold-black-yellow-wallcovering-versace"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2760",
+ "handle": "faux-leaf-squares-fls-2760",
+ "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2760-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712030",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2760"
+ },
+ {
+ "sku": "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": "seeing-circles-wallcovering-xsc-44287",
+ "handle": "seeing-circles-wallcovering-xsc-44287",
+ "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-44287-sample-clean_9185eaac-c59d-4b0f-974f-1c0fd1b7791c.jpg?v=1774479112",
+ "tags": [
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Brown",
+ "Burnt Sienna",
+ "Chocolate Brown",
+ "Circle",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dot",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Orange",
+ "Pink",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 37.88,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seeing-circles-wallcovering-xsc-44287"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_ad10002-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ad10002-jpg",
+ "title": "Ambient Design - AD10002 | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/WolfGordonWallcovering_DWWG_ad9816.jpg?v=1733874125",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Ambient Design",
+ "Animal/Insects",
+ "Architectural",
+ "Black",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Coral",
+ "Paper",
+ "Pink",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Wolf",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ad10002-jpg"
+ },
+ {
+ "sku": "jumbo-bubble-gum-large-mural-by-retro-walls-rtr-37234",
+ "handle": "jumbo-bubble-gum-large-mural-by-retro-walls-rtr-37234",
+ "title": "Jumbo Bubble Gum Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/a99dfd8f189212443ab4e41086673e7c.jpg?v=1572309702",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Elephant",
+ "Fauna",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Purple",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jumbo-bubble-gum-large-mural-by-retro-walls-rtr-37234"
+ },
+ {
+ "sku": "vomera-pearl-faux-tile-wbs-39641",
+ "handle": "vomera-pearl-faux-tile-wbs-39641",
+ "title": "Vomera Pearl Faux Tile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39641-sample-vomera-pearl-faux-tile-hollywood-wallcoverings.jpg?v=1775736072",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Brick",
+ "Bricks and Stones",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Off-white",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Rich Woods",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "White",
+ "Wood"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-pearl-faux-tile-wbs-39641"
+ },
+ {
+ "sku": "crowns-roses-black-gold-cream-wallcovering-versace",
+ "handle": "crowns-roses-black-gold-cream-wallcovering-versace",
+ "title": "Crowns & Roses Black, Gold, Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/87b8808ddd3a84d086afc728fa772670.jpg?v=1773706296",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Bedroom",
+ "Beige",
+ "Black",
+ "Class A Fire Rated",
+ "Color: Gold",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Cream Wallcovering",
+ "Crowns & Roses",
+ "Crowns & Roses Black",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Glamorous",
+ "Gold",
+ "Haute Couture",
+ "Italian",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Luxury",
+ "Maximalist",
+ "Medallion",
+ "Paste the wall",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crowns-roses-black-gold-cream-wallcovering-versace"
+ },
+ {
+ "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": "sunset-stone-vinyl-dwx-58052",
+ "handle": "sunset-stone-vinyl-dwx-58052",
+ "title": "Sunset Stone Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58052-sample-sunset-stone-vinyl-hollywood-wallcoverings.jpg?v=1775735177",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Dark Gray",
+ "Embossed Texture",
+ "Estimated Type: Vinyl",
+ "Faux Stone",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Gray",
+ "Living Room",
+ "Natural Look",
+ "Olive",
+ "Organic",
+ "Organic Modern",
+ "Pale Beige",
+ "Rustic",
+ "Sage",
+ "Stone",
+ "Stucco",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sunset-stone-vinyl-dwx-58052"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2518",
+ "handle": "faux-leaf-squares-fls-2518",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2518-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711915",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Off-white",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2518"
+ },
+ {
+ "sku": "patoa-librato-wallpaper-xb7-66593",
+ "handle": "patoa-librato-wallpaper-xb7-66593",
+ "title": "Patoa Librato Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1b4539ba3156eb49a9d61d10852a4a1c.jpg?v=1775130808",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "cellulose",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Cream",
+ "Grasscloth",
+ "Hotel Lobby",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Natural Wallcovering",
+ "Neutral",
+ "Office",
+ "Patoa Librato Wallcovering",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vinyls",
+ "Wallcovering",
+ "Woven"
+ ],
+ "max_price": 52.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/patoa-librato-wallpaper-xb7-66593"
+ },
+ {
+ "sku": "la-arebe-durable-vinyl-dur-72199",
+ "handle": "la-arebe-durable-vinyl-dur-72199",
+ "title": "La Arebe Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72199-sample-clean.jpg?v=1774484769",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Brushstroke",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Eclectic",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Office",
+ "Pink",
+ "Playful",
+ "Rose",
+ "Tan",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-arebe-durable-vinyl-dur-72199"
+ },
+ {
+ "sku": "dwtt-80971-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80971-designer-wallcoverings-los-angeles",
+ "title": "Kalahari | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T10246_4847d3b8-58ed-4c74-8598-10ff7df79a77.jpg?v=1743194012",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Geometric",
+ "off-white",
+ "Pattern",
+ "T10246",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 281.81,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80971-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-and-western-xhw-201095",
+ "handle": "hollywood-and-western-xhw-201095",
+ "title": "Hollywood and Western | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-201095-sample-hollywood-and-western-hollywood-wallcoverings.jpg?v=1775716896",
+ "tags": [
+ "Beige",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Plum",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-and-western-xhw-201095"
+ },
+ {
+ "sku": "lafayette-modern-embossed-durable-walls-xwf-52257",
+ "handle": "lafayette-modern-embossed-durable-walls-xwf-52257",
+ "title": "Lafayette Modern Embossed Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwf-52257-sample-lafayette-modern-embossed-durable-hollywood-wallcoverings.jpg?v=1775721102",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Embossed",
+ "Embossed Texture",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Rose Gold",
+ "Living Room",
+ "Modern",
+ "Organic Modern",
+ "Pink",
+ "Rose Gold",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lafayette-modern-embossed-durable-walls-xwf-52257"
+ },
+ {
+ "sku": "dwc-1001581",
+ "handle": "dwc-1001581",
+ "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_4693306212403.jpg?v=1775520926",
+ "tags": [
+ "abstract",
+ "Architectural",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "contemporary",
+ "Gold",
+ "Gray",
+ "Multi",
+ "NCW4300-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "smooth",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001581"
+ },
+ {
+ "sku": "eur-80351-ncw4351-designer-wallcoverings-los-angeles",
+ "handle": "eur-80351-ncw4351-designer-wallcoverings-los-angeles",
+ "title": "Baville 01 - Neutral Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505103923.jpg?v=1775523550",
+ "tags": [
+ "Architectural",
+ "Baville",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES INDIENNES",
+ "Living Room",
+ "NCW4351",
+ "NCW4351-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paisley",
+ "Paper",
+ "Pink",
+ "Red",
+ "Rose",
+ "Taupe",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80351-ncw4351-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80322-ncw4304-designer-wallcoverings-los-angeles",
+ "handle": "eur-80322-ncw4304-designer-wallcoverings-los-angeles",
+ "title": "Marguerite Damask 03 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504120883.jpg?v=1775523371",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "LES REVES",
+ "Living Room",
+ "Marguerite Damask",
+ "NCW4304",
+ "NCW4304-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Pink",
+ "Rose Quartz",
+ "Serene",
+ "Silver Gray",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80322-ncw4304-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80409-ncw4394-designer-wallcoverings-los-angeles",
+ "handle": "eur-80409-ncw4394-designer-wallcoverings-los-angeles",
+ "title": "Posingford Leaves 04 - Brown Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507037235.jpg?v=1775523903",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Botanical",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Grey",
+ "Leaf",
+ "Light Gray",
+ "Living Room",
+ "NCW4394",
+ "NCW4394-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Posingford Leaves",
+ "Sage",
+ "Serene",
+ "Silver",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80409-ncw4394-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "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": "wolfgordonwallcovering_dwwg_ash-5070-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_ash-5070-jpg",
+ "title": "Ashlar - Straw | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ash-5070.jpg?v=1762286574",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Ashlar",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "RAMPART®",
+ "Straw",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_ash-5070-jpg"
+ },
+ {
+ "sku": "dwkk-127827",
+ "handle": "dwkk-127827",
+ "title": "Wild Strawberry Wp - Dove Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0135_02_CAC_243ec2f6-423e-46c8-a259-6f6b63a4583c.jpg?v=1753321574",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Birds",
+ "Blush Pink",
+ "Botanical",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "display_variant",
+ "Dove",
+ "English Country",
+ "Floral",
+ "Flowers",
+ "Grandmillennial",
+ "Green",
+ "Leaves",
+ "Mustard Yellow",
+ "Non Woven - 100%",
+ "Nursery",
+ "Pale Green",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Playful",
+ "Powder Room",
+ "Print",
+ "Sage Green",
+ "Strawberries",
+ "Strawberry Red",
+ "Traditional",
+ "United Kingdom",
+ "Vines",
+ "W0135/02.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "Wild Strawberry Wp",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127827"
+ },
+ {
+ "sku": "sullivan-purple-ombre-vine-trail-wallpaper-wallpaper-cca-82902",
+ "handle": "sullivan-purple-ombre-vine-trail-wallpaper-wallpaper-cca-82902",
+ "title": "Sullivan Purple Ombre Vine Trail Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/bd88e64c8d8541d8f98e4955f447cff8.jpg?v=1572309961",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Red",
+ "Series: Brewster",
+ "Strippable",
+ "Sullivan Purple Ombre Vine Trail Wallcovering Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sullivan-purple-ombre-vine-trail-wallpaper-wallpaper-cca-82902"
+ },
+ {
+ "sku": "ferndown-type-ii-vinyl-wallcovering-xld-47689",
+ "handle": "ferndown-type-ii-vinyl-wallcovering-xld-47689",
+ "title": "Ferndown Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xld-47689-sample-ferndown-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775712296",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dusty Rose",
+ "Ferndown Type 2 Vinyl Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Minimalist",
+ "Modern",
+ "Pink",
+ "Rose Taupe",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ferndown-type-ii-vinyl-wallcovering-xld-47689"
+ },
+ {
+ "sku": "vernon-durable-walls-xwr-52697",
+ "handle": "vernon-durable-walls-xwr-52697",
+ "title": "Vernon Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwr-52697-sample-vernon-durable-hollywood-wallcoverings.jpg?v=1775735782",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Khaki",
+ "Living Room",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Vernon Durable",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vernon-durable-walls-xwr-52697"
+ },
+ {
+ "sku": "eur-80173-ncw4180-designer-wallcoverings-los-angeles",
+ "handle": "eur-80173-ncw4180-designer-wallcoverings-los-angeles",
+ "title": "Cathay Parade 02 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498386483.jpg?v=1775522568",
+ "tags": [
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Birds",
+ "Bridge",
+ "Brown",
+ "Buildings",
+ "CATHAY",
+ "Cathay Parade",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "Green",
+ "Living Room",
+ "NCW4180",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Pagoda",
+ "Paper",
+ "People",
+ "Pink",
+ "Rose Quartz",
+ "Sage",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "Traditional",
+ "Trees",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80173-ncw4180-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-72184-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72184-designer-wallcoverings-los-angeles",
+ "title": "Stablewood Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3610.jpg?v=1733892542",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Coastal",
+ "Cream",
+ "dark brown",
+ "Grasscloth Resource 2",
+ "light brown",
+ "Pattern",
+ "Stripe",
+ "T3610",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72184-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "halewood-type-ii-vinyl-wallcovering-xlj-47755",
+ "handle": "halewood-type-ii-vinyl-wallcovering-xlj-47755",
+ "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-47755-sample-halewood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775715578",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Cream",
+ "Faux Wood",
+ "Navy",
+ "Olive",
+ "Silver",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 44.52,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/halewood-type-ii-vinyl-wallcovering-xlj-47755"
+ },
+ {
+ "sku": "dwtt-71299-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71299-designer-wallcoverings-los-angeles",
+ "title": "Herringbone Weave Gold Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83021_bf771e02-20a7-4606-992f-c5b47d77242b.jpg?v=1733894264",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Contemporary",
+ "cream",
+ "gold",
+ "Gold Pearl",
+ "Natural Resource 2",
+ "Pattern",
+ "T83021",
+ "Texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71299-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66512",
+ "handle": "cody-couture-wallpaper-xb2-66512",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/472aebf7b48b65f538fa019c2bdfe667.jpg?v=1775128155",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Fabric",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Solid/Textural",
+ "Spa",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66512"
+ },
+ {
+ "sku": "gironde-durable-vinyl-dur-72102",
+ "handle": "gironde-durable-vinyl-dur-72102",
+ "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-72102-sample-clean.jpg?v=1774484402",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Green",
+ "Living Room",
+ "Minimalist",
+ "Sage",
+ "Seafoam Green",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/gironde-durable-vinyl-dur-72102"
+ },
+ {
+ "sku": "eur-80371-ncw4354-designer-wallcoverings-los-angeles",
+ "handle": "eur-80371-ncw4354-designer-wallcoverings-los-angeles",
+ "title": "Garance 01 - Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505726515.jpg?v=1775523665",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cottagecore",
+ "Floral",
+ "Garance",
+ "Grandmillennial",
+ "Hallway",
+ "LES INDIENNES",
+ "Living Room",
+ "Medallion",
+ "Mid-century",
+ "Mid-Century Modern",
+ "NCW4354",
+ "NCW4354-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Orange",
+ "Paper",
+ "Peach",
+ "Taupe",
+ "Traditional",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80371-ncw4354-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "eur-80282-ncw4274-designer-wallcoverings-los-angeles",
+ "handle": "eur-80282-ncw4274-designer-wallcoverings-los-angeles",
+ "title": "Palmetto 06 - Ecru Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502220339.jpg?v=1775523148",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "COROMANDEL",
+ "Cream",
+ "Hallway",
+ "Living Room",
+ "Minimalist",
+ "NCW4274",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Palmetto",
+ "Paper",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80282-ncw4274-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4306-01",
+ "handle": "ncw4306-01",
+ "title": "Nina Campbell Wallcoverings - Coral Blush Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497262706739.jpg?v=1775520354",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Geometric",
+ "NCW4306-01",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4306-01"
+ },
+ {
+ "sku": "love-large-mural-by-retro-walls-rtr-37224",
+ "handle": "love-large-mural-by-retro-walls-rtr-37224",
+ "title": "LOVE Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/eebd5205ac5f5de90a1ece71a1491ef0.jpg?v=1572309702",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Gray",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Pink",
+ "Text",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/love-large-mural-by-retro-walls-rtr-37224"
+ },
+ {
+ "sku": "saint-lore-durable-vinyl-dur-72219",
+ "handle": "saint-lore-durable-vinyl-dur-72219",
+ "title": "Soft Faux Suede - Beige Commercial Wallcovering | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72219-sample-clean.jpg?v=1774484779",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Off-white",
+ "Organic",
+ "Paper",
+ "Rustic",
+ "Taupe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/saint-lore-durable-vinyl-dur-72219"
+ },
+ {
+ "sku": "dwtt-71539-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71539-designer-wallcoverings-los-angeles",
+ "title": "Kendall Pink | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11064_24ab0c44-9629-42a2-ad12-a6116ebe1975.jpg?v=1733893878",
+ "tags": [
+ "Architectural",
+ "Geometric",
+ "Geometric Resource 2",
+ "Pattern",
+ "pink",
+ "T11064",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering",
+ "white"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71539-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "provence-durable-vinyl-dur-72028",
+ "handle": "provence-durable-vinyl-dur-72028",
+ "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-72028-sample-clean.jpg?v=1774484031",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Provence Durable Vinyl",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/provence-durable-vinyl-dur-72028"
+ },
+ {
+ "sku": "jumping-large-mural-by-retro-walls-rtr-37250",
+ "handle": "jumping-large-mural-by-retro-walls-rtr-37250",
+ "title": "Jumping Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/55f7601e24390d7fd14e12c87e22dcf4.jpg?v=1572309703",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Beige",
+ "Bird",
+ "Cat",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Deer",
+ "Fauna",
+ "Frog",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Horse",
+ "Lion",
+ "Mouse",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Rabbit",
+ "Snake",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "Yellow"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/jumping-large-mural-by-retro-walls-rtr-37250"
+ },
+ {
+ "sku": "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": "dwtt-80283-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80283-designer-wallcoverings-los-angeles",
+ "title": "Woodland Blue Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-bedroom-dwtt-80283-designer-wallcoverings-los-angeles.jpg?v=1771837574",
+ "tags": [
+ "AT57854",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Cool",
+ "Cream",
+ "Dining Room",
+ "Dusty Blue",
+ "Elegant",
+ "English Country",
+ "Entryway",
+ "Floral",
+ "Foliage",
+ "Ivory",
+ "Large Scale",
+ "Living Room",
+ "Navy Blue",
+ "Off White",
+ "Office",
+ "Olive Green",
+ "Pattern",
+ "Peaceful",
+ "Powder Blue",
+ "Powder Room",
+ "Sage Green",
+ "Serene",
+ "Soft Gray",
+ "Sophisticated",
+ "Steel Blue",
+ "Taupe",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Woodland"
+ ],
+ "max_price": 144.98,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80283-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "asha-gilver-lotus-damask-wallpaper-cca-83233",
+ "handle": "asha-gilver-lotus-damask-wallpaper-cca-83233",
+ "title": "Asha Gilver Lotus Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/953a612f280856ca4ab13abfd12a81d9.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/asha-gilver-lotus-damask-wallpaper-cca-83233"
+ },
+ {
+ "sku": "hainsville-faux-leather-durable-walls-xwt-53389",
+ "handle": "hainsville-faux-leather-durable-walls-xwt-53389",
+ "title": "Hainsville Faux Leather Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reserve-riesling_b60c1d27-3390-488e-8624-f14cd6a5ede8.jpg?v=1777481518",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Faux Leather",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hainsville-faux-leather-durable-walls-xwt-53389"
+ },
+ {
+ "sku": "grain-contemporary-block-real-wood-wallpaper",
+ "handle": "grain-contemporary-block-real-wood-wallpaper",
+ "title": "Grain Contemporary Block Real Wood Wallcovering",
+ "vendor": "Arte International",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/Grain-PRQZ.jpg?v=1573804607",
+ "tags": [
+ "Beige",
+ "Brown",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Interior Designer",
+ "Light Beige",
+ "Pattern",
+ "Scandinavian",
+ "Textured",
+ "Wallcovering",
+ "Warm Taupe",
+ "Wood"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/grain-contemporary-block-real-wood-wallpaper"
+ },
+ {
+ "sku": "hollywood-contemporary-cobblestone-xhw-2010423",
+ "handle": "hollywood-contemporary-cobblestone-xhw-2010423",
+ "title": "Hollywood Contemporary Cobblestone | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010423-sample-hollywood-contemporary-cobblestone-hollywood-wallcoverings.jpg?v=1775717217",
+ "tags": [
+ "Ash",
+ "Beige",
+ "Black",
+ "Bronze",
+ "Brown",
+ "Charcoal",
+ "Coral",
+ "Faux Wood",
+ "Gray",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Platinum",
+ "Silver",
+ "Stone",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 71.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-cobblestone-xhw-2010423"
+ },
+ {
+ "sku": "zoe-champagne-coco-damask-wallpaper-cca-83265",
+ "handle": "zoe-champagne-coco-damask-wallpaper-cca-83265",
+ "title": "Zoe Champagne Coco Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/33ad1a13cb8533b52178f11502b501f3.jpg?v=1572309982",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Espresso",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Zoe Champagne Coco Damask Wallcovering"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-champagne-coco-damask-wallpaper-cca-83265"
+ },
+ {
+ "sku": "cody-couture-wallpaper-xb2-66509",
+ "handle": "cody-couture-wallpaper-xb2-66509",
+ "title": "Cody Couture Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4b8c42ad068d958cab806c63d1089c67.jpg?v=1775127950",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Cody Couture Wallcovering",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Coral",
+ "Fabric",
+ "Geometric",
+ "Hotel Lobby",
+ "Living Room",
+ "Modern",
+ "Office",
+ "Orange",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Pink",
+ "Silver",
+ "Textural",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 50.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/cody-couture-wallpaper-xb2-66509"
+ },
+ {
+ "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": "la-roche-durable-vinyl-dur-72075",
+ "handle": "la-roche-durable-vinyl-dur-72075",
+ "title": "La Roche Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72075-sample-clean.jpg?v=1774484295",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Dusty Rose",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Pink",
+ "Rustic",
+ "Serene",
+ "Silk",
+ "Silk Texture",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Walnut",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72075"
+ },
+ {
+ "sku": "natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824",
+ "handle": "natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824",
+ "title": "Natalia Blue Curly Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47c919234233c22b6a5d9c7705f2d228.jpg?v=1572309956",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Leaf",
+ "Pink",
+ "Prepasted",
+ "Scrolls",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/natalia-blue-curly-scroll-wallpaper-wallpaper-cca-82824"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66602",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66602",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/16c5d58b6a98fa0d2e11cc0ae08f0910.jpg?v=1775131845",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Textured",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66602"
+ },
+ {
+ "sku": "whisper-pink-scroll-texture-wallpaper-wallpaper-cca-82893",
+ "handle": "whisper-pink-scroll-texture-wallpaper-wallpaper-cca-82893",
+ "title": "Whisper Pink Scroll Texture Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/d6945f6912a0decd27ce92bb2abb905c.jpg?v=1572309959",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Kids",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whisper-pink-scroll-texture-wallpaper-wallpaper-cca-82893"
+ },
+ {
+ "sku": "dwtt-80303-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80303-designer-wallcoverings-los-angeles",
+ "title": "Tate Trellis Black Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Bristol-TateTrellisWP-black-BalmucciaMatelasseFAB-cream.jpg?v=1770349602",
+ "tags": [
+ "Ash Gray",
+ "AT57883",
+ "Bedroom",
+ "Black",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Charcoal",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Elegant",
+ "Entryway",
+ "Floral",
+ "Foliage",
+ "Geometric",
+ "Gray",
+ "Ivory",
+ "Light Gray",
+ "Living Room",
+ "Medium Scale",
+ "Neutral",
+ "Off-White",
+ "Office",
+ "Pattern",
+ "Pearl",
+ "Powder Room",
+ "Refined",
+ "Sophisticated",
+ "Stone",
+ "Tate Trellis",
+ "Taupe",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "Wallcovering",
+ "Warm Gray"
+ ],
+ "max_price": 133.57,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80303-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "ncw4392-02",
+ "handle": "ncw4392-02",
+ "title": "Ashdown Chelwood Pink - Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497265721395.jpg?v=1775520743",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Floral",
+ "NCW4392-02",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4392-02"
+ },
+ {
+ "sku": "eur-80406-ncw4394-designer-wallcoverings-los-angeles",
+ "handle": "eur-80406-ncw4394-designer-wallcoverings-los-angeles",
+ "title": "Posingford Leaves 01 - Blush Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506938931.jpg?v=1775523882",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Blush Pink",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "Grandmillennial",
+ "Gray",
+ "Grey",
+ "Leaf",
+ "Living Room",
+ "NCW4394",
+ "NCW4394-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-woven",
+ "Off-white",
+ "Pale Silver",
+ "Pink",
+ "Posingford Leaves",
+ "Serene",
+ "Silver Grey",
+ "Traditional",
+ "Transitional",
+ "Vine",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80406-ncw4394-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127816",
+ "handle": "dwkk-127816",
+ "title": "Pink Lotus Wp - Blush Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0132_01_CAC_b150373d-f707-4799-821b-3298f7967fb5.jpg?v=1753321593",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Branches",
+ "Butterfly",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "display_variant",
+ "Floral",
+ "Flowers",
+ "Green",
+ "Hummingbird",
+ "Leaves",
+ "Living Room",
+ "Non Woven - 100%",
+ "Nursery",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Pink Lotus Wp",
+ "Print",
+ "Rose",
+ "Sage",
+ "Traditional",
+ "Tropical",
+ "United Kingdom",
+ "W0132/01.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127816"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2864",
+ "handle": "peter-s-plastered-walls-ppw-2864",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2864-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729029",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Gray",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2864"
+ },
+ {
+ "sku": "eur-80345-ncw4350-designer-wallcoverings-los-angeles",
+ "handle": "eur-80345-ncw4350-designer-wallcoverings-los-angeles",
+ "title": "Les Indiennes Paisley Damask 02 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513504940083.jpg?v=1775523517",
+ "tags": [
+ "Almond",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Gray",
+ "LES INDIENNES",
+ "Les Indiennes Paisley Damask",
+ "NCW4350",
+ "NCW4350-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paisley",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80345-ncw4350-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "minetta-contemporary-durable-vinyl-xwj-52461",
+ "handle": "minetta-contemporary-durable-vinyl-xwj-52461",
+ "title": "Minetta Contemporary Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ruche-modern_fold.jpg?v=1777480623",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Light Blue Grey",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Mid-century",
+ "Mid-century Modern",
+ "Modern",
+ "Office",
+ "Sage Green",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/minetta-contemporary-durable-vinyl-xwj-52461"
+ },
+ {
+ "sku": "zoe-olive-coco-damask-wallpaper-cca-83262",
+ "handle": "zoe-olive-coco-damask-wallpaper-cca-83262",
+ "title": "Zoe Olive Coco Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/5d3945163ff4a2339807343a7b6c4347.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Embossed",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-olive-coco-damask-wallpaper-cca-83262"
+ },
+ {
+ "sku": "eur-80432-ncw4492-designer-wallcoverings-los-angeles",
+ "handle": "eur-80432-ncw4492-designer-wallcoverings-los-angeles",
+ "title": "Sackville Stripe 02 - Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507856435.jpg?v=1775524057",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Green",
+ "Light Blue",
+ "Light Grey",
+ "NCW4492",
+ "NCW4492-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off-white",
+ "Paper",
+ "Sackville Stripe",
+ "Seafoam Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80432-ncw4492-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010370",
+ "handle": "hollywood-contemporary-coast-xhw-2010370",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010370-sample-clean.jpg?v=1774482946",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Green",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Contemporary Coast",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Beige",
+ "Living Room",
+ "Modern",
+ "Olive Green",
+ "Organic Modern",
+ "Sage",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010370"
+ },
+ {
+ "sku": "bird-chirping-weather-small-mural-by-retro-walls-rtr-37205",
+ "handle": "bird-chirping-weather-small-mural-by-retro-walls-rtr-37205",
+ "title": "Bird Chirping Weather Small Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/87643e65d7292aa90e8636c2fde1349a.jpg?v=1572309701",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Beige",
+ "bird",
+ "Birds",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Floral",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 84,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bird-chirping-weather-small-mural-by-retro-walls-rtr-37205"
+ },
+ {
+ "sku": "dwkk-127814",
+ "handle": "dwkk-127814",
+ "title": "Menagerie Wp - Blush Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0131_02_CAC_dff532dd-8f9f-4dba-be28-a69b79464cc3.jpg?v=1753321596",
+ "tags": [
+ "20.5In",
+ "Animal Print",
+ "Animal/Insects",
+ "Aqua",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Eclectic",
+ "Fauna",
+ "Green",
+ "Leopard",
+ "Living Room",
+ "Maximalist",
+ "Menagerie Wp",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Novelty",
+ "Paper",
+ "Pattern",
+ "Playful",
+ "Print",
+ "Sage Green",
+ "Tan",
+ "Tropical",
+ "United Kingdom",
+ "W0131/02.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127814"
+ },
+ {
+ "sku": "floating-bubbles-vinyl-dwx-58115",
+ "handle": "floating-bubbles-vinyl-dwx-58115",
+ "title": "Floating Bubbles Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58115-sample-floating-bubbles-vinyl-hollywood-wallcoverings.jpg?v=1775713473",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Bubbles",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Dark Olive Green",
+ "Durable",
+ "Easy To Clean",
+ "Embossed Texture",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Modern",
+ "Neutral",
+ "Organic",
+ "Paper",
+ "Regencycore",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/floating-bubbles-vinyl-dwx-58115"
+ },
+ {
+ "sku": "vanderbilt-durable-walls-xwk-52589",
+ "handle": "vanderbilt-durable-walls-xwk-52589",
+ "title": "Vanderbilt Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/tulum-saltwater.jpg?v=1777480631",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Sand",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Vinyl",
+ "Vinyl Wallcoverings",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vanderbilt-durable-walls-xwk-52589"
+ },
+ {
+ "sku": "house-of-turnowsky-white-wallcovering-as-creation-1",
+ "handle": "house-of-turnowsky-white-wallcovering-as-creation-1",
+ "title": "House of Turnowsky - White Wallcovering | AS Creation",
+ "vendor": "AS Creation",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/abe74adf5f7d4eec73337546ab376498_7adb9949-5445-4713-8d76-d7fb23b48c4b.jpg?v=1776187518",
+ "tags": [
+ "AS Creation",
+ "AS388991-0",
+ "Botanical",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cottage",
+ "Floral",
+ "good light fastness",
+ "Gray",
+ "Hallway",
+ "House of Turnowsky",
+ "Kitchen",
+ "Living",
+ "Modern",
+ "New Arrival",
+ "Non-woven",
+ "Off White",
+ "Olive Green",
+ "Pink",
+ "Residential",
+ "Scrubbable",
+ "Sea Green",
+ "Sleeping",
+ "Strippable means",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/house-of-turnowsky-white-wallcovering-as-creation-1"
+ },
+ {
+ "sku": "ncw4301-02",
+ "handle": "ncw4301-02",
+ "title": "Les Rêves Beau Rivage Pink/Taupe - Blush. Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261658163.jpg?v=1775520190",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Geometric",
+ "Gray",
+ "NCW4301-02",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Pink",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4301-02"
+ },
+ {
+ "sku": "eur-80186-ncw4182-designer-wallcoverings-los-angeles",
+ "handle": "eur-80186-ncw4182-designer-wallcoverings-los-angeles",
+ "title": "Penglai 04 - Soft White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498845235.jpg?v=1775522637",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "Bedroom",
+ "bird",
+ "Birds",
+ "Blush Pink",
+ "Botanical",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "NCW4182",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off-white",
+ "Pale Yellow",
+ "Paper",
+ "Penglai",
+ "Pink",
+ "Sage Green",
+ "Serene",
+ "Silver Grey",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80186-ncw4182-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "loftus-type-ii-vinyl-wallcovering-xlz-47883",
+ "handle": "loftus-type-ii-vinyl-wallcovering-xlz-47883",
+ "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-47883-sample-loftus-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775722169",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Pale Beige",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/loftus-type-ii-vinyl-wallcovering-xlz-47883"
+ },
+ {
+ "sku": "eur-80405-ncw4393-designer-wallcoverings-los-angeles",
+ "handle": "eur-80405-ncw4393-designer-wallcoverings-los-angeles",
+ "title": "Benmore 06 - Grey Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513506906163.jpg?v=1775523875",
+ "tags": [
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Benmore",
+ "Biophilic",
+ "Blush",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hallway",
+ "Leaf",
+ "Light Grey",
+ "Living Room",
+ "NCW4393",
+ "NCW4393-06",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Taupe",
+ "Tropical",
+ "Tropical Leaf",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80405-ncw4393-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "khloe-green-girly-floral-scroll-wallpaper-wallpaper-cca-82828",
+ "handle": "khloe-green-girly-floral-scroll-wallpaper-wallpaper-cca-82828",
+ "title": "Khloe Green Girly Floral Scroll Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/0e6ba2307015bd7ed57b7b5897010701.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/khloe-green-girly-floral-scroll-wallpaper-wallpaper-cca-82828"
+ },
+ {
+ "sku": "dwkk-127822",
+ "handle": "dwkk-127822",
+ "title": "Tonquin Wp - Blush Pink By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Botanical & Floral Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0134_01_CAC_a19bd89d-373d-4359-8f75-26ba9c378255.jpg?v=1753321582",
+ "tags": [
+ "20.5In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Chinoiserie",
+ "Chintz",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Dining Room",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Non Woven - 100%",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Sage Green",
+ "Salmon",
+ "Sophisticated",
+ "Teal",
+ "Tonquin Wp",
+ "Traditional",
+ "United Kingdom",
+ "Victorian",
+ "W0134/01.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127822"
+ },
+ {
+ "sku": "olney-type-ii-vinyl-wallcovering-xmy-48107",
+ "handle": "olney-type-ii-vinyl-wallcovering-xmy-48107",
+ "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-48107-sample-olney-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775727558",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Aqua",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Office",
+ "Olney Type 2 Vinyl",
+ "Organic Modern",
+ "Seafoam",
+ "Serene",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/olney-type-ii-vinyl-wallcovering-xmy-48107"
+ },
+ {
+ "sku": "dwtt-71701-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71701-designer-wallcoverings-los-angeles",
+ "title": "Halie Circle Lavender with Metallic Gold | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T36178_568fff6e-fc5d-4d34-be37-4c58db2210e3.jpg?v=1733893586",
+ "tags": [
+ "Architectural",
+ "Botanical",
+ "Chinoiserie",
+ "Enchantment",
+ "Floral",
+ "gold",
+ "lavender",
+ "Lavender with Metallic Gold",
+ "Pattern",
+ "T36178",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71701-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+ "handle": "milbanks-metallic-grasscloth-vinyl-dwx-58162",
+ "title": "Milbanks Metallic Grasscloth Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58162-sample-milbanks-metallic-grasscloth-vinyl-hollywood-wallcoverings.jpg?v=1775725617",
+ "tags": [
+ "54\" Width",
+ "Animal",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Ecru",
+ "Embossed Texture",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "Grasscloth Wallcovering",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Light Gray",
+ "Linen",
+ "Linen Texture",
+ "Living Room",
+ "Metallic",
+ "Minimalist",
+ "Natural",
+ "Natural Look",
+ "Natural Texture",
+ "Off-white",
+ "Organic Modern",
+ "Pale Blue",
+ "Pale Grey",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/milbanks-metallic-grasscloth-vinyl-dwx-58162"
+ },
+ {
+ "sku": "dwkk-127810",
+ "handle": "dwkk-127810",
+ "title": "Golden Parrot Wp - Ivory Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0130_02_CAC_70fda95b-a855-42cb-855f-b5135ffc0653.jpg?v=1753321603",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Butterfly",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Parrot Wp",
+ "Grandmillennial",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Novelty",
+ "Off-white",
+ "Orange",
+ "Paper",
+ "Parrot",
+ "Pattern",
+ "Peach",
+ "Pink",
+ "Print",
+ "Red",
+ "Rose Pink",
+ "Sage Green",
+ "Sky Blue",
+ "Sophisticated",
+ "Traditional",
+ "United Kingdom",
+ "W0130/02.Cac.0",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127810"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2879",
+ "handle": "peter-s-plastered-walls-ppw-2879",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2879-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729078",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Mediterranean",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2879"
+ },
+ {
+ "sku": "verwood-type-ii-vinyl-wallcovering-xqr-48586",
+ "handle": "verwood-type-ii-vinyl-wallcovering-xqr-48586",
+ "title": "Verwood Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqr-48586-sample-verwood-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775735818",
+ "tags": [
+ "20 oz",
+ "41 Inch Width",
+ "41\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Ivory",
+ "Living Room",
+ "Organic Modern",
+ "Rustic",
+ "Serene",
+ "Solid",
+ "Stucco",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Width: 41\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/verwood-type-ii-vinyl-wallcovering-xqr-48586"
+ },
+ {
+ "sku": "dwss-72629",
+ "handle": "dwss-72629",
+ "title": "Kristina beige Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/700-19_image1_49ba62f0-525d-463e-84c4-9f0eab0a581b.jpg?v=1646104881",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Gold",
+ "Kristina",
+ "Kristina beige Sample",
+ "P700-19",
+ "Paper",
+ "Sandberg",
+ "Sandberg Wallcovering",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72629"
+ },
+ {
+ "sku": "dwkk-127832",
+ "handle": "dwkk-127832",
+ "title": "Wonderlust Wp - Teal Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0136_03_CAC_cb823810-8af9-4186-92bb-17addff25b8a.jpg?v=1753321565",
+ "tags": [
+ "20.5In",
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Biophilic",
+ "Bird",
+ "Botanical",
+ "Branches",
+ "Champagne",
+ "Charcoal",
+ "Chartreuse",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Dramatic",
+ "Eclectic",
+ "Emerald Green",
+ "Fauna",
+ "Floral",
+ "Flowers",
+ "Gray",
+ "Green",
+ "Ivory",
+ "Leaves",
+ "Leopard",
+ "Living Room",
+ "Maximalist",
+ "Moss",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Novelty",
+ "Paper",
+ "Pink",
+ "Print",
+ "Rose Quartz",
+ "Teal",
+ "Tropical",
+ "United Kingdom",
+ "W0136/03.Cac.0",
+ "Wallcovering",
+ "White",
+ "Wonderlust Wp",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127832"
+ },
+ {
+ "sku": "rustic-glam-vinyl-gpr-76648",
+ "handle": "rustic-glam-vinyl-gpr-76648",
+ "title": "Rustic Glam Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/gpr-76648-sample-rustic-glam-vinyl-hollywood-wallcoverings.jpg?v=1775732043",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Turquoise",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Jade",
+ "Light Green",
+ "Pale Beige",
+ "Rustic",
+ "Seafoam",
+ "Serene",
+ "Stripe",
+ "Teal",
+ "Textured",
+ "Turquoise",
+ "USFCID#vp885-219",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain"
+ ],
+ "max_price": 41.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rustic-glam-vinyl-gpr-76648"
+ },
+ {
+ "sku": "eur-80436-ncw4493-designer-wallcoverings-los-angeles",
+ "handle": "eur-80436-ncw4493-designer-wallcoverings-los-angeles",
+ "title": "Petit Dapuri Stripe 01 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507987507.jpg?v=1775524083",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "NCW4493",
+ "NCW4493-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Paper",
+ "Petit Dapuri Stripe",
+ "Pink",
+ "Red",
+ "Rose",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Stripe",
+ "Teal",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80436-ncw4493-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "camila-pink-modern-damask-wallpaper-wallpaper-cca-82842",
+ "handle": "camila-pink-modern-damask-wallpaper-wallpaper-cca-82842",
+ "title": "Camila Pink Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/462ed819931121e9a07283a412e2be36.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Modern",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-pink-modern-damask-wallpaper-wallpaper-cca-82842"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_sft-5010-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_sft-5010-jpg",
+ "title": "Shift Plus - Cream | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/sft-5010.jpg?v=1762305609",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "RAMPART®",
+ "Shift Plus",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_sft-5010-jpg"
+ },
+ {
+ "sku": "peter-s-plastered-walls-ppw-2884",
+ "handle": "peter-s-plastered-walls-ppw-2884",
+ "title": "Peter's Plastered | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/ppw-2884-sample-peter-s-plastered-hollywood-wallcoverings.jpg?v=1775729095",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Mediterranean",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 40.54,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/peter-s-plastered-walls-ppw-2884"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73157",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73157",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73157-sample-clean.jpg?v=1774483788",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Farmhouse",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Paper",
+ "Rustic",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Warm"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73157"
+ },
+ {
+ "sku": "nicky-lavender-textured-pinstripe-wallpaper-cca-83032",
+ "handle": "nicky-lavender-textured-pinstripe-wallpaper-cca-83032",
+ "title": "Nicky Lavender Textured Pinstripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/92e64cb1535c1471da6f3b133d9b4f2b.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Kids",
+ "LA Walls",
+ "Lavender",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/nicky-lavender-textured-pinstripe-wallpaper-cca-83032"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72421",
+ "handle": "rivo-dulce-durable-vinyl-dur-72421",
+ "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-72421-sample-clean.jpg?v=1774485480",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Gray-green",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Olive Drab",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Sage",
+ "Serene",
+ "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-72421"
+ },
+ {
+ "sku": "rivo-dulce-durable-vinyl-dur-72407",
+ "handle": "rivo-dulce-durable-vinyl-dur-72407",
+ "title": "Rivo Dulce Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72407-sample-clean.jpg?v=1774485411",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Khaki",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Organic",
+ "Organic Modern",
+ "Rivo Dulce Durable Vinyl",
+ "Rustic",
+ "Sage",
+ "Solid",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rivo-dulce-durable-vinyl-dur-72407"
+ },
+ {
+ "sku": "dwtt-71266-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71266-designer-wallcoverings-los-angeles",
+ "title": "Highline Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T83046_f67bea58-8965-4dff-8573-fce4413c1308.jpg?v=1733894332",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Natural Resource 2",
+ "Pattern",
+ "Stripe",
+ "T83046",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71266-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "puna-drive-natural-grassweave-hlw-73118",
+ "handle": "puna-drive-natural-grassweave-hlw-73118",
+ "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-73118-sample-clean.jpg?v=1774483546",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Black",
+ "Coastal",
+ "Color: Black",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73118"
+ },
+ {
+ "sku": "dwkk-121660",
+ "handle": "dwkk-121660",
+ "title": "Zhou Jun - Fresa Red By Gaston Y Daniela | Lorenzo Castillo Hispania Wp |Chinoiserie Global Wallcovering Print",
+ "vendor": "Gaston Y Daniela",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/GDW5252_007_18eecb1b-f0dd-47a4-8eda-31e5b2bcdb6a.jpg?v=1753293809",
+ "tags": [
+ "20.8In",
+ "AI-Analyzed-v2",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Birds",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "display_variant",
+ "Fresa",
+ "Gaston Y Daniela",
+ "Gdw5252.007.0",
+ "Global",
+ "Living Room",
+ "Lorenzo Castillo Hispania Wp",
+ "Mauve",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Scenic",
+ "Serene",
+ "Spain",
+ "Traditional",
+ "Wallcovering",
+ "White",
+ "Zhou Jun"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-121660"
+ },
+ {
+ "sku": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+ "handle": "delilah-cream-tulip-damask-wallpaper-cca-83240",
+ "title": "Delilah Cream Tulip Damask Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e9aad6c07fa0483b2b58f6b77ece20ee.jpg?v=1572309981",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "Gray",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/delilah-cream-tulip-damask-wallpaper-cca-83240"
+ },
+ {
+ "sku": "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": "wolfgordonwallcovering_dwwg_reh-5507-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_reh-5507-jpg",
+ "title": "Resham - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/reh-5507.jpg?v=1762304040",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Cream",
+ "RAMPART®",
+ "Resham",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_reh-5507-jpg"
+ },
+ {
+ "sku": "daytona-faux-contemporary-durable-walls-xwc-53204",
+ "handle": "daytona-faux-contemporary-durable-walls-xwc-53204",
+ "title": "Daytona Faux Contemporary Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwc-53204-sample-daytona-faux-contemporary-durable-hollywood-wallcoverings.jpg?v=1775710068",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Lattice",
+ "LEED",
+ "Leed Walls",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-contemporary-durable-walls-xwc-53204"
+ },
+ {
+ "sku": "aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248",
+ "handle": "aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248",
+ "title": "Aubrey Milk Crystal Medallion Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/3d59d8eeae52c723c75a813813803f8f.jpg?v=1572309982",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Medallion",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/aubrey-milk-crystal-medallion-texture-wallpaper-cca-83248"
+ },
+ {
+ "sku": "dwtt-72155-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72155-designer-wallcoverings-los-angeles",
+ "title": "Stablewood Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3628.jpg?v=1733892612",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Cream",
+ "Geometric",
+ "Grasscloth Resource 2",
+ "Pattern",
+ "T3628",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72155-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "versace-plain-glitter-white-cream-wallcovering-versace",
+ "handle": "versace-plain-glitter-white-cream-wallcovering-versace",
+ "title": "Versace Plain Glitter White, Cream Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/f9027002e0b50bc987e02ec3dbe8beed.jpg?v=1773706477",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Cream Wallcovering",
+ "display_variant",
+ "Italian",
+ "Light Beige",
+ "Light Brown",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Glitter",
+ "Versace Plain Glitter White",
+ "Versace VI",
+ "Wallcovering",
+ "Walnut"
+ ],
+ "max_price": 289.59,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-glitter-white-cream-wallcovering-versace"
+ },
+ {
+ "sku": "vomera-cream-faux-tile-wbs-39642",
+ "handle": "vomera-cream-faux-tile-wbs-39642",
+ "title": "Vomera Cream Faux Tile | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/wbs-39642-sample-vomera-cream-faux-tile-hollywood-wallcoverings.jpg?v=1775735892",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Bricks and Stones",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Paper Backed Solid Vinyl Wallcoverings",
+ "Powder Room",
+ "Rich Woods",
+ "Serene",
+ "Textured",
+ "Tile",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Wallcoverings",
+ "Wood",
+ "Yellow"
+ ],
+ "max_price": 34.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vomera-cream-faux-tile-wbs-39642"
+ },
+ {
+ "sku": "via-del-marnie-durable-vinyl-dur-72450",
+ "handle": "via-del-marnie-durable-vinyl-dur-72450",
+ "title": "Via del Marnie Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72450-sample-clean.jpg?v=1774485625",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Green",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Sage",
+ "Seafoam Green",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/via-del-marnie-durable-vinyl-dur-72450"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52362",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52362",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/perplex-escapade.jpg?v=1777480530",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52362"
+ },
+ {
+ "sku": "dwkk-137714",
+ "handle": "dwkk-137714",
+ "title": "Langdale Trellis - Soft Aqua By G P & J Baker | Signature Ii Wallpapers |Modern Geometric Wallcovering Print",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45071_11_8339e2a9-3b03-4ce7-a304-e37ce38cdd8b.jpg?v=1753303608",
+ "tags": [
+ "20.488In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bw45071.11.0",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "G P & J Baker",
+ "Geometric",
+ "GP & J Baker",
+ "Hallway",
+ "Langdale Trellis",
+ "Lattice",
+ "Light Blue",
+ "Living Room",
+ "Modern",
+ "Non Woven - 100%",
+ "Pale Turquoise",
+ "Paper",
+ "Print",
+ "Serene",
+ "Signature Ii Wallpapers",
+ "Soft Aqua",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Trellis",
+ "Turquoise",
+ "United Kingdom",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-137714"
+ },
+ {
+ "sku": "eur-80118-ncw4121-designer-wallcoverings-los-angeles",
+ "handle": "eur-80118-ncw4121-designer-wallcoverings-los-angeles",
+ "title": "Bothwell 03 - Rose Quartz Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513496387635.jpg?v=1775522225",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Bothwell",
+ "BRAEMAR",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Hallway",
+ "Light Pink",
+ "Minimalist",
+ "Modern",
+ "NCW4121",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Pale Grey",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Solid",
+ "Stripe",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80118-ncw4121-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "norman-aqua-medallion-wallpaper-cca-82952",
+ "handle": "norman-aqua-medallion-wallpaper-cca-82952",
+ "title": "Norman Aqua Medallion Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/22e04683791b6dc154d192c7a042faf0.jpg?v=1572309963",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "Green",
+ "LA Walls",
+ "Masculine",
+ "Medallion",
+ "Paper",
+ "Prepasted",
+ "Sage",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/norman-aqua-medallion-wallpaper-cca-82952"
+ },
+ {
+ "sku": "eur-80239-ncw4205-designer-wallcoverings-los-angeles",
+ "handle": "eur-80239-ncw4205-designer-wallcoverings-los-angeles",
+ "title": "Barbary Toile 01 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500713011.jpg?v=1775522911",
+ "tags": [
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Barbary Toile",
+ "Bedroom",
+ "Botanical",
+ "Chinoiserie",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "FONTIBRE",
+ "Lavender",
+ "Light Gray",
+ "Living Room",
+ "Monkey",
+ "NCW4205",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Nursery",
+ "Off White",
+ "Palm",
+ "Palm Trees",
+ "Paper",
+ "Playful",
+ "Purple",
+ "Toile",
+ "Tropical",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80239-ncw4205-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-127820",
+ "handle": "dwkk-127820",
+ "title": "Sapphire Garden Wp - Mineral Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0133_02_CAC_7e46b29a-6e77-4fa1-beb9-5d4ab6e3b7fa.jpg?v=1753321585",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "Chinoiserie Panel",
+ "Chocolate Brown",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Coral",
+ "Cottagecore",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Living Room",
+ "Mineral",
+ "Mint",
+ "Monkey",
+ "Navy",
+ "Non Woven - 100%",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Red",
+ "Sapphire Garden Wp",
+ "Serene",
+ "Sky Blue",
+ "Traditional",
+ "Turquoise",
+ "United Kingdom",
+ "W0133/02.Cac.0",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127820"
+ },
+ {
+ "sku": "canal-damask-durable-vinyl-xwa-52077",
+ "handle": "canal-damask-durable-vinyl-xwa-52077",
+ "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-52077-sample-canal-damask-durable-vinyl-hollywood-wallcoverings.jpg?v=1775707050",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grandmillennial",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Pale Beige",
+ "Pattern",
+ "Sage Green",
+ "Scroll",
+ "Serene",
+ "Textured",
+ "Timeless",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vine",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 66.82,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/canal-damask-durable-vinyl-xwa-52077"
+ },
+ {
+ "sku": "ncw4301-06",
+ "handle": "ncw4301-06",
+ "title": "Les Rêves Beau Rivage Blue/Indigo - Azure Blue Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4497261822003.jpg?v=1775520217",
+ "tags": [
+ "Architectural",
+ "Blue",
+ "Cadet",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Geometric",
+ "Ink",
+ "Light Blue",
+ "NCW4301-06",
+ "Nina Campbell Wallcovering",
+ "Nina Campbell Wallcoverings",
+ "Paper",
+ "Periwinkle",
+ "Powder",
+ "Smoke",
+ "Steel",
+ "Wallcovering",
+ "Wallcoverings",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ncw4301-06"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2758",
+ "handle": "faux-leaf-squares-fls-2758",
+ "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2758-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712024",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2758"
+ },
+ {
+ "sku": "dwkk-127826",
+ "handle": "dwkk-127826",
+ "title": "Wild Strawberry Wp - Blush Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0135_01_CAC_010a6708-eaa4-45a3-8ae0-21f53ec6f9ba.jpg?v=1753321576",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "display_variant",
+ "English Country",
+ "Floral",
+ "Flower",
+ "Golden Yellow",
+ "Grandmillennial",
+ "Green",
+ "Leaf",
+ "Non Woven - 100%",
+ "Nursery",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Playful",
+ "Print",
+ "Sage Green",
+ "Sky Blue",
+ "Strawberry",
+ "Strawberry Red",
+ "Taupe",
+ "Traditional",
+ "United Kingdom",
+ "Vine",
+ "W0135/01.Cac.0",
+ "Wallcovering",
+ "Whimsical",
+ "White",
+ "Wild Strawberry Wp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127826"
+ },
+ {
+ "sku": "kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869",
+ "handle": "kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869",
+ "title": "Kenley Pink Polka Dots Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/6a6dd48b682e87fd0de9486dd28d9994.jpg?v=1572309958",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Discontinued",
+ "Dots",
+ "Easy Walls",
+ "LA Walls",
+ "Paper",
+ "Pink",
+ "Polka Dots",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Wallcovering",
+ "Washable",
+ "Whimsical",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kenley-pink-polka-dots-wallpaper-wallpaper-cca-82869"
+ },
+ {
+ "sku": "dwkk-137721",
+ "handle": "dwkk-137721",
+ "title": "California - Teal/Ochre Teal By G P & J Baker | Signature |Botanical & Floral Wallcovering Print",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45080_4_6f2ae566-6fd3-4a43-9d20-4917571f4458.jpg?v=1753303594",
+ "tags": [
+ "26.989In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Botanical & Floral",
+ "Brown",
+ "Burnt Orange",
+ "Bw45080.4.0",
+ "California",
+ "Champagne",
+ "Commercial",
+ "Contemporary",
+ "Dining Room",
+ "display_variant",
+ "Eclectic",
+ "Floral",
+ "G P & J Baker",
+ "GP & J Baker",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Multi",
+ "Mustard Yellow",
+ "Navy",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Ochre",
+ "Orange",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Sage",
+ "Signature",
+ "Taupe",
+ "Teal",
+ "Teal/Ochre",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-137721"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53275",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53275",
+ "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-53275-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710172",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Grasscloth",
+ "Hollywood Wallcoverings",
+ "LEED",
+ "Leed Walls",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53275"
+ },
+ {
+ "sku": "dwk-31001-koroseal-koroseal-type-2-vinyl-l521-25-luxe-prelude",
+ "handle": "dwk-31001-koroseal-koroseal-type-2-vinyl-l521-25-luxe-prelude",
+ "title": "Luxe Falcon - Beige Commercial Wallcovering | Koroseal",
+ "vendor": "Koroseal",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/l521-25_2cfc99f5-b8c0-40a4-bc85-e014a7440d16.jpg?v=1751950671",
+ "tags": [
+ "2026 Inventory",
+ "Architectural Wallcoverings",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "DWK-31001",
+ "Hallway",
+ "L521-25",
+ "Light Beige",
+ "Living Room",
+ "Paper",
+ "Rustic",
+ "Serene",
+ "Solid",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwk-31001-koroseal-koroseal-type-2-vinyl-l521-25-luxe-prelude"
+ },
+ {
+ "sku": "eur-80216-ncw4200-designer-wallcoverings-los-angeles",
+ "handle": "eur-80216-ncw4200-designer-wallcoverings-los-angeles",
+ "title": "Keightley's Folio 01 - Pastel Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500155955.jpg?v=1775522800",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Antique Gold",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Blue",
+ "Class A Fire Rated",
+ "Commercial",
+ "Dining Room",
+ "FONTIBRE",
+ "Gray",
+ "Keightley's Folio",
+ "Keightley's Folio 01",
+ "Light Gray",
+ "Living Room",
+ "NCW4200",
+ "Neoclassical",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Scenic",
+ "Serene",
+ "Sky Blue",
+ "Slate Gray",
+ "Toile",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80216-ncw4200-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "versace-brand-design-colourful-wallcovering-versace",
+ "handle": "versace-brand-design-colourful-wallcovering-versace",
+ "title": "Versace Brand Design Colourful Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/1ffb883deb2c31541a66c9ceb3b9ce00.jpg?v=1773706386",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Colourful",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Gold",
+ "Grandmillennial",
+ "Greek Key",
+ "Green",
+ "Italian",
+ "Light Green",
+ "Living Room",
+ "Luxury",
+ "Mint Green",
+ "Multi",
+ "Neoclassical",
+ "Pale Pink",
+ "Paste the wall",
+ "Pink",
+ "Purple",
+ "Regencycore",
+ "Sage Green",
+ "Serene",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Brand Design",
+ "Versace Brand Design Colourful Wallcovering",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-brand-design-colourful-wallcovering-versace"
+ },
+ {
+ "sku": "prince-vertical-emboss-durable-walls-xwh-52381",
+ "handle": "prince-vertical-emboss-durable-walls-xwh-52381",
+ "title": "Prince Vertical Emboss Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/prelude-nocturne.jpg?v=1777480547",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Organic Modern",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/prince-vertical-emboss-durable-walls-xwh-52381"
+ },
+ {
+ "sku": "dwtt-80253-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80253-designer-wallcoverings-los-angeles",
+ "title": "Beckley Stripe Green Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/AT57822.jpg?v=1776161604",
+ "tags": [
+ "AT57822",
+ "Bathroom",
+ "Beckley Stripe",
+ "Bedroom",
+ "Beige",
+ "Bristol",
+ "Calm",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Entryway",
+ "Green",
+ "Ivory",
+ "Light Gray",
+ "Light Taupe",
+ "Living Room",
+ "Medium Scale",
+ "Mint Green",
+ "Neutral",
+ "Off-White",
+ "Office",
+ "Pale Green",
+ "Pattern",
+ "Relaxing",
+ "Sage Green",
+ "Serene",
+ "Sophisticated",
+ "Stripe",
+ "Taupe",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Warm White"
+ ],
+ "max_price": 114.03,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80253-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "oakland-sand-grasscloth-stripe-wallpaper-cca-83163",
+ "handle": "oakland-sand-grasscloth-stripe-wallpaper-cca-83163",
+ "title": "Oakland Sand Grasscloth Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/72978459b7f1fc7aef90d9ec381b1030.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "Faux Grasscloth",
+ "Grasscloth",
+ "Grasscloth Texture",
+ "LA Walls",
+ "Light Brown",
+ "Natural",
+ "Natural Wallcovering",
+ "Oakland Sand Grasscloth Stripe Wallcovering",
+ "Prepasted",
+ "Sand",
+ "Series: Brewster",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/oakland-sand-grasscloth-stripe-wallpaper-cca-83163"
+ },
+ {
+ "sku": "stanwick-synchronized-wallpaper",
+ "handle": "stanwick-synchronized-wallpaper",
+ "title": "Stanwick Synchronized Wallcovering",
+ "vendor": "Apartment Wallpaper",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/LK8337.jpg?v=1648683790",
+ "tags": [
+ "Abstract",
+ "Botanical",
+ "Contemporary",
+ "Green",
+ "Interior Designer",
+ "Lavender",
+ "Light Blue",
+ "Light Yellow",
+ "Multi",
+ "Non-woven",
+ "Off-White",
+ "Pale Pink",
+ "Pattern",
+ "Purple",
+ "Sage Green",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/stanwick-synchronized-wallpaper"
+ },
+ {
+ "sku": "newcastle-type-ii-vinyl-wallcovering-xve-49305",
+ "handle": "newcastle-type-ii-vinyl-wallcovering-xve-49305",
+ "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-sugarcane_7da65f61-adbf-4fc0-9c27-1019ca0fd43d.jpg?v=1777481422",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brick",
+ "Class A Fire Rated",
+ "Coastal Farmhouse",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Off-White",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/newcastle-type-ii-vinyl-wallcovering-xve-49305"
+ },
+ {
+ "sku": "crushed-costoluto-vinyl-dwx-58002",
+ "handle": "crushed-costoluto-vinyl-dwx-58002",
+ "title": "Crushed Costoluto Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58002-sample-crushed-costoluto-vinyl-hollywood-wallcoverings.jpg?v=1775709673",
+ "tags": [
+ "54\" Width",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crushed",
+ "hollywood",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Neutral",
+ "Organic",
+ "Striped",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/crushed-costoluto-vinyl-dwx-58002"
+ },
+ {
+ "sku": "earby-type-ii-vinyl-wallcovering-xkz-47619",
+ "handle": "earby-type-ii-vinyl-wallcovering-xkz-47619",
+ "title": "Earby Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xkz-47619-sample-earby-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775710529",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Earby Type 2 Vinyl Wallcovering",
+ "Faux Leather",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Organic Modern",
+ "Pale Beige",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Timeless",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/earby-type-ii-vinyl-wallcovering-xkz-47619"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_dchy-562-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_dchy-562-jpg",
+ "title": "Chrysocolla - Purple Quartz | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dchy-562.jpg?v=1762290900",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Black",
+ "Chrysocolla",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Digital Curated",
+ "Paper",
+ "Pink",
+ "Purple Quartz",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_dchy-562-jpg"
+ },
+ {
+ "sku": "dwss-72612",
+ "handle": "dwss-72612",
+ "title": "Emilia Ilke Sample Wallcovering | Sandberg",
+ "vendor": "Sandberg",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/654-21_image1_c5a0756e-2c96-4073-8bc9-da4d25235bfe.jpg?v=1646104829",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beige",
+ "Brown",
+ "Clay",
+ "Commercial",
+ "Contemporary",
+ "Emilia Ilke",
+ "Gray",
+ "Living Room",
+ "Multi",
+ "Non-Woven",
+ "Paper",
+ "Pink",
+ "Sandberg",
+ "Sandberg Large Patterns",
+ "Sandberg Wallcovering",
+ "Scandinavian",
+ "Swedish Design",
+ "Wallcovering",
+ "Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwss-72612"
+ },
+ {
+ "sku": "dwkk-129155",
+ "handle": "dwkk-129155",
+ "title": "W3754-3 Green | Kravet Design | Ronald Redding | Botanical & Floral Wallcovering Print",
+ "vendor": "Kravet",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W3754_3_b79efa78-3794-4e63-86af-b8cfcd482df7.jpg?v=1753121506",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Botanical & Floral",
+ "Brown",
+ "Chinoiserie",
+ "Commercial",
+ "Contemporary",
+ "display_variant",
+ "Green",
+ "Japonisme",
+ "Kravet",
+ "Kravet Design",
+ "Leaf",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic Modern",
+ "Paper",
+ "Pattern",
+ "Print",
+ "Ronald Redding",
+ "Sage",
+ "Scenic",
+ "Serene",
+ "Taupe",
+ "United States",
+ "W3754-3",
+ "W3754.3.0",
+ "Wallcovering",
+ "Zen"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-129155"
+ },
+ {
+ "sku": "dwtt-71494-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71494-designer-wallcoverings-los-angeles",
+ "title": "Aldora Champagne Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T11049_f3989acf-7d75-4ee3-9c59-48e1fd721d5a.jpg?v=1733893961",
+ "tags": [
+ "Architectural",
+ "beige",
+ "butterfly",
+ "Champagne Pearl",
+ "contemporary",
+ "cream",
+ "Geometric Resource 2",
+ "Pattern",
+ "T11049",
+ "texture",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71494-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwtt-71180-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71180-designer-wallcoverings-los-angeles",
+ "title": "Sierra Metallic Silver on Metallic Gold on Cream | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Surface-Resource-Sierra-01.jpg?v=1762227108",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Contemporary",
+ "cream",
+ "Geometric",
+ "gold",
+ "Metallic Gold on Cream",
+ "Pattern",
+ "Surface Resource",
+ "T4005",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71180-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-modern-marble-xhw-2010327",
+ "handle": "hollywood-modern-marble-xhw-2010327",
+ "title": "Hollywood Modern Marble | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/selenite-chalcopyrite_f4ad2f30-c5be-4ab3-a87c-8458b2eb5b27.jpg?v=1777481403",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color White",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Gray",
+ "Living Room",
+ "Marble",
+ "Marble Look",
+ "Mfr-Image-Refreshed",
+ "Modern",
+ "Off White",
+ "Organic Modern",
+ "Paper",
+ "Pink",
+ "Raspberry",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 53.5,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-modern-marble-xhw-2010327"
+ },
+ {
+ "sku": "dwtt-72264-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72264-designer-wallcoverings-los-angeles",
+ "title": "Damask Resource 3 Lime | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T7611.jpg?v=1733892387",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Damask",
+ "Damask Resource 3",
+ "Lime",
+ "lime green",
+ "Pattern",
+ "T7611",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72264-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "st-dennis-durable-vinyl-dur-72282",
+ "handle": "st-dennis-durable-vinyl-dur-72282",
+ "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-72282-sample-clean.jpg?v=1774485016",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Dark Brown",
+ "Durable Type 2 Vinyl",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Mauve",
+ "Moody",
+ "Pink",
+ "Purple",
+ "Rustic",
+ "Taupe",
+ "Teal",
+ "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-72282"
+ },
+ {
+ "sku": "kabu-sand-romo",
+ "handle": "kabu-sand-romo",
+ "title": "Kabu Sand | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W968-03-kabu-wallcovering-sand_04.jpg?v=1776485059",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Hotel",
+ "Kabu Wallcoverings",
+ "light brown",
+ "Medium",
+ "Minimalist",
+ "Natural",
+ "Neutral",
+ "Office",
+ "Organic",
+ "Retail",
+ "Romo",
+ "Subtle",
+ "Tan",
+ "Textured",
+ "Vinyl",
+ "W968/03",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kabu-sand-romo"
+ },
+ {
+ "sku": "dwkk-127836",
+ "handle": "dwkk-127836",
+ "title": "Waterlily Wp - Midnight Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering | Animal/Insects Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0137_04_CAC_4a5b1a8f-6aae-4c3c-ad19-40f538ff5789.jpg?v=1753321559",
+ "tags": [
+ "20.5In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Bird",
+ "Blue",
+ "Blush Pink",
+ "Botanical",
+ "Charcoal Grey",
+ "Chinoiserie",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Dark Blue",
+ "Dining Room",
+ "display_variant",
+ "Eclectic",
+ "Fish",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Midnight",
+ "Navy",
+ "Non Woven - 100%",
+ "Non-woven",
+ "Off-white",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Sage Green",
+ "Serene",
+ "Tropical",
+ "United Kingdom",
+ "W0137/04.Cac.0",
+ "Wallcovering",
+ "Waterlily Wp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127836"
+ },
+ {
+ "sku": "hanover-faux-embossed-faux-linen-walls-xwy-53157",
+ "handle": "hanover-faux-embossed-faux-linen-walls-xwy-53157",
+ "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-nettle.jpg?v=1777480766",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Faux Linen",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "LEED",
+ "Leed Walls",
+ "Light Beige",
+ "Linen",
+ "Linen Look",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Solid",
+ "Tan",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Woven",
+ "Yellow"
+ ],
+ "max_price": 15.06,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hanover-faux-embossed-faux-linen-walls-xwy-53157"
+ },
+ {
+ "sku": "eur-80159-ncw4154-designer-wallcoverings-los-angeles",
+ "handle": "eur-80159-ncw4154-designer-wallcoverings-los-angeles",
+ "title": "Mey Fern 01 - Khaki Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497763891.jpg?v=1775522475",
+ "tags": [
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Brick",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gold",
+ "Green",
+ "Leaf",
+ "Light Brown",
+ "Living Room",
+ "Mey Fern",
+ "NCW4154",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Palm",
+ "Paper",
+ "ROSSLYN",
+ "Sage",
+ "Serene",
+ "Textured",
+ "Tropical",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80159-ncw4154-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "tigressa-bargea-wallpaper-xb3-66523",
+ "handle": "tigressa-bargea-wallpaper-xb3-66523",
+ "title": "Tigressa Bargea Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4d02c40fdd78a6d797b501e8fe2127d4.jpg?v=1775129140",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Entryway",
+ "Geometric",
+ "Light Tan",
+ "Living Room",
+ "Office",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Scandinavian",
+ "Tan",
+ "Textural",
+ "Textured",
+ "Tigressa Bargea Wallcovering",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 37.2,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tigressa-bargea-wallpaper-xb3-66523"
+ },
+ {
+ "sku": "dwtt-72125-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72125-designer-wallcoverings-los-angeles",
+ "title": "Akoya Pearl Grey Cream Pearl | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T3639.jpg?v=1733892687",
+ "tags": [
+ "Architectural",
+ "beige",
+ "cream",
+ "Cream Pearl",
+ "Grasscloth Resource 2",
+ "Pattern",
+ "T3639",
+ "Texture",
+ "Thibaut",
+ "Traditional",
+ "Transitional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72125-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "hollywood-getty-texture-xhw-2010300",
+ "handle": "hollywood-getty-texture-xhw-2010300",
+ "title": "Hollywood Getty Texture | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/rivoli-sonia_cad7ccd8-4459-44dd-aeb1-388400579384.jpg?v=1777481533",
+ "tags": [
+ "24.96 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Getty Texture",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Mfr-Image-Refreshed",
+ "Minimalist",
+ "Off-white",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Stripe",
+ "Texture",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 24.96 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\""
+ ],
+ "max_price": 62.33,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-getty-texture-xhw-2010300"
+ },
+ {
+ "sku": "dwkk-137695",
+ "handle": "dwkk-137695",
+ "title": "Ferns - Teal By G P & J Baker | Signature Ii Wallpapers |Botanical & Floral Wallcovering Print",
+ "vendor": "GP & J Baker",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/BW45044_12_10468b62-c33f-4d82-b001-f3be48a5a244.jpg?v=1753303637",
+ "tags": [
+ "20.488In",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Beige",
+ "Biophilic",
+ "Botanical",
+ "Botanical & Floral",
+ "Bw45044.12.0",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "display_variant",
+ "Dusty Rose",
+ "Ferns",
+ "G P & J Baker",
+ "Golden Brown",
+ "GP & J Baker",
+ "Green",
+ "Hallway",
+ "Leaf",
+ "Living Room",
+ "Non Woven - 100%",
+ "Organic",
+ "Paper",
+ "Pattern",
+ "Pink",
+ "Print",
+ "Seafoam Green",
+ "Signature Ii Wallpapers",
+ "Snail",
+ "Teal",
+ "Traditional",
+ "United Kingdom",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-137695"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47311",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47311",
+ "title": "Berkeley Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xju-47311-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704383",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Cream",
+ "Glamorous",
+ "Gold",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Paper",
+ "Regencycore",
+ "Solid",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47311"
+ },
+ {
+ "sku": "versace-plain-metallic-pink-wallcovering-versace",
+ "handle": "versace-plain-metallic-pink-wallcovering-versace",
+ "title": "Versace Plain Metallic Pink Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/47413ebeaa8c17791fd641dc54701b52.jpg?v=1773706481",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "display_variant",
+ "Hallway",
+ "Italian",
+ "Light Beige",
+ "Light Pink",
+ "Living Room",
+ "Luxury",
+ "Pale Pink",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace Plain Metallic",
+ "Versace Plain Metallic Pink Wallcovering",
+ "Versace VI",
+ "Wallcovering",
+ "Walnut Brown"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/versace-plain-metallic-pink-wallcovering-versace"
+ },
+ {
+ "sku": "dwtt-71899-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71899-designer-wallcoverings-los-angeles",
+ "title": "Bankun Raffia Coral | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/T14141.jpg?v=1762235066",
+ "tags": [
+ "Architectural",
+ "coral",
+ "Pattern",
+ "peach",
+ "T14141",
+ "Texture",
+ "Texture Resource 4",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71899-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2500",
+ "handle": "faux-leaf-squares-fls-2500",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2500-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711855",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Tan",
+ "Textured",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 34.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2500"
+ },
+ {
+ "sku": "dwc-1001603",
+ "handle": "dwc-1001603",
+ "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_4693307654195.jpg?v=1775521057",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Floral",
+ "Gray",
+ "NCW4304-03",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001603"
+ },
+ {
+ "sku": "leena-pink-loopy-hoops-wallpaper-cca-83013",
+ "handle": "leena-pink-loopy-hoops-wallpaper-cca-83013",
+ "title": "Leena Pink Loopy Hoops Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7b306090182738e0a9d84612c4cbf500.jpg?v=1572309965",
+ "tags": [
+ "Architectural",
+ "Commercial",
+ "Contemporary",
+ "Discontinued",
+ "Easy Walls",
+ "Geometric",
+ "LA Walls",
+ "Lattice",
+ "Paper",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Texture",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/leena-pink-loopy-hoops-wallpaper-cca-83013"
+ },
+ {
+ "sku": "dwkk-127806",
+ "handle": "dwkk-127806",
+ "title": "Emerald Forest Wp - Midnight Multi By Clarke And Clarke | Clarke & Clarke Botanical Wonders Wallcovering |Animal/Insects Novelty Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0129_03_CAC_30d1c173-50c1-4883-8aad-6a6d2f4b827c.jpg?v=1753321614",
+ "tags": [
+ "20.5In",
+ "Animal",
+ "Animal/Insects",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Bedroom",
+ "Blue",
+ "Botanical",
+ "Brown",
+ "Burnt Sienna",
+ "Butterflies",
+ "Clarke & Clarke Botanical Wonders Wallcovering",
+ "Clarke And Clarke",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Dark Academia",
+ "Dining Room",
+ "display_variant",
+ "Dragonflies",
+ "Eclectic",
+ "Emerald Forest Wp",
+ "Fauna",
+ "Floral",
+ "Flowers",
+ "Forest Green",
+ "Green",
+ "Leaves",
+ "Living Room",
+ "Midnight",
+ "Navy",
+ "Non Woven - 100%",
+ "Novelty",
+ "Olive Green",
+ "Orange",
+ "Paper",
+ "Print",
+ "Snakes",
+ "Sophisticated",
+ "Traditional",
+ "United Kingdom",
+ "Victorian",
+ "W0129/03.Cac.0",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127806"
+ },
+ {
+ "sku": "dwtt-71445-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71445-designer-wallcoverings-los-angeles",
+ "title": "Andreas Stripe Aqua and Beige | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T14238_b20bd4c7-438b-4909-a88c-761a2113c6ee.jpg?v=1733894064",
+ "tags": [
+ "Aqua and Beige",
+ "Architectural",
+ "beige",
+ "blue",
+ "Chinoiserie",
+ "cream",
+ "gray",
+ "Imperial Garden",
+ "Pattern",
+ "Scenic",
+ "T14238",
+ "Thibaut",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71445-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58151",
+ "handle": "artisma-croco-vinyl-dwx-58151",
+ "title": "Artisma Croco Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58151-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699257",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Print",
+ "Animal Skin",
+ "Animals",
+ "Architectural",
+ "Beige",
+ "Blue",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Conference Room",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crocodile",
+ "Damask",
+ "Dark Brown",
+ "Durable",
+ "Easy To Clean",
+ "Embossed",
+ "Embossed Texture",
+ "Emerald Green",
+ "Faux Leather",
+ "Glamorous",
+ "Gold",
+ "Gray",
+ "Green",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Luxe",
+ "Luxurious",
+ "Minimalist",
+ "Modern",
+ "Navy Blue",
+ "Neutral",
+ "Paper",
+ "Regencycore",
+ "Restaurant",
+ "Scratch Resistant",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Traditional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Width",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58151"
+ },
+ {
+ "sku": "seine-marne-durable-vinyl-dur-72124",
+ "handle": "seine-marne-durable-vinyl-dur-72124",
+ "title": "Seine Marne Durable Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/DUR-72124-sample-clean.jpg?v=1774484481",
+ "tags": [
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Durable Type 2 Vinyl",
+ "Geometric",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Pale Beige",
+ "Serene",
+ "Textured",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/seine-marne-durable-vinyl-dur-72124"
+ },
+ {
+ "sku": "montpelier-wallpaper-xp4-68081",
+ "handle": "montpelier-wallpaper-xp4-68081",
+ "title": "Montpelier | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/36d63ee5fb90a16761e9c80fdc467585.jpg?v=1733882425",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Charcoal",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Concrete",
+ "Contemporary",
+ "Dark Gray",
+ "Gray",
+ "Green",
+ "Greenish Gray",
+ "Grey",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Industrial",
+ "Light Gray",
+ "Living Room",
+ "Montpelier",
+ "Organic",
+ "Organic Modern",
+ "Pale Beige",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Polyester",
+ "Rustic",
+ "Sage",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood",
+ "wood pulp"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/montpelier-wallpaper-xp4-68081"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_blr-5017-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_blr-5017-jpg",
+ "title": "Ballari - Parchment | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/blr-5017.jpg?v=1762288047",
+ "tags": [
+ "100% Vinyl",
+ "Abstract",
+ "Architectural",
+ "Ballari",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Cream",
+ "Parchment",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_blr-5017-jpg"
+ },
+ {
+ "sku": "whittier-way-twisted-paper-weave-hlw-73158",
+ "handle": "whittier-way-twisted-paper-weave-hlw-73158",
+ "title": "Whittier Way - Twisted Paper Weave | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/HLW-73158-sample-clean.jpg?v=1774483793",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Minimalist",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "stripe",
+ "Taupe",
+ "textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wood Grain",
+ "Yellow"
+ ],
+ "max_price": 43.22,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/whittier-way-twisted-paper-weave-hlw-73158"
+ },
+ {
+ "sku": "coldwater-hills-panels-hlw-73057",
+ "handle": "coldwater-hills-panels-hlw-73057",
+ "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-73057-sample-clean.jpg?v=1774483253",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Coldwater Hills",
+ "Color: Green",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Gray",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Off-white",
+ "Rustic",
+ "Sage",
+ "Seafoam Green",
+ "Serene",
+ "Steel Blue",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 111.26,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/coldwater-hills-panels-hlw-73057"
+ },
+ {
+ "sku": "lanvin-arpergeo-wallpaper-xb8-66599",
+ "handle": "lanvin-arpergeo-wallpaper-xb8-66599",
+ "title": "Lanvin Arpergeo Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/375df90dec8e0f74a8a6ef3f32da27ed.jpg?v=1775131476",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Coastal",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Lanvin Arpergeo Wallcovering",
+ "Light Beige",
+ "Light Green",
+ "Living Room",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Spa",
+ "Stripe",
+ "Tan",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering"
+ ],
+ "max_price": 38.55,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/lanvin-arpergeo-wallpaper-xb8-66599"
+ },
+ {
+ "sku": "la-roche-durable-vinyl-dur-72076",
+ "handle": "la-roche-durable-vinyl-dur-72076",
+ "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-72076-sample-clean.jpg?v=1774484300",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Grey",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Durable Type 2 Vinyl",
+ "Dusty Rose",
+ "Grey",
+ "Hallway",
+ "Hollywood Textures Vol. 1",
+ "Hollywood Wallcoverings",
+ "Light Brown",
+ "Linen Texture",
+ "Living Room",
+ "Pink",
+ "Rustic",
+ "Serene",
+ "Silk",
+ "Silk Texture",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/la-roche-durable-vinyl-dur-72076"
+ },
+ {
+ "sku": "pearl-bay-vertical-faux-durable-walls-xwh-52365",
+ "handle": "pearl-bay-vertical-faux-durable-walls-xwh-52365",
+ "title": "Pearl Bay Vertical Faux Durable | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xwh-52365-sample-pearl-bay-vertical-faux-durable-hollywood-wallcoverings.jpg?v=1775728982",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux",
+ "Faux Finish",
+ "Geometric",
+ "Hollywood Wallcoverings",
+ "Leed Walls",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Organic Modern",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Vinyl Wallcovering",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/pearl-bay-vertical-faux-durable-walls-xwh-52365"
+ },
+ {
+ "sku": "berkeley-type-ii-vinyl-wallcovering-xju-47302",
+ "handle": "berkeley-type-ii-vinyl-wallcovering-xju-47302",
+ "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-47302-sample-berkeley-type-ii-vinyl-hollywood-wallcoverings.jpg?v=1775704134",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Berkeley Type 2 Vinyl Wallcovering",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Linen Texture",
+ "Living Room",
+ "Minimalist",
+ "Office",
+ "Seafoam",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/berkeley-type-ii-vinyl-wallcovering-xju-47302"
+ },
+ {
+ "sku": "dwtt-70963-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-70963-designer-wallcoverings-los-angeles",
+ "title": "Rain Water Pink and Coral | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10095_5e42eba2-5b8c-4639-b752-f0ad09aff7ae.jpg?v=1733894973",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "beige",
+ "Contemporary",
+ "coral",
+ "orange",
+ "Pattern",
+ "pink",
+ "Pink and Coral",
+ "T10095",
+ "Thibaut",
+ "Tropics",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-70963-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80413-ncw4395-designer-wallcoverings-los-angeles",
+ "handle": "eur-80413-ncw4395-designer-wallcoverings-los-angeles",
+ "title": "Kingsley Fans 03 - Gold Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507168307.jpg?v=1775523930",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Kingsley Fans",
+ "Living Room",
+ "NCW4395",
+ "NCW4395-03",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Sage",
+ "Serene",
+ "Traditional",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80413-ncw4395-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80360-ncw4352-designer-wallcoverings-los-angeles",
+ "handle": "eur-80360-ncw4352-designer-wallcoverings-los-angeles",
+ "title": "Bonnelles Diamond 04 - Bisque Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513505398835.jpg?v=1775523607",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bonnelles Diamond",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Geometric",
+ "Hallway",
+ "LES INDIENNES",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "NCW4352",
+ "NCW4352-04",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Paper",
+ "Serene",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80360-ncw4352-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "puna-drive-natural-grassweave-hlw-73108",
+ "handle": "puna-drive-natural-grassweave-hlw-73108",
+ "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-73108-sample-clean.jpg?v=1774483477",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Brown",
+ "Coastal",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Farmhouse",
+ "Grasscloth",
+ "Grasscloth Weave",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Natural",
+ "Naturally Glamorous",
+ "Organic",
+ "Organic Modern",
+ "Rustic",
+ "Textured",
+ "Wallcovering",
+ "White",
+ "Woven"
+ ],
+ "max_price": 41.7,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/puna-drive-natural-grassweave-hlw-73108"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2765",
+ "handle": "faux-leaf-squares-fls-2765",
+ "title": "Faux Leaf Squares | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2765-sample-faux-leaf-squares-hollywood-wallcoverings.jpg?v=1775712045",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Almond",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Faux Finish",
+ "Faux Leaf Squares",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Light Beige",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Oatmeal",
+ "Office",
+ "Serene",
+ "Solid",
+ "Textured",
+ "Transitional",
+ "vinyl",
+ "Wallcovering",
+ "Wide Serviceable Texture - Cleanable",
+ "Yellow"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2765"
+ },
+ {
+ "sku": "dwtt-80257-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-80257-designer-wallcoverings-los-angeles",
+ "title": "Ensbury Fern Green Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-bedroom-dwtt-80257-designer-wallcoverings-los-angeles.jpg?v=1771786945",
+ "tags": [
+ "AT57826",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "Bristol",
+ "Calm",
+ "Champagne",
+ "Contemporary",
+ "Cream",
+ "Dining Room",
+ "Ensbury Fern",
+ "Entryway",
+ "Foliage",
+ "Forest Green",
+ "Green",
+ "Ivory",
+ "Living Room",
+ "Medium Scale",
+ "Mint Green",
+ "Muted",
+ "Natural",
+ "Off-White",
+ "Office",
+ "Pale Green",
+ "Pattern",
+ "Peaceful",
+ "Pearl White",
+ "Powder Room",
+ "Sage Green",
+ "Seafoam",
+ "Serene",
+ "Sophisticated",
+ "Thibaut Wallcovering",
+ "Traditional",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 138.46,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-80257-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "tahiti-scenic-wallpaper-trf-56819",
+ "handle": "tahiti-scenic-wallpaper-trf-56819",
+ "title": "Tahiti Scenic | Jeffrey Stevens",
+ "vendor": "Jeffrey Stevens",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/18d3acd66537acaab3c679f91c322232.jpg?v=1750789763",
+ "tags": [
+ "Animal/Insects",
+ "Aquamarine",
+ "Architectural",
+ "Asian",
+ "Beige",
+ "Birds",
+ "Botanical",
+ "Bridge",
+ "bright",
+ "cabana",
+ "Chinoiserie",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "dark grey",
+ "Discontinued",
+ "floral",
+ "flowers",
+ "Gray",
+ "Jeffrey Stevens",
+ "light aqua",
+ "medium scale",
+ "Modern",
+ "Modern Tropics",
+ "Multi",
+ "Non-Woven",
+ "novelty",
+ "overall",
+ "pagoda",
+ "Paper",
+ "Pastel",
+ "Prepasted - Washable - Strippable",
+ "scenic",
+ "Seafoam Green",
+ "Series: York",
+ "Taupe",
+ "Toile",
+ "Traditional",
+ "tropical",
+ "USA",
+ "Wallcovering",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 60.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/tahiti-scenic-wallpaper-trf-56819"
+ },
+ {
+ "sku": "eur-80412-ncw4395-designer-wallcoverings-los-angeles",
+ "handle": "eur-80412-ncw4395-designer-wallcoverings-los-angeles",
+ "title": "Kingsley Fans 02 - Umber Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507135539.jpg?v=1775523923",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASHDOWN",
+ "Bedroom",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Dark Brown",
+ "Floral",
+ "Hallway",
+ "Japonisme",
+ "Kingsley Fans",
+ "Living Room",
+ "NCW4395",
+ "NCW4395-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic",
+ "Organic Modern",
+ "Paper",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80412-ncw4395-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "eur-80305-ncw4301-designer-wallcoverings-los-angeles",
+ "handle": "eur-80305-ncw4301-designer-wallcoverings-los-angeles",
+ "title": "Beau Rivage 02 - Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513503006771.jpg?v=1775523268",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Beau Rivage",
+ "Bedroom",
+ "Charcoal Grey",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Dusty Rose",
+ "Geometric",
+ "Gray",
+ "Hallway",
+ "LES REVES",
+ "Living Room",
+ "Mid-century",
+ "Mid-Century Modern",
+ "NCW4301",
+ "NCW4301-02",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Serene",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80305-ncw4301-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwc-1001643",
+ "handle": "dwc-1001643",
+ "title": "Nina Campbell Wallcovering",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_4693310144563.jpg?v=1775521318",
+ "tags": [
+ "Abstract",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Art Deco",
+ "Botanical",
+ "Brown",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Coral",
+ "Gray",
+ "NCW4353-01",
+ "Nina Campbell",
+ "Nina Campbell Wallcovering Wallcovering",
+ "Paper",
+ "Pink",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwc-1001643"
+ },
+ {
+ "sku": "camila-green-modern-damask-wallpaper-wallpaper-cca-82839",
+ "handle": "camila-green-modern-damask-wallpaper-wallpaper-cca-82839",
+ "title": "Camila Green Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4a3b22a26c70be0fe13d50599b82cda0.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Green",
+ "LA Walls",
+ "Modern",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-green-modern-damask-wallpaper-wallpaper-cca-82839"
+ },
+ {
+ "sku": "eur-80294-ncw4277-designer-wallcoverings-los-angeles",
+ "handle": "eur-80294-ncw4277-designer-wallcoverings-los-angeles",
+ "title": "Meredith 04 - Coral Pink Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513502580787.jpg?v=1775523211",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Coral",
+ "COROMANDEL",
+ "Damask",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Living Room",
+ "Meredith",
+ "NCW4277",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off-white",
+ "Paper",
+ "Pink",
+ "Red",
+ "Sophisticated",
+ "Textured",
+ "Traditional",
+ "Victorian",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80294-ncw4277-designer-wallcoverings-los-angeles"
+ },
+ {
+ "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": "dwtt-72375-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-72375-designer-wallcoverings-los-angeles",
+ "title": "Brock Trellis Aqua | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T6020.jpg?v=1733892278",
+ "tags": [
+ "Anniversary",
+ "Aqua",
+ "Architectural",
+ "Botanical",
+ "cream",
+ "Floral",
+ "green",
+ "light blue",
+ "Pattern",
+ "red",
+ "T6020",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-72375-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "dwkk-139768",
+ "handle": "dwkk-139768",
+ "title": "Corally - White/Worth Blue By Lee Jofa | Lilly Pulitzer Wallpapers | Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2016102_115_6f4e7016-db2e-4500-987e-f6a1edbd980a.jpg?v=1753291349",
+ "tags": [
+ "27In",
+ "Air",
+ "Architectural",
+ "Archived-Triple-Verified",
+ "Archived-Vendor-Gone",
+ "Blue",
+ "Botanical",
+ "Brick",
+ "Cloud",
+ "Coastal",
+ "Commercial",
+ "Corally",
+ "Denim",
+ "display_variant",
+ "Ice",
+ "Lee Jofa",
+ "Light Blue",
+ "Lilly Pulitzer Wallpapers",
+ "Luxury",
+ "P2016102.115.0",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Periwinkle",
+ "Powder",
+ "Print",
+ "Smoke",
+ "Steel",
+ "United States",
+ "Wallcovering",
+ "White",
+ "White/Worth"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139768"
+ },
+ {
+ "sku": "wolfgordonwallcovering_dwwg_hug-3314_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_hug-3314_8-jpg",
+ "title": "Hugo - Rose | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/hug-3314_8.jpg?v=1762297273",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Herringbone",
+ "Hugo",
+ "Pink",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_hug-3314_8-jpg"
+ },
+ {
+ "sku": "barocco-lavender-wallcovering-versace-2",
+ "handle": "barocco-lavender-wallcovering-versace-2",
+ "title": "Barocco Lavender Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/5bd9d4884aa5c5b7eba0498c6e80d876.jpg?v=1773710428",
+ "tags": [
+ "[Object Object]",
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Barocco",
+ "Barocco Lavender Wallcovering",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Pink",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Damask",
+ "display_variant",
+ "Grandmillennial",
+ "Italian",
+ "Light Pink",
+ "Living Room",
+ "Luxe",
+ "Luxury",
+ "Needs-Image",
+ "Pale Pink",
+ "Paper",
+ "Paste the wall",
+ "Primary Suite",
+ "Rose Quartz",
+ "Serene",
+ "Traditional",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/barocco-lavender-wallcovering-versace-2"
+ },
+ {
+ "sku": "bleinheim-lanvino-wallpaper-xe7-66840",
+ "handle": "bleinheim-lanvino-wallpaper-xe7-66840",
+ "title": "Bleinheim Lanvino Wallcovering",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/002675df9658b7873206fcf96dba8f83.jpg?v=1572309567",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Bleinheim Lanvino Wallcovering",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Light Beige",
+ "Paper",
+ "Phillip Romano Commercial",
+ "Phillipe Romano",
+ "Phillipe Romano Vinyls",
+ "Stripe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "vinyl",
+ "Vinyls",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 37.27,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bleinheim-lanvino-wallpaper-xe7-66840"
+ },
+ {
+ "sku": "baroque-ornament-cream-silver-wallcovering-versace",
+ "handle": "baroque-ornament-cream-silver-wallcovering-versace",
+ "title": "Baroque Ornament Cream, Silver Wallcovering | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6ae9f17e781e6e9f49a83dc3528248e4.jpg?v=1773706284",
+ "tags": [
+ "A.S. Création",
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Baroque Ornament",
+ "Baroque Ornament Cream",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "display_variant",
+ "Floral",
+ "Grandmillennial",
+ "Italian",
+ "Light Beige",
+ "Living Room",
+ "Luxury",
+ "Off-white",
+ "Paste the wall",
+ "Silver Wallcovering",
+ "Sophisticated",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Trending Wallpaper Collection 2026",
+ "Versace",
+ "Versace Home",
+ "Versace VI",
+ "Vinyl",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 325.79,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/baroque-ornament-cream-silver-wallcovering-versace"
+ },
+ {
+ "sku": "dwtt-71974-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-71974-designer-wallcoverings-los-angeles",
+ "title": "Caballo Camel | Thibaut",
+ "vendor": "Thibaut",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/T10018_73ad6f00-70c3-47eb-94c6-666b6be7b94f.jpg?v=1733893037",
+ "tags": [
+ "Architectural",
+ "beige",
+ "Camel",
+ "cream",
+ "Damask",
+ "Neutral Resource",
+ "Pattern",
+ "T10018",
+ "Thibaut",
+ "Traditional",
+ "Unknown",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-71974-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "zoe-mountain-coco-texture-wallpaper-cca-83294",
+ "handle": "zoe-mountain-coco-texture-wallpaper-cca-83294",
+ "title": "Zoe Mountain Coco Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/997a2b24a3015b0c8d30bac3b84ad073.jpg?v=1572309984",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Faux",
+ "LA Walls",
+ "Light Brown",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/zoe-mountain-coco-texture-wallpaper-cca-83294"
+ },
+ {
+ "sku": "dwtt-81009-designer-wallcoverings-los-angeles",
+ "handle": "dwtt-81009-designer-wallcoverings-los-angeles",
+ "title": "Kimono Grey Wallcovering",
+ "vendor": "Anna French",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/room-living_room-dwtt-81009-designer-wallcoverings-los-angeles.jpg?v=1775070987",
+ "tags": [
+ "Abstract",
+ "AT9854",
+ "Bedroom",
+ "Calm",
+ "Charcoal",
+ "Charcoal Gray",
+ "Concrete",
+ "Contemporary",
+ "Cool",
+ "Cream",
+ "Dining Room",
+ "Dove Gray",
+ "Entryway",
+ "Forest Green",
+ "Geometric",
+ "Graphite",
+ "Green",
+ "Ivory",
+ "Jade",
+ "Kimono Geometric",
+ "Large Scale",
+ "Living Room",
+ "Mint Green",
+ "Modern",
+ "Moss",
+ "Nara",
+ "Off White",
+ "Office",
+ "Olive",
+ "Pattern",
+ "Pearl",
+ "Powder Blue",
+ "Powder Room",
+ "Sage Green",
+ "Seafoam",
+ "Serene",
+ "Silver",
+ "Sky Blue",
+ "Slate",
+ "Slate Gray",
+ "Sophisticated",
+ "Steel Blue",
+ "Stone",
+ "Thibaut Wallcovering",
+ "Transitional",
+ "Wallcovering"
+ ],
+ "max_price": 144.62,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwtt-81009-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "rangeley-mauve-new-avalon-stripe-wallpaper-cca-83124",
+ "handle": "rangeley-mauve-new-avalon-stripe-wallpaper-cca-83124",
+ "title": "Rangeley Mauve New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/e0469ce13e62d30fe3addf90c4dd7ae5.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Mauve",
+ "Prepasted",
+ "Purple",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-mauve-new-avalon-stripe-wallpaper-cca-83124"
+ },
+ {
+ "sku": "franny-pink-scroll-texture-wallpaper-cca-83033",
+ "handle": "franny-pink-scroll-texture-wallpaper-cca-83033",
+ "title": "Franny Pink Scroll Texture Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/47d4ab41fb08ec8734cdaed441b51fb6.jpg?v=1572309966",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Light Pink",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/franny-pink-scroll-texture-wallpaper-cca-83033"
+ },
+ {
+ "sku": "ventnor-vinyl-wallcovering-xqq-48560",
+ "handle": "ventnor-vinyl-wallcovering-xqq-48560",
+ "title": "Ventnor Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xqq-48560-sample-ventnor-vinyl-hollywood-wallcoverings.jpg?v=1775735700",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Living Room",
+ "Rustic",
+ "Stucco",
+ "Textured",
+ "Traditional",
+ "Ventnor Vinyl Wallcovering",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ventnor-vinyl-wallcovering-xqq-48560"
+ },
+ {
+ "sku": "fine-stripes-by-phillipe-romano-str-54877",
+ "handle": "fine-stripes-by-phillipe-romano-str-54877",
+ "title": "Fine Stripes by Phillipe Romano",
+ "vendor": "Phillipe Romano",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/76b4c0554cd76e4ab7ff1fef509c6447.jpg?v=1572310445",
+ "tags": [
+ "Architectural",
+ "Art Deco",
+ "Beige",
+ "Bling",
+ "Commercial",
+ "Cream",
+ "Geometric",
+ "Glass Bead",
+ "Paper",
+ "Pattern",
+ "Phillipe Romano",
+ "Phillipe Romano Prints",
+ "Prints",
+ "Stripe",
+ "Textured",
+ "Unpasted - Washable - Strippable",
+ "Usually In Stock",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 278.29,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fine-stripes-by-phillipe-romano-str-54877"
+ },
+ {
+ "sku": "harpswell-grey-herringbone-awning-stripe-wallpaper-cca-83156",
+ "handle": "harpswell-grey-herringbone-awning-stripe-wallpaper-cca-83156",
+ "title": "Harpswell Grey Herringbone Awning Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/7f71a0ce307d690542febe2582368ba9.jpg?v=1572309970",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "Herringbone",
+ "LA Walls",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 72.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/harpswell-grey-herringbone-awning-stripe-wallpaper-cca-83156"
+ },
+ {
+ "sku": "maidstone-type-ii-vinyl-wallcovering-xmh-47953",
+ "handle": "maidstone-type-ii-vinyl-wallcovering-xmh-47953",
+ "title": "Maidstone - Dusk Type II Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xmh-47953-sample-maidstone-dusk-type-ii-vinyl-hollywood.jpg?v=1775723337",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Beige",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Color: Yellow",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Cream",
+ "Faux Finish",
+ "Faux Stone",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Geometric",
+ "Grasscloth",
+ "Green",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Olive",
+ "Living Room",
+ "Maidstone Type 2 Vinyl Wallcovering",
+ "Office",
+ "Organic Modern",
+ "Sage Green",
+ "Serene",
+ "Stone Look",
+ "Stripe",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 20 oz",
+ "White",
+ "Wide Width",
+ "Width: 54\"",
+ "Yellow"
+ ],
+ "max_price": 55.38,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/maidstone-type-ii-vinyl-wallcovering-xmh-47953"
+ },
+ {
+ "sku": "ernesto-s-retro-geometric-scr-8064",
+ "handle": "ernesto-s-retro-geometric-scr-8064",
+ "title": "Ernesto's Retro Geometric",
+ "vendor": "Designer Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/05e7edd1f1b60eb86ed521517971da68.jpg?v=1572309106",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Designer Wallcoverings",
+ "Floral",
+ "Luxury Screen Printed Wallpapers",
+ "Paper",
+ "Screen Print",
+ "Textured",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "Whimsical Screen Prints Vol.1",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/ernesto-s-retro-geometric-scr-8064"
+ },
+ {
+ "sku": "dwkk-127666",
+ "handle": "dwkk-127666",
+ "title": "Echo - Pearl By Clarke And Clarke | Clarke & Clarke Reflections | Tone On Tone Wallcovering Print",
+ "vendor": "Clarke And Clarke",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W0055_04_CAC_6055ddb4-d71c-4f06-8b34-98fac6057728.jpg?v=1726037706",
+ "tags": [
+ "20.875In",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Clarke & Clarke Reflections",
+ "Clarke And Clarke",
+ "Class A Fire Rated",
+ "Commercial",
+ "contemporary",
+ "Cream",
+ "display_variant",
+ "Echo",
+ "Hallway",
+ "Living Room",
+ "Non-Woven",
+ "Off-white",
+ "Organic Modern",
+ "Pattern",
+ "Print",
+ "Serene",
+ "stripe",
+ "Taupe",
+ "textured",
+ "Tone On Tone",
+ "United Kingdom",
+ "W0055/04.Cac.0",
+ "Wallcovering",
+ "Wood Pulp - 74%;Binder - 13%;Polyester - 13%"
+ ],
+ "max_price": 179.53,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-127666"
+ },
+ {
+ "sku": "eur-80196-ncw4184-designer-wallcoverings-los-angeles",
+ "handle": "eur-80196-ncw4184-designer-wallcoverings-los-angeles",
+ "title": "Suzhou 03 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513499205683.jpg?v=1775522700",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Botanical",
+ "CATHAY",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Dining Room",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Gray",
+ "Green",
+ "Living Room",
+ "Multi",
+ "NCW4184",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Olive Green",
+ "Pale Pink",
+ "Paper",
+ "Pink",
+ "Rose Red",
+ "Seafoam Green",
+ "Serene",
+ "Suzhou",
+ "Traditional",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80196-ncw4184-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "under-water-waves-xuw-44146",
+ "handle": "under-water-waves-xuw-44146",
+ "title": "Under Water Waves | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xuw-44146-sample-under-water-waves-hollywood-wallcoverings.jpg?v=1775735562",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "ASTM E84 Class A",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Green",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Light Yellow",
+ "Living Room",
+ "Minimalist",
+ "Off-white",
+ "Organic Modern",
+ "Pale Beige",
+ "Sage",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 46.12,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/under-water-waves-xuw-44146"
+ },
+ {
+ "sku": "daytona-faux-embossed-durable-walls-xwc-53241",
+ "handle": "daytona-faux-embossed-durable-walls-xwc-53241",
+ "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-53241-sample-daytona-faux-embossed-durable-hollywood-wallcoverings.jpg?v=1775710145",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Cream",
+ "Embossed",
+ "Embossed Texture",
+ "Faux",
+ "Faux Finish",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Ivory",
+ "LEED",
+ "Leed Walls",
+ "Light Brown",
+ "Living Room",
+ "Minimalist",
+ "Serene",
+ "Stripe",
+ "Taupe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/daytona-faux-embossed-durable-walls-xwc-53241"
+ },
+ {
+ "sku": "capri-mint-floral-scroll-wallpaper-cca-83049",
+ "handle": "capri-mint-floral-scroll-wallpaper-cca-83049",
+ "title": "Capri Mint Floral Scroll Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4a33f1bda04dcbd176f80b7a0ea5d568.jpg?v=1572309967",
+ "tags": [
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "Flowers",
+ "Green",
+ "LA Walls",
+ "Pink",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Traditional",
+ "Vine",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 64.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/capri-mint-floral-scroll-wallpaper-cca-83049"
+ },
+ {
+ "sku": "camila-yellow-modern-damask-wallpaper-wallpaper-cca-82846",
+ "handle": "camila-yellow-modern-damask-wallpaper-wallpaper-cca-82846",
+ "title": "Camila Yellow Modern Damask Wallcovering Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/4165c756fdb0da14f063a646f8e0be21.jpg?v=1572309957",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "Floral",
+ "LA Walls",
+ "Modern",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04",
+ "Yellow"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/camila-yellow-modern-damask-wallpaper-wallpaper-cca-82846"
+ },
+ {
+ "sku": "dwkk-139956",
+ "handle": "dwkk-139956",
+ "title": "Baldwin Stripe Wp - Saffron Gold By Lee Jofa | Sarah Bartholomew Wallpapers | Stripes Wallcovering Print",
+ "vendor": "Lee Jofa",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/P2022100_4.jpg?v=1753302313",
+ "tags": [
+ "27In",
+ "Architectural",
+ "Baldwin Stripe Wp",
+ "Bedroom",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "display_variant",
+ "Farmhouse",
+ "Gold",
+ "Golden Yellow",
+ "Hallway",
+ "Lee Jofa",
+ "Living Room",
+ "Luxury",
+ "P2022100.4.0",
+ "Paper",
+ "Paper - 100%",
+ "Pattern",
+ "Print",
+ "Sarah Bartholomew Wallpapers",
+ "Stripe",
+ "Stripes",
+ "Traditional",
+ "Transitional",
+ "United States",
+ "Wallcovering",
+ "Warm",
+ "White"
+ ],
+ "max_price": 4.95,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/dwkk-139956"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58088",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58088",
+ "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-58088-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734122",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Living Room",
+ "Minimalist",
+ "Scrim",
+ "Serene",
+ "Tan",
+ "Taupe",
+ "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-58088"
+ },
+ {
+ "sku": "bird-chirping-weather-large-mural-by-retro-walls-rtr-37204",
+ "handle": "bird-chirping-weather-large-mural-by-retro-walls-rtr-37204",
+ "title": "Bird Chirping Weather Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/9d193d54b88a8bb91ec9e5ac9c76a0cf.jpg?v=1572309701",
+ "tags": [
+ "ANIMAL/INSECTS",
+ "Architectural",
+ "bird",
+ "Birds",
+ "Botanical",
+ "Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Floral",
+ "Green",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Multi",
+ "Mural",
+ "Paper",
+ "Pink",
+ "Traditional Whimsy",
+ "Wallcovering",
+ "Whimsical",
+ "White"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/bird-chirping-weather-large-mural-by-retro-walls-rtr-37204"
+ },
+ {
+ "sku": "eur-80170-ncw4156-designer-wallcoverings-los-angeles",
+ "handle": "eur-80170-ncw4156-designer-wallcoverings-los-angeles",
+ "title": "Montrose 05 - Pale Chartreuse Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513498255411.jpg?v=1775522549",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Dining Room",
+ "Floral",
+ "French Country",
+ "Grandmillennial",
+ "Green",
+ "Living Room",
+ "Montrose",
+ "NCW4156",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Off White",
+ "Paper",
+ "ROSSLYN",
+ "Sage Green",
+ "Scroll",
+ "Sophisticated",
+ "Traditional",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80170-ncw4156-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "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": "hollywood-speckled-solids-xhw-2010227",
+ "handle": "hollywood-speckled-solids-xhw-2010227",
+ "title": "Hollywood Speckled Solids | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/xhw-2010227-sample-hollywood-speckled-solids-hollywood-wallcoverings.jpg?v=1775718690",
+ "tags": [
+ "Beige",
+ "Bronze",
+ "Coral",
+ "Faux Wood",
+ "Maroon",
+ "Navy",
+ "Olive",
+ "Peach",
+ "Plum",
+ "Silver",
+ "Teal",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "USA",
+ "Wallcovering"
+ ],
+ "max_price": 12.6,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-speckled-solids-xhw-2010227"
+ },
+ {
+ "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": "wolfgordonwallcovering_dwwg_mru-3288_8-jpg",
+ "handle": "wolfgordonwallcovering_dwwg_mru-3288_8-jpg",
+ "title": "Marlu - Blush | Wolf Gordon Wallcoverings",
+ "vendor": "Wolf Gordon",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/mru-3288_8.jpg?v=1762301319",
+ "tags": [
+ "100% Vinyl",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract",
+ "Geometric",
+ "Light Gray",
+ "Marlu",
+ "Pink",
+ "Textured",
+ "Vinyl",
+ "Wallcovering",
+ "Wolf Gordon",
+ "Wolf Gordon Wallcoverings"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/wolfgordonwallcovering_dwwg_mru-3288_8-jpg"
+ },
+ {
+ "sku": "last-night-large-mural-by-retro-walls-rtr-37206",
+ "handle": "last-night-large-mural-by-retro-walls-rtr-37206",
+ "title": "Last Night Large Mural by Retro Walls",
+ "vendor": "Traditional Whimsy",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/f15b961cf4f733f08dc4fa059bb99477.jpg?v=1572309701",
+ "tags": [
+ "Abstract",
+ "Animal/Insects",
+ "Architectural",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Fish",
+ "Floral",
+ "Heavy-duty Wallcovering with paper top-layer and non-woven backing // Colourfast and washable with a soft cloth // Butted seam (but",
+ "Mural",
+ "Pink",
+ "Purple",
+ "Traditional Whimsy",
+ "Vinyl",
+ "Wallcovering",
+ "Whimsical"
+ ],
+ "max_price": 94,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/last-night-large-mural-by-retro-walls-rtr-37206"
+ },
+ {
+ "sku": "rangeley-grey-new-avalon-stripe-wallpaper-cca-83127",
+ "handle": "rangeley-grey-new-avalon-stripe-wallpaper-cca-83127",
+ "title": "Rangeley Grey New Avalon Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/2b9ad057d97bfcdea389eba85283f7e4.jpg?v=1572309969",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Damask",
+ "Damasks",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/rangeley-grey-new-avalon-stripe-wallpaper-cca-83127"
+ },
+ {
+ "sku": "eur-80426-ncw4491-designer-wallcoverings-los-angeles",
+ "handle": "eur-80426-ncw4491-designer-wallcoverings-los-angeles",
+ "title": "Almora 01 - Green Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513507627059.jpg?v=1775524017",
+ "tags": [
+ "Almora",
+ "Architectural",
+ "Bedroom",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Cottagecore",
+ "Cream",
+ "Dining Room",
+ "Dusty Rose",
+ "English Country",
+ "Floral",
+ "Grandmillennial",
+ "Green",
+ "Linen",
+ "Living Room",
+ "Mustard Yellow",
+ "NCW4491",
+ "NCW4491-01",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Paper",
+ "Pink",
+ "Rose Pink",
+ "Sage Green",
+ "Serene",
+ "SIGNATURE COLLECTION",
+ "Traditional",
+ "Vine",
+ "Wallcovering",
+ "White",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80426-ncw4491-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "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": "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": "eur-80157-ncw4152-designer-wallcoverings-los-angeles",
+ "handle": "eur-80157-ncw4152-designer-wallcoverings-los-angeles",
+ "title": "Lochwood 04 - Off-White Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513497698355.jpg?v=1775522461",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Biophilic",
+ "Botanical",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "Gray",
+ "Grey",
+ "Hallway",
+ "Lavender",
+ "Light Grey",
+ "Living Room",
+ "Lochwood",
+ "NCW4152",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Non-woven",
+ "Off-white",
+ "Organic Modern",
+ "Paper",
+ "Purple",
+ "ROSSLYN",
+ "Scenic",
+ "Serene",
+ "Slate Blue",
+ "Traditional",
+ "Wallcovering",
+ "Watercolor"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80157-ncw4152-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "faux-leaf-squares-fls-2744",
+ "handle": "faux-leaf-squares-fls-2744",
+ "title": "Faux Leaf Squares Wallpaper | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/fls-2744-sample-faux-leaf-squares-wallpaper-hollywood-wallcoverings.jpg?v=1775711982",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Commercial",
+ "Cream",
+ "Faux Finish",
+ "Hollywood Wallcoverings",
+ "Industrial Elegance",
+ "Khaki",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "White",
+ "Wide Serviceable Texture - Cleanable"
+ ],
+ "max_price": 31.92,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/faux-leaf-squares-fls-2744"
+ },
+ {
+ "sku": "artisma-croco-vinyl-dwx-58145",
+ "handle": "artisma-croco-vinyl-dwx-58145",
+ "title": "Artisma Croco Vinyl | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/dwx-58145-sample-artisma-croco-vinyl-hollywood-wallcoverings.jpg?v=1775699056",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal Skin",
+ "Animal/Insects",
+ "Animals",
+ "Architectural",
+ "Bathroom",
+ "Beige",
+ "Brown",
+ "Class A Fire Rated",
+ "Color: Brown",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Crocodile",
+ "Durable",
+ "Embossed",
+ "Embossed Texture",
+ "Faux Leather",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Living Room",
+ "Neutral",
+ "Oatmeal",
+ "Organic",
+ "Organic Modern",
+ "Reptile",
+ "Residential",
+ "Rustic",
+ "Sand",
+ "Stone",
+ "Tan",
+ "Taupe",
+ "Texture",
+ "Textured",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/artisma-croco-vinyl-dwx-58145"
+ },
+ {
+ "sku": "hollywood-contemporary-coast-xhw-2010372",
+ "handle": "hollywood-contemporary-coast-xhw-2010372",
+ "title": "Hollywood Contemporary Coast | Hollywood Wallcoverings",
+ "vendor": "Hollywood Wallcoverings",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/XHW-2010372-sample-clean.jpg?v=1774482616",
+ "tags": [
+ "35.04 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "Abstract",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Baby Blue",
+ "Background Color Blue",
+ "Bathroom",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Coastal",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Extra Heavy Duty",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Hallway",
+ "Healthcare",
+ "Heavy Duty",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Light Sky Blue",
+ "Minimalist",
+ "Modern",
+ "Organic Modern",
+ "Samantha",
+ "Serene",
+ "Textured",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "USA",
+ "Vinyl",
+ "Wallcovering",
+ "Warranty Available",
+ "Weight: 35.04 oz",
+ "Wide Width",
+ "Width: 54\"",
+ "Wood",
+ "Wood Look"
+ ],
+ "max_price": 96.58,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/hollywood-contemporary-coast-xhw-2010372"
+ },
+ {
+ "sku": "castine-beige-tuscan-stripe-wallpaper-cca-83213",
+ "handle": "castine-beige-tuscan-stripe-wallpaper-cca-83213",
+ "title": "Castine Beige Tuscan Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1dfe10718aeca078572978f155634479.jpg?v=1572309973",
+ "tags": [
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Marble",
+ "Prepasted",
+ "Series: Brewster",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Tan",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 75.49,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/castine-beige-tuscan-stripe-wallpaper-cca-83213"
+ },
+ {
+ "sku": "steuben-cream-turf-stripe-wallpaper-cca-83171",
+ "handle": "steuben-cream-turf-stripe-wallpaper-cca-83171",
+ "title": "Steuben Cream Turf Stripe Wallcovering",
+ "vendor": "LA Walls",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/1eb2e5473289ca300ebdd101078351d9.jpg?v=1572309971",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Cream",
+ "Discontinued",
+ "Easy Walls",
+ "LA Walls",
+ "Off-White",
+ "Paper",
+ "Prepasted",
+ "Series: Brewster",
+ "Steuben Cream Turf Stripe Wallcovering",
+ "Stripe",
+ "Stripes",
+ "Strippable",
+ "Textured",
+ "Traditional",
+ "Vinyl",
+ "Wallcovering",
+ "Washable",
+ "White",
+ "YB-Discontinued-2026-04"
+ ],
+ "max_price": 79.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/steuben-cream-turf-stripe-wallpaper-cca-83171"
+ },
+ {
+ "sku": "sophie-s-scrim-wallcovering-dwx-58095",
+ "handle": "sophie-s-scrim-wallcovering-dwx-58095",
+ "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-58095-sample-sophie-s-scrim-hollywood-wallcoverings.jpg?v=1775734310",
+ "tags": [
+ "54\" Width",
+ "Abstract",
+ "Animal",
+ "Architectural",
+ "Basketweave",
+ "Bedroom",
+ "Beige",
+ "Class A Fire Rated",
+ "Color: Beige",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Contract",
+ "Contract Wallcovering",
+ "Cream",
+ "Embossed Texture",
+ "Geometric",
+ "Hallway",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Insects",
+ "Light Beige",
+ "Living Room",
+ "Minimalist",
+ "Scrim",
+ "Textile Weave",
+ "Texture",
+ "Textured",
+ "Transitional",
+ "Tropicana Durable Vinyls",
+ "Type 2",
+ "Type 2 Durable Vinyl",
+ "Type 2 Vinyl",
+ "Vinyl",
+ "Wallcovering",
+ "Warm",
+ "Wide Width"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/sophie-s-scrim-wallcovering-dwx-58095"
+ },
+ {
+ "sku": "barnard-type-ii-vinyl-wallcovering-xjp-47234",
+ "handle": "barnard-type-ii-vinyl-wallcovering-xjp-47234",
+ "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/batiste-plum.jpg?v=1777480109",
+ "tags": [
+ "20 oz",
+ "54 Inch Width",
+ "54\" Width",
+ "ACT Colorfastness",
+ "ACT Compliant",
+ "ACT Crocking",
+ "ACT Crocking Tested",
+ "ACT Flammability",
+ "Architectural",
+ "Background Color Purple",
+ "Beige",
+ "Burgundy",
+ "Class A Fire Rated",
+ "Color: Purple",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Commercial Wallcoverings",
+ "Conference Room",
+ "Contemporary",
+ "Contract Grade",
+ "Contract Wallcovering",
+ "Faux Finish",
+ "Faux Wood",
+ "Fire Rated",
+ "Flame Certificate Available",
+ "Glamorous",
+ "Gold",
+ "Healthcare",
+ "Hollywood Wallcoverings",
+ "Hospitality",
+ "Hotel Lobby",
+ "Living Room",
+ "Luxe",
+ "Luxurious",
+ "Mauve",
+ "Mfr-Image-Refreshed",
+ "Paper",
+ "Pink",
+ "Purple",
+ "Red",
+ "Regencycore",
+ "Solid",
+ "Textured",
+ "Traditional",
+ "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-47234"
+ },
+ {
+ "sku": "kabu-soapstone-romo",
+ "handle": "kabu-soapstone-romo",
+ "title": "Kabu Soapstone | Romo Wallcovering",
+ "vendor": "Romo",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/W968-02-kabu-wallcovering-soapstone_07.jpg?v=1776398925",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Background Color beige",
+ "beige",
+ "Commercial",
+ "Contemporary",
+ "Cream",
+ "Hotel",
+ "Kabu Wallcoverings",
+ "light brown",
+ "Medium",
+ "Minimalist",
+ "Neutral",
+ "Office",
+ "Organic",
+ "Residential",
+ "Retail",
+ "Romo",
+ "Subtle",
+ "Tan",
+ "Textured",
+ "Unique",
+ "Vinyl",
+ "W968/02",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/kabu-soapstone-romo"
+ },
+ {
+ "sku": "eur-80233-ncw4204-designer-wallcoverings-los-angeles",
+ "handle": "eur-80233-ncw4204-designer-wallcoverings-los-angeles",
+ "title": "Kershaw Plain 03 - Pale Blush Wallcovering | Nina Campbell",
+ "vendor": "Nina Campbell",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/nina_crop_7513500549171.jpg?v=1775522878",
+ "tags": [
+ "Abstract",
+ "Architectural",
+ "Bathroom",
+ "Bedroom",
+ "Beige",
+ "Brown",
+ "Champagne",
+ "Class A Fire Rated",
+ "Commercial",
+ "Contemporary",
+ "FONTIBRE",
+ "Grandmillennial",
+ "Kershaw Plain",
+ "Living Room",
+ "Marble",
+ "NCW4204",
+ "Nina Campbell",
+ "Nina Campbell Europe",
+ "Organic Modern",
+ "Serene",
+ "Taupe",
+ "Textured",
+ "Traditional",
+ "Transitional",
+ "Vinyl",
+ "Wallcovering",
+ "Yellow"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/eur-80233-ncw4204-designer-wallcoverings-los-angeles"
+ },
+ {
+ "sku": "fairford-vinyl-wallcovering-xlb-47650",
+ "handle": "fairford-vinyl-wallcovering-xlb-47650",
+ "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-47650-sample-fairford-vinyl-hollywood-wallcoverings.jpg?v=1775711414",
+ "tags": [
+ "Architectural",
+ "Bedroom",
+ "Blue",
+ "Class A Fire Rated",
+ "Color: Blue",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Contemporary",
+ "Hollywood Wallcoverings",
+ "Light Gray",
+ "Living Room",
+ "Minimalist",
+ "Modern",
+ "Office",
+ "Seafoam",
+ "Serene",
+ "Stripe",
+ "Textured",
+ "Vinyl",
+ "Wallcovering"
+ ],
+ "max_price": 4.25,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/fairford-vinyl-wallcovering-xlb-47650"
+ },
+ {
+ "sku": "vicenza-tapestry-by-versace-ver-40551",
+ "handle": "vicenza-tapestry-by-versace-ver-40551",
+ "title": "Vicenza Tapestry | Versace",
+ "vendor": "Versace",
+ "product_type": "Wallcovering",
+ "image_url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/products/370551_479cc574-adfb-4f9c-b957-5fd362e7a51a.jpg?v=1745349561",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Architectural",
+ "Baroque",
+ "Beige",
+ "Class A Fire Rated",
+ "Commercial",
+ "Commercial Wallcovering",
+ "Cream",
+ "Floral",
+ "Ivory",
+ "Luxury",
+ "Medallion",
+ "Neoclassical",
+ "Paper",
+ "Versace",
+ "Vicenza Tapestry",
+ "Wallcovering",
+ "White"
+ ],
+ "max_price": 144.99,
+ "aesthetic": "all",
+ "product_url": "https://designerwallcoverings.com/products/vicenza-tapestry-by-versace-ver-40551"
+ }
+]
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..b857900
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,865 @@
+{
+ "name": "pastelwallpaper",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "pastelwallpaper",
+ "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..de06fc8
--- /dev/null
+++ b/package.json
@@ -0,0 +1,14 @@
+{
+ "name": "pastelwallpaper",
+ "version": "0.1.0",
+ "description": "PASTEL WALLPAPER — 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..1d9f2c8
--- /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">P</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..56a3d2f
--- /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>PASTEL WALLPAPER — Soft. Quiet.</title>
+<meta name="description" content="PASTEL WALLPAPER · Soft. Quiet.. Curated wallcoverings sourced through the Designer Wallcoverings trade channel.">
+<meta name="theme-color" content="#1a0e1c">
+<link rel="canonical" href="https://pastelwallpaper.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: #1a0e1c;
+ --paper: #ffffff;
+ --muted: #a890a8;
+ --line: rgba(255,255,255,0.10);
+ --accent: #e8a0c8;
+ --bg-soft: #28182a;
+ --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('pas_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">Soft Tones</div>
+ <div class="center-mark">PASTEL WALLPAPER<span class="tm">.</span><span class="sub">Soft. Quiet.</span></div>
+ <div class="meta-line">Blush · Sage · Sky · Powder<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">Blush · Sage · Sky · Powder</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">PASTEL WALLPAPER</div>
+ <p class="footer-text">A specialty archive within the Designer Wallcoverings family. Curated blush · sage · sky · powder 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">pastelwallpaper</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>pastelwallpaper.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 = "pastelwallpaper";
+ 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('pas_theme_density', n); } catch(e){}
+}
+slider.addEventListener('input', e => setDensity(parseInt(e.target.value)));
+const savedDensity = parseInt(localStorage.getItem('pas_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('pas_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..f6a1d7a
--- /dev/null
+++ b/server.js
@@ -0,0 +1,107 @@
+/**
+ * PASTEL WALLPAPER — 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 || 9877;
+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 = ["blush","sage","sky","lavender","butter","botanical"];
+ const out = [];
+ for (const a of SLIDER_AESTHETICS) {
+ const items = PRODUCTS.filter(p => p.aesthetic === a).slice(0, 12);
+ if (items.length >= 4) out.push({ aesthetic: a, items });
+ }
+ res.json({ rails: out });
+});
+
+app.get('/api/facets', (req, res) => {
+ const aesthetics = {}; const vendors = {};
+ for (const p of PRODUCTS) {
+ aesthetics[p.aesthetic] = (aesthetics[p.aesthetic] || 0) + 1;
+ vendors[p.vendor] = (vendors[p.vendor] || 0) + 1;
+ }
+ res.json({ aesthetics, vendors, total: PRODUCTS.length });
+});
+
+app.get('/api/health', (req, res) => res.json({ status: 'ok', count: PRODUCTS.length, dropped: DROPPED }));
+
+app.get('/sample/:handle', (req, res) => {
+ const p = PRODUCTS.find(x => x.handle === req.params.handle || x.sku === req.params.handle);
+ if (!p) return res.status(404).send('Not found');
+ res.redirect(302, p.product_url || `${DW_SHOPIFY}/products/${encodeURIComponent(p.handle)}#sample`);
+});
+
+// sitemap.xml + robots.txt for SEO
+app.get('/robots.txt', (req, res) => {
+ res.type('text/plain').send(`User-agent: *
+Allow: /
+Sitemap: https://pastelwallpaper.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://pastelwallpaper.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(`pastelwallpaper listening on http://127.0.0.1:${PORT}`);
+});
diff --git a/site.config.json b/site.config.json
new file mode 100644
index 0000000..40c1dea
--- /dev/null
+++ b/site.config.json
@@ -0,0 +1,20 @@
+{
+ "slug": "pastelwallpaper",
+ "siteName": "Pastel Wallpaper",
+ "domain": "pastelwallpaper.com",
+ "nicheKeyword": "pastel",
+ "tagline": "Soft hues, calm rooms.",
+ "heroHeadline": "PASTEL WALLPAPER",
+ "heroSub": "Soft hues, calm rooms.",
+ "theme": {
+ "accent": "#e8c0c8"
+ },
+ "rails": [
+ "blush",
+ "mint",
+ "sage",
+ "butter",
+ "sky",
+ "lavender"
+ ]
+}
(oldest)
·
back to Pastelwallpaper
·
graphic-loop pass 2: fix .corner-mark contrast + soften hero ac12a9e →